blob: 50102af33a5a1b6cedbd512508f75a3bdff1cfa9 [file] [log] [blame]
Peter Collingbournebee583f2011-10-06 13:03:08 +00001//===- ClangAttrEmitter.cpp - Generate Clang attribute handling =-*- C++ -*--=//
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//
10// These tablegen backends emit Clang attribute processing code
11//
12//===----------------------------------------------------------------------===//
13
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000014#include "llvm/ADT/ArrayRef.h"
15#include "llvm/ADT/iterator_range.h"
Alexis Hunta0e54d42012-06-18 16:13:52 +000016#include "llvm/ADT/SmallString.h"
Aaron Ballman28afa182014-11-17 18:17:19 +000017#include "llvm/ADT/STLExtras.h"
18#include "llvm/ADT/StringExtras.h"
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000019#include "llvm/ADT/StringRef.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000020#include "llvm/ADT/StringSwitch.h"
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000021#include "llvm/Support/ErrorHandling.h"
22#include "llvm/Support/raw_ostream.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000023#include "llvm/TableGen/Error.h"
Peter Collingbournebee583f2011-10-06 13:03:08 +000024#include "llvm/TableGen/Record.h"
Douglas Gregor377f99b2012-05-02 17:33:51 +000025#include "llvm/TableGen/StringMatcher.h"
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +000026#include "llvm/TableGen/TableGenBackend.h"
Peter Collingbournebee583f2011-10-06 13:03:08 +000027#include <algorithm>
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000028#include <cassert>
Peter Collingbournebee583f2011-10-06 13:03:08 +000029#include <cctype>
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000030#include <cstddef>
31#include <cstdint>
32#include <map>
Aaron Ballman8f1439b2014-03-05 16:49:55 +000033#include <memory>
Aaron Ballman80469032013-11-29 14:57:58 +000034#include <set>
Chandler Carruth5553d0d2014-01-07 11:51:46 +000035#include <sstream>
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000036#include <string>
37#include <utility>
38#include <vector>
Peter Collingbournebee583f2011-10-06 13:03:08 +000039
40using namespace llvm;
41
Benjamin Kramerd910d162015-03-10 18:24:01 +000042namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000043
Aaron Ballmanc669cc02014-01-27 22:10:04 +000044class FlattenedSpelling {
45 std::string V, N, NS;
46 bool K;
47
48public:
49 FlattenedSpelling(const std::string &Variety, const std::string &Name,
50 const std::string &Namespace, bool KnownToGCC) :
51 V(Variety), N(Name), NS(Namespace), K(KnownToGCC) {}
52 explicit FlattenedSpelling(const Record &Spelling) :
53 V(Spelling.getValueAsString("Variety")),
54 N(Spelling.getValueAsString("Name")) {
55
56 assert(V != "GCC" && "Given a GCC spelling, which means this hasn't been"
57 "flattened!");
Tyler Nowickie8b07ed2014-06-13 17:57:25 +000058 if (V == "CXX11" || V == "Pragma")
Aaron Ballmanc669cc02014-01-27 22:10:04 +000059 NS = Spelling.getValueAsString("Namespace");
60 bool Unset;
61 K = Spelling.getValueAsBitOrUnset("KnownToGCC", Unset);
62 }
63
64 const std::string &variety() const { return V; }
65 const std::string &name() const { return N; }
66 const std::string &nameSpace() const { return NS; }
67 bool knownToGCC() const { return K; }
68};
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000069
Hans Wennborgdcfba332015-10-06 23:40:43 +000070} // end anonymous namespace
Aaron Ballmanc669cc02014-01-27 22:10:04 +000071
Benjamin Kramerd910d162015-03-10 18:24:01 +000072static std::vector<FlattenedSpelling>
73GetFlattenedSpellings(const Record &Attr) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +000074 std::vector<Record *> Spellings = Attr.getValueAsListOfDefs("Spellings");
75 std::vector<FlattenedSpelling> Ret;
76
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +000077 for (const auto &Spelling : Spellings) {
78 if (Spelling->getValueAsString("Variety") == "GCC") {
Aaron Ballmanc669cc02014-01-27 22:10:04 +000079 // Gin up two new spelling objects to add into the list.
Benjamin Kramer3204b152015-05-29 19:42:19 +000080 Ret.emplace_back("GNU", Spelling->getValueAsString("Name"), "", true);
81 Ret.emplace_back("CXX11", Spelling->getValueAsString("Name"), "gnu",
82 true);
Aaron Ballmanc669cc02014-01-27 22:10:04 +000083 } else
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +000084 Ret.push_back(FlattenedSpelling(*Spelling));
Aaron Ballmanc669cc02014-01-27 22:10:04 +000085 }
86
87 return Ret;
88}
89
Peter Collingbournebee583f2011-10-06 13:03:08 +000090static std::string ReadPCHRecord(StringRef type) {
91 return StringSwitch<std::string>(type)
92 .EndsWith("Decl *", "GetLocalDeclAs<"
93 + std::string(type, 0, type.size()-1) + ">(F, Record[Idx++])")
Richard Smithb87c4652013-10-31 21:23:20 +000094 .Case("TypeSourceInfo *", "GetTypeSourceInfo(F, Record, Idx)")
Argyrios Kyrtzidisa660ae42012-11-15 01:31:39 +000095 .Case("Expr *", "ReadExpr(F)")
Peter Collingbournebee583f2011-10-06 13:03:08 +000096 .Case("IdentifierInfo *", "GetIdentifierInfo(F, Record, Idx)")
Benjamin Kramer1b582012016-02-13 18:11:49 +000097 .Case("StringRef", "ReadString(Record, Idx)")
Peter Collingbournebee583f2011-10-06 13:03:08 +000098 .Default("Record[Idx++]");
99}
100
Richard Smith19978562016-05-18 00:16:51 +0000101// Get a type that is suitable for storing an object of the specified type.
102static StringRef getStorageType(StringRef type) {
103 return StringSwitch<StringRef>(type)
104 .Case("StringRef", "std::string")
105 .Default(type);
106}
107
Peter Collingbournebee583f2011-10-06 13:03:08 +0000108// Assumes that the way to get the value is SA->getname()
109static std::string WritePCHRecord(StringRef type, StringRef name) {
Richard Smith290d8012016-04-06 17:06:00 +0000110 return "Record." + StringSwitch<std::string>(type)
111 .EndsWith("Decl *", "AddDeclRef(" + std::string(name) + ");\n")
112 .Case("TypeSourceInfo *", "AddTypeSourceInfo(" + std::string(name) + ");\n")
Peter Collingbournebee583f2011-10-06 13:03:08 +0000113 .Case("Expr *", "AddStmt(" + std::string(name) + ");\n")
Richard Smith290d8012016-04-06 17:06:00 +0000114 .Case("IdentifierInfo *", "AddIdentifierRef(" + std::string(name) + ");\n")
115 .Case("StringRef", "AddString(" + std::string(name) + ");\n")
116 .Default("push_back(" + std::string(name) + ");\n");
Peter Collingbournebee583f2011-10-06 13:03:08 +0000117}
118
Michael Han4a045172012-03-07 00:12:16 +0000119// Normalize attribute name by removing leading and trailing
120// underscores. For example, __foo, foo__, __foo__ would
121// become foo.
122static StringRef NormalizeAttrName(StringRef AttrName) {
123 if (AttrName.startswith("__"))
124 AttrName = AttrName.substr(2, AttrName.size());
125
126 if (AttrName.endswith("__"))
127 AttrName = AttrName.substr(0, AttrName.size() - 2);
128
129 return AttrName;
130}
131
Aaron Ballman36a53502014-01-16 13:03:14 +0000132// Normalize the name by removing any and all leading and trailing underscores.
133// This is different from NormalizeAttrName in that it also handles names like
134// _pascal and __pascal.
135static StringRef NormalizeNameForSpellingComparison(StringRef Name) {
Benjamin Kramer5c404072015-04-10 21:37:21 +0000136 return Name.trim("_");
Aaron Ballman36a53502014-01-16 13:03:14 +0000137}
138
Michael Han4a045172012-03-07 00:12:16 +0000139// Normalize attribute spelling only if the spelling has both leading
140// and trailing underscores. For example, __ms_struct__ will be
141// normalized to "ms_struct"; __cdecl will remain intact.
142static StringRef NormalizeAttrSpelling(StringRef AttrSpelling) {
143 if (AttrSpelling.startswith("__") && AttrSpelling.endswith("__")) {
144 AttrSpelling = AttrSpelling.substr(2, AttrSpelling.size() - 4);
145 }
146
147 return AttrSpelling;
148}
149
Aaron Ballman2f22b942014-05-20 19:47:14 +0000150typedef std::vector<std::pair<std::string, const Record *>> ParsedAttrMap;
Aaron Ballman64e69862013-12-15 13:05:48 +0000151
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000152static ParsedAttrMap getParsedAttrList(const RecordKeeper &Records,
Craig Topper8ae12032014-05-07 06:21:57 +0000153 ParsedAttrMap *Dupes = nullptr) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000154 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Aaron Ballman64e69862013-12-15 13:05:48 +0000155 std::set<std::string> Seen;
156 ParsedAttrMap R;
Aaron Ballman2f22b942014-05-20 19:47:14 +0000157 for (const auto *Attr : Attrs) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000158 if (Attr->getValueAsBit("SemaHandler")) {
Aaron Ballman64e69862013-12-15 13:05:48 +0000159 std::string AN;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000160 if (Attr->isSubClassOf("TargetSpecificAttr") &&
161 !Attr->isValueUnset("ParseKind")) {
162 AN = Attr->getValueAsString("ParseKind");
Aaron Ballman64e69862013-12-15 13:05:48 +0000163
164 // If this attribute has already been handled, it does not need to be
165 // handled again.
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000166 if (Seen.find(AN) != Seen.end()) {
167 if (Dupes)
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000168 Dupes->push_back(std::make_pair(AN, Attr));
Aaron Ballman64e69862013-12-15 13:05:48 +0000169 continue;
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000170 }
Aaron Ballman64e69862013-12-15 13:05:48 +0000171 Seen.insert(AN);
172 } else
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000173 AN = NormalizeAttrName(Attr->getName()).str();
Aaron Ballman64e69862013-12-15 13:05:48 +0000174
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000175 R.push_back(std::make_pair(AN, Attr));
Aaron Ballman64e69862013-12-15 13:05:48 +0000176 }
177 }
178 return R;
179}
180
Peter Collingbournebee583f2011-10-06 13:03:08 +0000181namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000182
Peter Collingbournebee583f2011-10-06 13:03:08 +0000183 class Argument {
184 std::string lowerName, upperName;
185 StringRef attrName;
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000186 bool isOpt;
John McCalla62c1a92015-10-28 00:17:34 +0000187 bool Fake;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000188
189 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000190 Argument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000191 : lowerName(Arg.getValueAsString("Name")), upperName(lowerName),
John McCalla62c1a92015-10-28 00:17:34 +0000192 attrName(Attr), isOpt(false), Fake(false) {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000193 if (!lowerName.empty()) {
194 lowerName[0] = std::tolower(lowerName[0]);
195 upperName[0] = std::toupper(upperName[0]);
196 }
Reid Klecknerebeb0ca2016-05-31 17:42:56 +0000197 // Work around MinGW's macro definition of 'interface' to 'struct'. We
198 // have an attribute argument called 'Interface', so only the lower case
199 // name conflicts with the macro definition.
200 if (lowerName == "interface")
201 lowerName = "interface_";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000202 }
Hans Wennborgdcfba332015-10-06 23:40:43 +0000203 virtual ~Argument() = default;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000204
205 StringRef getLowerName() const { return lowerName; }
206 StringRef getUpperName() const { return upperName; }
207 StringRef getAttrName() const { return attrName; }
208
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000209 bool isOptional() const { return isOpt; }
210 void setOptional(bool set) { isOpt = set; }
211
John McCalla62c1a92015-10-28 00:17:34 +0000212 bool isFake() const { return Fake; }
213 void setFake(bool fake) { Fake = fake; }
214
Peter Collingbournebee583f2011-10-06 13:03:08 +0000215 // These functions print the argument contents formatted in different ways.
216 virtual void writeAccessors(raw_ostream &OS) const = 0;
217 virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +0000218 virtual void writeASTVisitorTraversal(raw_ostream &OS) const {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000219 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000220 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
Daniel Dunbardc51baa2012-02-10 06:00:29 +0000221 virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000222 virtual void writeCtorBody(raw_ostream &OS) const {}
223 virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000224 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000225 virtual void writeCtorParameters(raw_ostream &OS) const = 0;
226 virtual void writeDeclarations(raw_ostream &OS) const = 0;
227 virtual void writePCHReadArgs(raw_ostream &OS) const = 0;
228 virtual void writePCHReadDecls(raw_ostream &OS) const = 0;
229 virtual void writePCHWrite(raw_ostream &OS) const = 0;
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000230 virtual void writeValue(raw_ostream &OS) const = 0;
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000231 virtual void writeDump(raw_ostream &OS) const = 0;
232 virtual void writeDumpChildren(raw_ostream &OS) const {}
Richard Trieude5cc7d2013-01-31 01:44:26 +0000233 virtual void writeHasChildren(raw_ostream &OS) const { OS << "false"; }
Aaron Ballman682ee422013-09-11 19:47:58 +0000234
235 virtual bool isEnumArg() const { return false; }
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000236 virtual bool isVariadicEnumArg() const { return false; }
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000237 virtual bool isVariadic() const { return false; }
Aaron Ballman36a53502014-01-16 13:03:14 +0000238
239 virtual void writeImplicitCtorArgs(raw_ostream &OS) const {
240 OS << getUpperName();
241 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000242 };
243
244 class SimpleArgument : public Argument {
245 std::string type;
246
247 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000248 SimpleArgument(const Record &Arg, StringRef Attr, std::string T)
Benjamin Kramercfeacf52016-05-27 14:27:13 +0000249 : Argument(Arg, Attr), type(std::move(T)) {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000250
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000251 std::string getType() const { return type; }
252
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000253 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000254 OS << " " << type << " get" << getUpperName() << "() const {\n";
255 OS << " return " << getLowerName() << ";\n";
256 OS << " }";
257 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000258
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000259 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000260 OS << getLowerName();
261 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000262
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000263 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000264 OS << "A->get" << getUpperName() << "()";
265 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000266
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000267 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000268 OS << getLowerName() << "(" << getUpperName() << ")";
269 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000270
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000271 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000272 OS << getLowerName() << "()";
273 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000274
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000275 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000276 OS << type << " " << getUpperName();
277 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000278
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000279 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000280 OS << type << " " << getLowerName() << ";";
281 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000282
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000283 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000284 std::string read = ReadPCHRecord(type);
285 OS << " " << type << " " << getLowerName() << " = " << read << ";\n";
286 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000287
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000288 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000289 OS << getLowerName();
290 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000291
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000292 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000293 OS << " " << WritePCHRecord(type, "SA->get" +
294 std::string(getUpperName()) + "()");
295 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000296
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000297 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000298 if (type == "FunctionDecl *") {
Richard Smithb87c4652013-10-31 21:23:20 +0000299 OS << "\" << get" << getUpperName()
300 << "()->getNameInfo().getAsString() << \"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000301 } else if (type == "IdentifierInfo *") {
302 OS << "\" << get" << getUpperName() << "()->getName() << \"";
Richard Smithb87c4652013-10-31 21:23:20 +0000303 } else if (type == "TypeSourceInfo *") {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000304 OS << "\" << get" << getUpperName() << "().getAsString() << \"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000305 } else {
306 OS << "\" << get" << getUpperName() << "() << \"";
307 }
308 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000309
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000310 void writeDump(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000311 if (type == "FunctionDecl *") {
312 OS << " OS << \" \";\n";
313 OS << " dumpBareDeclRef(SA->get" << getUpperName() << "());\n";
314 } else if (type == "IdentifierInfo *") {
Aaron Ballman415c4142015-11-30 15:25:34 +0000315 if (isOptional())
316 OS << " if (SA->get" << getUpperName() << "())\n ";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000317 OS << " OS << \" \" << SA->get" << getUpperName()
318 << "()->getName();\n";
Richard Smithb87c4652013-10-31 21:23:20 +0000319 } else if (type == "TypeSourceInfo *") {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000320 OS << " OS << \" \" << SA->get" << getUpperName()
321 << "().getAsString();\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000322 } else if (type == "bool") {
323 OS << " if (SA->get" << getUpperName() << "()) OS << \" "
324 << getUpperName() << "\";\n";
325 } else if (type == "int" || type == "unsigned") {
326 OS << " OS << \" \" << SA->get" << getUpperName() << "();\n";
327 } else {
328 llvm_unreachable("Unknown SimpleArgument type!");
329 }
330 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000331 };
332
Aaron Ballman18a78382013-11-21 00:28:23 +0000333 class DefaultSimpleArgument : public SimpleArgument {
334 int64_t Default;
335
336 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000337 DefaultSimpleArgument(const Record &Arg, StringRef Attr,
Aaron Ballman18a78382013-11-21 00:28:23 +0000338 std::string T, int64_t Default)
339 : SimpleArgument(Arg, Attr, T), Default(Default) {}
340
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000341 void writeAccessors(raw_ostream &OS) const override {
Aaron Ballman18a78382013-11-21 00:28:23 +0000342 SimpleArgument::writeAccessors(OS);
343
344 OS << "\n\n static const " << getType() << " Default" << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000345 << " = ";
346 if (getType() == "bool")
347 OS << (Default != 0 ? "true" : "false");
348 else
349 OS << Default;
350 OS << ";";
Aaron Ballman18a78382013-11-21 00:28:23 +0000351 }
352 };
353
Peter Collingbournebee583f2011-10-06 13:03:08 +0000354 class StringArgument : public Argument {
355 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000356 StringArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000357 : Argument(Arg, Attr)
358 {}
359
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000360 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000361 OS << " llvm::StringRef get" << getUpperName() << "() const {\n";
362 OS << " return llvm::StringRef(" << getLowerName() << ", "
363 << getLowerName() << "Length);\n";
364 OS << " }\n";
365 OS << " unsigned get" << getUpperName() << "Length() const {\n";
366 OS << " return " << getLowerName() << "Length;\n";
367 OS << " }\n";
368 OS << " void set" << getUpperName()
369 << "(ASTContext &C, llvm::StringRef S) {\n";
370 OS << " " << getLowerName() << "Length = S.size();\n";
371 OS << " this->" << getLowerName() << " = new (C, 1) char ["
372 << getLowerName() << "Length];\n";
Chandler Carruth38a45cc2015-08-04 03:53:01 +0000373 OS << " if (!S.empty())\n";
374 OS << " std::memcpy(this->" << getLowerName() << ", S.data(), "
Peter Collingbournebee583f2011-10-06 13:03:08 +0000375 << getLowerName() << "Length);\n";
376 OS << " }";
377 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000378
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000379 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000380 OS << "get" << getUpperName() << "()";
381 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000382
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000383 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000384 OS << "A->get" << getUpperName() << "()";
385 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000386
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000387 void writeCtorBody(raw_ostream &OS) const override {
Chandler Carruth38a45cc2015-08-04 03:53:01 +0000388 OS << " if (!" << getUpperName() << ".empty())\n";
389 OS << " std::memcpy(" << getLowerName() << ", " << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000390 << ".data(), " << getLowerName() << "Length);\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000391 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000392
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000393 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000394 OS << getLowerName() << "Length(" << getUpperName() << ".size()),"
395 << getLowerName() << "(new (Ctx, 1) char[" << getLowerName()
396 << "Length])";
397 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000398
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000399 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Hans Wennborg59dbe862015-09-29 20:56:43 +0000400 OS << getLowerName() << "Length(0)," << getLowerName() << "(nullptr)";
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000401 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000402
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000403 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000404 OS << "llvm::StringRef " << getUpperName();
405 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000406
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000407 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000408 OS << "unsigned " << getLowerName() << "Length;\n";
409 OS << "char *" << getLowerName() << ";";
410 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000411
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000412 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000413 OS << " std::string " << getLowerName()
414 << "= ReadString(Record, Idx);\n";
415 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000416
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000417 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000418 OS << getLowerName();
419 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000420
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000421 void writePCHWrite(raw_ostream &OS) const override {
Richard Smith290d8012016-04-06 17:06:00 +0000422 OS << " Record.AddString(SA->get" << getUpperName() << "());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000423 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000424
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000425 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000426 OS << "\\\"\" << get" << getUpperName() << "() << \"\\\"";
427 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000428
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000429 void writeDump(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000430 OS << " OS << \" \\\"\" << SA->get" << getUpperName()
431 << "() << \"\\\"\";\n";
432 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000433 };
434
435 class AlignedArgument : public Argument {
436 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000437 AlignedArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000438 : Argument(Arg, Attr)
439 {}
440
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000441 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000442 OS << " bool is" << getUpperName() << "Dependent() const;\n";
443
444 OS << " unsigned get" << getUpperName() << "(ASTContext &Ctx) const;\n";
445
446 OS << " bool is" << getUpperName() << "Expr() const {\n";
447 OS << " return is" << getLowerName() << "Expr;\n";
448 OS << " }\n";
449
450 OS << " Expr *get" << getUpperName() << "Expr() const {\n";
451 OS << " assert(is" << getLowerName() << "Expr);\n";
452 OS << " return " << getLowerName() << "Expr;\n";
453 OS << " }\n";
454
455 OS << " TypeSourceInfo *get" << getUpperName() << "Type() const {\n";
456 OS << " assert(!is" << getLowerName() << "Expr);\n";
457 OS << " return " << getLowerName() << "Type;\n";
458 OS << " }";
459 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000460
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000461 void writeAccessorDefinitions(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000462 OS << "bool " << getAttrName() << "Attr::is" << getUpperName()
463 << "Dependent() const {\n";
464 OS << " if (is" << getLowerName() << "Expr)\n";
465 OS << " return " << getLowerName() << "Expr && (" << getLowerName()
466 << "Expr->isValueDependent() || " << getLowerName()
467 << "Expr->isTypeDependent());\n";
468 OS << " else\n";
469 OS << " return " << getLowerName()
470 << "Type->getType()->isDependentType();\n";
471 OS << "}\n";
472
473 // FIXME: Do not do the calculation here
474 // FIXME: Handle types correctly
475 // A null pointer means maximum alignment
Peter Collingbournebee583f2011-10-06 13:03:08 +0000476 OS << "unsigned " << getAttrName() << "Attr::get" << getUpperName()
477 << "(ASTContext &Ctx) const {\n";
478 OS << " assert(!is" << getUpperName() << "Dependent());\n";
479 OS << " if (is" << getLowerName() << "Expr)\n";
Ulrich Weigandca3cb7f2015-04-21 17:29:35 +0000480 OS << " return " << getLowerName() << "Expr ? " << getLowerName()
481 << "Expr->EvaluateKnownConstInt(Ctx).getZExtValue()"
482 << " * Ctx.getCharWidth() : "
483 << "Ctx.getTargetDefaultAlignForAttributeAligned();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000484 OS << " else\n";
485 OS << " return 0; // FIXME\n";
486 OS << "}\n";
487 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000488
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000489 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000490 OS << "is" << getLowerName() << "Expr, is" << getLowerName()
491 << "Expr ? static_cast<void*>(" << getLowerName()
492 << "Expr) : " << getLowerName()
493 << "Type";
494 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000495
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000496 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000497 // FIXME: move the definition in Sema::InstantiateAttrs to here.
498 // In the meantime, aligned attributes are cloned.
499 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000500
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000501 void writeCtorBody(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000502 OS << " if (is" << getLowerName() << "Expr)\n";
503 OS << " " << getLowerName() << "Expr = reinterpret_cast<Expr *>("
504 << getUpperName() << ");\n";
505 OS << " else\n";
506 OS << " " << getLowerName()
507 << "Type = reinterpret_cast<TypeSourceInfo *>(" << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000508 << ");\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000509 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000510
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000511 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000512 OS << "is" << getLowerName() << "Expr(Is" << getUpperName() << "Expr)";
513 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000514
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000515 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000516 OS << "is" << getLowerName() << "Expr(false)";
517 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000518
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000519 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000520 OS << "bool Is" << getUpperName() << "Expr, void *" << getUpperName();
521 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000522
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000523 void writeImplicitCtorArgs(raw_ostream &OS) const override {
Aaron Ballman36a53502014-01-16 13:03:14 +0000524 OS << "Is" << getUpperName() << "Expr, " << getUpperName();
525 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000526
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000527 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000528 OS << "bool is" << getLowerName() << "Expr;\n";
529 OS << "union {\n";
530 OS << "Expr *" << getLowerName() << "Expr;\n";
531 OS << "TypeSourceInfo *" << getLowerName() << "Type;\n";
532 OS << "};";
533 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000534
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000535 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000536 OS << "is" << getLowerName() << "Expr, " << getLowerName() << "Ptr";
537 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000538
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000539 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000540 OS << " bool is" << getLowerName() << "Expr = Record[Idx++];\n";
541 OS << " void *" << getLowerName() << "Ptr;\n";
542 OS << " if (is" << getLowerName() << "Expr)\n";
543 OS << " " << getLowerName() << "Ptr = ReadExpr(F);\n";
544 OS << " else\n";
545 OS << " " << getLowerName()
546 << "Ptr = GetTypeSourceInfo(F, Record, Idx);\n";
547 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000548
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000549 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000550 OS << " Record.push_back(SA->is" << getUpperName() << "Expr());\n";
551 OS << " if (SA->is" << getUpperName() << "Expr())\n";
Richard Smith290d8012016-04-06 17:06:00 +0000552 OS << " Record.AddStmt(SA->get" << getUpperName() << "Expr());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000553 OS << " else\n";
Richard Smith290d8012016-04-06 17:06:00 +0000554 OS << " Record.AddTypeSourceInfo(SA->get" << getUpperName()
555 << "Type());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000556 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000557
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000558 void writeValue(raw_ostream &OS) const override {
Richard Trieuddd01ce2014-06-09 22:53:25 +0000559 OS << "\";\n";
Aaron Ballmanc960f562014-08-01 13:49:00 +0000560 // The aligned attribute argument expression is optional.
561 OS << " if (is" << getLowerName() << "Expr && "
562 << getLowerName() << "Expr)\n";
Hans Wennborg59dbe862015-09-29 20:56:43 +0000563 OS << " " << getLowerName() << "Expr->printPretty(OS, nullptr, Policy);\n";
Richard Trieuddd01ce2014-06-09 22:53:25 +0000564 OS << " OS << \"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000565 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000566
567 void writeDump(raw_ostream &OS) const override {}
568
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000569 void writeDumpChildren(raw_ostream &OS) const override {
Richard Smithf7514452014-10-30 21:02:37 +0000570 OS << " if (SA->is" << getUpperName() << "Expr())\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000571 OS << " dumpStmt(SA->get" << getUpperName() << "Expr());\n";
Richard Smithf7514452014-10-30 21:02:37 +0000572 OS << " else\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000573 OS << " dumpType(SA->get" << getUpperName()
574 << "Type()->getType());\n";
575 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000576
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000577 void writeHasChildren(raw_ostream &OS) const override {
Richard Trieude5cc7d2013-01-31 01:44:26 +0000578 OS << "SA->is" << getUpperName() << "Expr()";
579 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000580 };
581
582 class VariadicArgument : public Argument {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000583 std::string Type, ArgName, ArgSizeName, RangeName;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000584
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000585 protected:
586 // Assumed to receive a parameter: raw_ostream OS.
587 virtual void writeValueImpl(raw_ostream &OS) const {
588 OS << " OS << Val;\n";
589 }
590
Peter Collingbournebee583f2011-10-06 13:03:08 +0000591 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000592 VariadicArgument(const Record &Arg, StringRef Attr, std::string T)
Benjamin Kramercfeacf52016-05-27 14:27:13 +0000593 : Argument(Arg, Attr), Type(std::move(T)),
594 ArgName(getLowerName().str() + "_"), ArgSizeName(ArgName + "Size"),
595 RangeName(getLowerName()) {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000596
Benjamin Kramer1b582012016-02-13 18:11:49 +0000597 const std::string &getType() const { return Type; }
598 const std::string &getArgName() const { return ArgName; }
599 const std::string &getArgSizeName() const { return ArgSizeName; }
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000600 bool isVariadic() const override { return true; }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000601
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000602 void writeAccessors(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000603 std::string IteratorType = getLowerName().str() + "_iterator";
604 std::string BeginFn = getLowerName().str() + "_begin()";
605 std::string EndFn = getLowerName().str() + "_end()";
606
607 OS << " typedef " << Type << "* " << IteratorType << ";\n";
608 OS << " " << IteratorType << " " << BeginFn << " const {"
609 << " return " << ArgName << "; }\n";
610 OS << " " << IteratorType << " " << EndFn << " const {"
611 << " return " << ArgName << " + " << ArgSizeName << "; }\n";
612 OS << " unsigned " << getLowerName() << "_size() const {"
613 << " return " << ArgSizeName << "; }\n";
614 OS << " llvm::iterator_range<" << IteratorType << "> " << RangeName
615 << "() const { return llvm::make_range(" << BeginFn << ", " << EndFn
616 << "); }\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000617 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000618
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000619 void writeCloneArgs(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000620 OS << ArgName << ", " << ArgSizeName;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000621 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000622
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000623 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000624 // This isn't elegant, but we have to go through public methods...
625 OS << "A->" << getLowerName() << "_begin(), "
626 << "A->" << getLowerName() << "_size()";
627 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000628
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000629 void writeCtorBody(raw_ostream &OS) const override {
Aaron Ballmand6459e52014-05-01 15:21:03 +0000630 OS << " std::copy(" << getUpperName() << ", " << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000631 << " + " << ArgSizeName << ", " << ArgName << ");\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000632 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000633
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000634 void writeCtorInitializers(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000635 OS << ArgSizeName << "(" << getUpperName() << "Size), "
636 << ArgName << "(new (Ctx, 16) " << getType() << "["
637 << ArgSizeName << "])";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000638 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000639
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000640 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000641 OS << ArgSizeName << "(0), " << ArgName << "(nullptr)";
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000642 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000643
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000644 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000645 OS << getType() << " *" << getUpperName() << ", unsigned "
646 << getUpperName() << "Size";
647 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000648
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000649 void writeImplicitCtorArgs(raw_ostream &OS) const override {
Aaron Ballman36a53502014-01-16 13:03:14 +0000650 OS << getUpperName() << ", " << getUpperName() << "Size";
651 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000652
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000653 void writeDeclarations(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000654 OS << " unsigned " << ArgSizeName << ";\n";
655 OS << " " << getType() << " *" << ArgName << ";";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000656 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000657
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000658 void writePCHReadDecls(raw_ostream &OS) const override {
Richard Smith19978562016-05-18 00:16:51 +0000659 OS << " unsigned " << getLowerName() << "Size = Record[Idx++];\n";
660 OS << " SmallVector<" << getType() << ", 4> "
661 << getLowerName() << ";\n";
662 OS << " " << getLowerName() << ".reserve(" << getLowerName()
Peter Collingbournebee583f2011-10-06 13:03:08 +0000663 << "Size);\n";
Richard Smith19978562016-05-18 00:16:51 +0000664
665 // If we can't store the values in the current type (if it's something
666 // like StringRef), store them in a different type and convert the
667 // container afterwards.
668 std::string StorageType = getStorageType(getType());
669 std::string StorageName = getLowerName();
670 if (StorageType != getType()) {
671 StorageName += "Storage";
672 OS << " SmallVector<" << StorageType << ", 4> "
673 << StorageName << ";\n";
674 OS << " " << StorageName << ".reserve(" << getLowerName()
675 << "Size);\n";
676 }
677
678 OS << " for (unsigned i = 0; i != " << getLowerName() << "Size; ++i)\n";
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000679 std::string read = ReadPCHRecord(Type);
Richard Smith19978562016-05-18 00:16:51 +0000680 OS << " " << StorageName << ".push_back(" << read << ");\n";
681
682 if (StorageType != getType()) {
683 OS << " for (unsigned i = 0; i != " << getLowerName() << "Size; ++i)\n";
684 OS << " " << getLowerName() << ".push_back("
685 << StorageName << "[i]);\n";
686 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000687 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000688
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000689 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000690 OS << getLowerName() << ".data(), " << getLowerName() << "Size";
691 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000692
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000693 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000694 OS << " Record.push_back(SA->" << getLowerName() << "_size());\n";
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000695 OS << " for (auto &Val : SA->" << RangeName << "())\n";
696 OS << " " << WritePCHRecord(Type, "Val");
Peter Collingbournebee583f2011-10-06 13:03:08 +0000697 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000698
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000699 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000700 OS << "\";\n";
701 OS << " bool isFirst = true;\n"
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000702 << " for (const auto &Val : " << RangeName << "()) {\n"
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000703 << " if (isFirst) isFirst = false;\n"
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000704 << " else OS << \", \";\n";
705 writeValueImpl(OS);
706 OS << " }\n";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000707 OS << " OS << \"";
708 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000709
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000710 void writeDump(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000711 OS << " for (const auto &Val : SA->" << RangeName << "())\n";
712 OS << " OS << \" \" << Val;\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000713 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000714 };
715
Reid Klecknerf526b9482014-02-12 18:22:18 +0000716 // Unique the enums, but maintain the original declaration ordering.
Reid Klecknerf06b2662014-02-12 19:26:24 +0000717 std::vector<std::string>
718 uniqueEnumsInOrder(const std::vector<std::string> &enums) {
Reid Klecknerf526b9482014-02-12 18:22:18 +0000719 std::vector<std::string> uniques;
720 std::set<std::string> unique_set(enums.begin(), enums.end());
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000721 for (const auto &i : enums) {
Eugene Zelenko5f02b772015-12-08 18:49:01 +0000722 auto set_i = unique_set.find(i);
Reid Klecknerf526b9482014-02-12 18:22:18 +0000723 if (set_i != unique_set.end()) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000724 uniques.push_back(i);
Reid Klecknerf526b9482014-02-12 18:22:18 +0000725 unique_set.erase(set_i);
726 }
727 }
728 return uniques;
729 }
730
Peter Collingbournebee583f2011-10-06 13:03:08 +0000731 class EnumArgument : public Argument {
732 std::string type;
Aaron Ballman0e468c02014-01-05 21:08:29 +0000733 std::vector<std::string> values, enums, uniques;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000734 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000735 EnumArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000736 : Argument(Arg, Attr), type(Arg.getValueAsString("Type")),
Aaron Ballman0e468c02014-01-05 21:08:29 +0000737 values(Arg.getValueAsListOfStrings("Values")),
738 enums(Arg.getValueAsListOfStrings("Enums")),
Reid Klecknerf526b9482014-02-12 18:22:18 +0000739 uniques(uniqueEnumsInOrder(enums))
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000740 {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000741 // FIXME: Emit a proper error
742 assert(!uniques.empty());
743 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000744
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000745 bool isEnumArg() const override { return true; }
Aaron Ballman682ee422013-09-11 19:47:58 +0000746
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000747 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000748 OS << " " << type << " get" << getUpperName() << "() const {\n";
749 OS << " return " << getLowerName() << ";\n";
750 OS << " }";
751 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000752
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000753 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000754 OS << getLowerName();
755 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000756
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000757 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000758 OS << "A->get" << getUpperName() << "()";
759 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000760 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000761 OS << getLowerName() << "(" << getUpperName() << ")";
762 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000763 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000764 OS << getLowerName() << "(" << type << "(0))";
765 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000766 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000767 OS << type << " " << getUpperName();
768 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000769 void writeDeclarations(raw_ostream &OS) const override {
Eugene Zelenko5f02b772015-12-08 18:49:01 +0000770 auto i = uniques.cbegin(), e = uniques.cend();
Peter Collingbournebee583f2011-10-06 13:03:08 +0000771 // The last one needs to not have a comma.
772 --e;
773
774 OS << "public:\n";
775 OS << " enum " << type << " {\n";
776 for (; i != e; ++i)
777 OS << " " << *i << ",\n";
778 OS << " " << *e << "\n";
779 OS << " };\n";
780 OS << "private:\n";
781 OS << " " << type << " " << getLowerName() << ";";
782 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000783
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000784 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000785 OS << " " << getAttrName() << "Attr::" << type << " " << getLowerName()
786 << "(static_cast<" << getAttrName() << "Attr::" << type
787 << ">(Record[Idx++]));\n";
788 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000789
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000790 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000791 OS << getLowerName();
792 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000793
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000794 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000795 OS << "Record.push_back(SA->get" << getUpperName() << "());\n";
796 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000797
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000798 void writeValue(raw_ostream &OS) const override {
Aaron Ballman36d79102014-09-15 16:16:14 +0000799 // FIXME: this isn't 100% correct -- some enum arguments require printing
800 // as a string literal, while others require printing as an identifier.
801 // Tablegen currently does not distinguish between the two forms.
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000802 OS << "\\\"\" << " << getAttrName() << "Attr::Convert" << type << "ToStr(get"
803 << getUpperName() << "()) << \"\\\"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000804 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000805
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000806 void writeDump(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000807 OS << " switch(SA->get" << getUpperName() << "()) {\n";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000808 for (const auto &I : uniques) {
809 OS << " case " << getAttrName() << "Attr::" << I << ":\n";
810 OS << " OS << \" " << I << "\";\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000811 OS << " break;\n";
812 }
813 OS << " }\n";
814 }
Aaron Ballman682ee422013-09-11 19:47:58 +0000815
816 void writeConversion(raw_ostream &OS) const {
817 OS << " static bool ConvertStrTo" << type << "(StringRef Val, ";
818 OS << type << " &Out) {\n";
819 OS << " Optional<" << type << "> R = llvm::StringSwitch<Optional<";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000820 OS << type << ">>(Val)\n";
Aaron Ballman682ee422013-09-11 19:47:58 +0000821 for (size_t I = 0; I < enums.size(); ++I) {
822 OS << " .Case(\"" << values[I] << "\", ";
823 OS << getAttrName() << "Attr::" << enums[I] << ")\n";
824 }
825 OS << " .Default(Optional<" << type << ">());\n";
826 OS << " if (R) {\n";
827 OS << " Out = *R;\n return true;\n }\n";
828 OS << " return false;\n";
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000829 OS << " }\n\n";
830
831 // Mapping from enumeration values back to enumeration strings isn't
832 // trivial because some enumeration values have multiple named
833 // enumerators, such as type_visibility(internal) and
834 // type_visibility(hidden) both mapping to TypeVisibilityAttr::Hidden.
835 OS << " static const char *Convert" << type << "ToStr("
836 << type << " Val) {\n"
837 << " switch(Val) {\n";
838 std::set<std::string> Uniques;
839 for (size_t I = 0; I < enums.size(); ++I) {
840 if (Uniques.insert(enums[I]).second)
841 OS << " case " << getAttrName() << "Attr::" << enums[I]
842 << ": return \"" << values[I] << "\";\n";
843 }
844 OS << " }\n"
845 << " llvm_unreachable(\"No enumerator with that value\");\n"
846 << " }\n";
Aaron Ballman682ee422013-09-11 19:47:58 +0000847 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000848 };
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000849
850 class VariadicEnumArgument: public VariadicArgument {
851 std::string type, QualifiedTypeName;
Aaron Ballman0e468c02014-01-05 21:08:29 +0000852 std::vector<std::string> values, enums, uniques;
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000853
854 protected:
855 void writeValueImpl(raw_ostream &OS) const override {
Aaron Ballman36d79102014-09-15 16:16:14 +0000856 // FIXME: this isn't 100% correct -- some enum arguments require printing
857 // as a string literal, while others require printing as an identifier.
858 // Tablegen currently does not distinguish between the two forms.
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000859 OS << " OS << \"\\\"\" << " << getAttrName() << "Attr::Convert" << type
860 << "ToStr(Val)" << "<< \"\\\"\";\n";
861 }
862
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000863 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000864 VariadicEnumArgument(const Record &Arg, StringRef Attr)
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000865 : VariadicArgument(Arg, Attr, Arg.getValueAsString("Type")),
866 type(Arg.getValueAsString("Type")),
Aaron Ballman0e468c02014-01-05 21:08:29 +0000867 values(Arg.getValueAsListOfStrings("Values")),
868 enums(Arg.getValueAsListOfStrings("Enums")),
Reid Klecknerf526b9482014-02-12 18:22:18 +0000869 uniques(uniqueEnumsInOrder(enums))
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000870 {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000871 QualifiedTypeName = getAttrName().str() + "Attr::" + type;
872
873 // FIXME: Emit a proper error
874 assert(!uniques.empty());
875 }
876
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000877 bool isVariadicEnumArg() const override { return true; }
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000878
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000879 void writeDeclarations(raw_ostream &OS) const override {
Eugene Zelenko5f02b772015-12-08 18:49:01 +0000880 auto i = uniques.cbegin(), e = uniques.cend();
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000881 // The last one needs to not have a comma.
882 --e;
883
884 OS << "public:\n";
885 OS << " enum " << type << " {\n";
886 for (; i != e; ++i)
887 OS << " " << *i << ",\n";
888 OS << " " << *e << "\n";
889 OS << " };\n";
890 OS << "private:\n";
891
892 VariadicArgument::writeDeclarations(OS);
893 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000894
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000895 void writeDump(raw_ostream &OS) const override {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000896 OS << " for (" << getAttrName() << "Attr::" << getLowerName()
897 << "_iterator I = SA->" << getLowerName() << "_begin(), E = SA->"
898 << getLowerName() << "_end(); I != E; ++I) {\n";
899 OS << " switch(*I) {\n";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000900 for (const auto &UI : uniques) {
901 OS << " case " << getAttrName() << "Attr::" << UI << ":\n";
902 OS << " OS << \" " << UI << "\";\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000903 OS << " break;\n";
904 }
905 OS << " }\n";
906 OS << " }\n";
907 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000908
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000909 void writePCHReadDecls(raw_ostream &OS) const override {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000910 OS << " unsigned " << getLowerName() << "Size = Record[Idx++];\n";
911 OS << " SmallVector<" << QualifiedTypeName << ", 4> " << getLowerName()
912 << ";\n";
913 OS << " " << getLowerName() << ".reserve(" << getLowerName()
914 << "Size);\n";
915 OS << " for (unsigned i = " << getLowerName() << "Size; i; --i)\n";
916 OS << " " << getLowerName() << ".push_back(" << "static_cast<"
917 << QualifiedTypeName << ">(Record[Idx++]));\n";
918 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000919
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000920 void writePCHWrite(raw_ostream &OS) const override {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000921 OS << " Record.push_back(SA->" << getLowerName() << "_size());\n";
922 OS << " for (" << getAttrName() << "Attr::" << getLowerName()
923 << "_iterator i = SA->" << getLowerName() << "_begin(), e = SA->"
924 << getLowerName() << "_end(); i != e; ++i)\n";
925 OS << " " << WritePCHRecord(QualifiedTypeName, "(*i)");
926 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000927
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000928 void writeConversion(raw_ostream &OS) const {
929 OS << " static bool ConvertStrTo" << type << "(StringRef Val, ";
930 OS << type << " &Out) {\n";
931 OS << " Optional<" << type << "> R = llvm::StringSwitch<Optional<";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000932 OS << type << ">>(Val)\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000933 for (size_t I = 0; I < enums.size(); ++I) {
934 OS << " .Case(\"" << values[I] << "\", ";
935 OS << getAttrName() << "Attr::" << enums[I] << ")\n";
936 }
937 OS << " .Default(Optional<" << type << ">());\n";
938 OS << " if (R) {\n";
939 OS << " Out = *R;\n return true;\n }\n";
940 OS << " return false;\n";
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000941 OS << " }\n\n";
942
943 OS << " static const char *Convert" << type << "ToStr("
944 << type << " Val) {\n"
945 << " switch(Val) {\n";
946 std::set<std::string> Uniques;
947 for (size_t I = 0; I < enums.size(); ++I) {
948 if (Uniques.insert(enums[I]).second)
949 OS << " case " << getAttrName() << "Attr::" << enums[I]
950 << ": return \"" << values[I] << "\";\n";
951 }
952 OS << " }\n"
953 << " llvm_unreachable(\"No enumerator with that value\");\n"
954 << " }\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000955 }
956 };
Peter Collingbournebee583f2011-10-06 13:03:08 +0000957
958 class VersionArgument : public Argument {
959 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000960 VersionArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000961 : Argument(Arg, Attr)
962 {}
963
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000964 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000965 OS << " VersionTuple get" << getUpperName() << "() const {\n";
966 OS << " return " << getLowerName() << ";\n";
967 OS << " }\n";
968 OS << " void set" << getUpperName()
969 << "(ASTContext &C, VersionTuple V) {\n";
970 OS << " " << getLowerName() << " = V;\n";
971 OS << " }";
972 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000973
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000974 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000975 OS << "get" << getUpperName() << "()";
976 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000977
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000978 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000979 OS << "A->get" << getUpperName() << "()";
980 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000981
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000982 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000983 OS << getLowerName() << "(" << getUpperName() << ")";
984 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000985
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000986 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000987 OS << getLowerName() << "()";
988 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000989
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000990 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000991 OS << "VersionTuple " << getUpperName();
992 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000993
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000994 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000995 OS << "VersionTuple " << getLowerName() << ";\n";
996 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000997
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000998 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000999 OS << " VersionTuple " << getLowerName()
1000 << "= ReadVersionTuple(Record, Idx);\n";
1001 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001002
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001003 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +00001004 OS << getLowerName();
1005 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001006
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001007 void writePCHWrite(raw_ostream &OS) const override {
Richard Smith290d8012016-04-06 17:06:00 +00001008 OS << " Record.AddVersionTuple(SA->get" << getUpperName() << "());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00001009 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001010
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001011 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00001012 OS << getLowerName() << "=\" << get" << getUpperName() << "() << \"";
1013 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001014
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001015 void writeDump(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001016 OS << " OS << \" \" << SA->get" << getUpperName() << "();\n";
1017 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00001018 };
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001019
1020 class ExprArgument : public SimpleArgument {
1021 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +00001022 ExprArgument(const Record &Arg, StringRef Attr)
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001023 : SimpleArgument(Arg, Attr, "Expr *")
1024 {}
1025
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001026 void writeASTVisitorTraversal(raw_ostream &OS) const override {
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00001027 OS << " if (!"
1028 << "getDerived().TraverseStmt(A->get" << getUpperName() << "()))\n";
1029 OS << " return false;\n";
1030 }
1031
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001032 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001033 OS << "tempInst" << getUpperName();
1034 }
1035
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001036 void writeTemplateInstantiation(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001037 OS << " " << getType() << " tempInst" << getUpperName() << ";\n";
1038 OS << " {\n";
1039 OS << " EnterExpressionEvaluationContext "
1040 << "Unevaluated(S, Sema::Unevaluated);\n";
1041 OS << " ExprResult " << "Result = S.SubstExpr("
1042 << "A->get" << getUpperName() << "(), TemplateArgs);\n";
1043 OS << " tempInst" << getUpperName() << " = "
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001044 << "Result.getAs<Expr>();\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001045 OS << " }\n";
1046 }
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001047
Craig Topper3164f332014-03-11 03:39:26 +00001048 void writeDump(raw_ostream &OS) const override {}
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001049
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001050 void writeDumpChildren(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001051 OS << " dumpStmt(SA->get" << getUpperName() << "());\n";
1052 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001053
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001054 void writeHasChildren(raw_ostream &OS) const override { OS << "true"; }
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001055 };
1056
1057 class VariadicExprArgument : public VariadicArgument {
1058 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +00001059 VariadicExprArgument(const Record &Arg, StringRef Attr)
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001060 : VariadicArgument(Arg, Attr, "Expr *")
1061 {}
1062
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001063 void writeASTVisitorTraversal(raw_ostream &OS) const override {
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00001064 OS << " {\n";
1065 OS << " " << getType() << " *I = A->" << getLowerName()
1066 << "_begin();\n";
1067 OS << " " << getType() << " *E = A->" << getLowerName()
1068 << "_end();\n";
1069 OS << " for (; I != E; ++I) {\n";
1070 OS << " if (!getDerived().TraverseStmt(*I))\n";
1071 OS << " return false;\n";
1072 OS << " }\n";
1073 OS << " }\n";
1074 }
1075
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001076 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001077 OS << "tempInst" << getUpperName() << ", "
1078 << "A->" << getLowerName() << "_size()";
1079 }
1080
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001081 void writeTemplateInstantiation(raw_ostream &OS) const override {
Eugene Zelenko5f02b772015-12-08 18:49:01 +00001082 OS << " auto *tempInst" << getUpperName()
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001083 << " = new (C, 16) " << getType()
1084 << "[A->" << getLowerName() << "_size()];\n";
1085 OS << " {\n";
1086 OS << " EnterExpressionEvaluationContext "
1087 << "Unevaluated(S, Sema::Unevaluated);\n";
1088 OS << " " << getType() << " *TI = tempInst" << getUpperName()
1089 << ";\n";
1090 OS << " " << getType() << " *I = A->" << getLowerName()
1091 << "_begin();\n";
1092 OS << " " << getType() << " *E = A->" << getLowerName()
1093 << "_end();\n";
1094 OS << " for (; I != E; ++I, ++TI) {\n";
1095 OS << " ExprResult Result = S.SubstExpr(*I, TemplateArgs);\n";
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001096 OS << " *TI = Result.getAs<Expr>();\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001097 OS << " }\n";
1098 OS << " }\n";
1099 }
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001100
Craig Topper3164f332014-03-11 03:39:26 +00001101 void writeDump(raw_ostream &OS) const override {}
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001102
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001103 void writeDumpChildren(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001104 OS << " for (" << getAttrName() << "Attr::" << getLowerName()
1105 << "_iterator I = SA->" << getLowerName() << "_begin(), E = SA->"
Richard Smithf7514452014-10-30 21:02:37 +00001106 << getLowerName() << "_end(); I != E; ++I)\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001107 OS << " dumpStmt(*I);\n";
Richard Trieude5cc7d2013-01-31 01:44:26 +00001108 }
1109
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001110 void writeHasChildren(raw_ostream &OS) const override {
Richard Trieude5cc7d2013-01-31 01:44:26 +00001111 OS << "SA->" << getLowerName() << "_begin() != "
1112 << "SA->" << getLowerName() << "_end()";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001113 }
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001114 };
Richard Smithb87c4652013-10-31 21:23:20 +00001115
Peter Collingbourne915df992015-05-15 18:33:32 +00001116 class VariadicStringArgument : public VariadicArgument {
1117 public:
1118 VariadicStringArgument(const Record &Arg, StringRef Attr)
Benjamin Kramer1b582012016-02-13 18:11:49 +00001119 : VariadicArgument(Arg, Attr, "StringRef")
Peter Collingbourne915df992015-05-15 18:33:32 +00001120 {}
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001121
Benjamin Kramer1b582012016-02-13 18:11:49 +00001122 void writeCtorBody(raw_ostream &OS) const override {
1123 OS << " for (size_t I = 0, E = " << getArgSizeName() << "; I != E;\n"
1124 " ++I) {\n"
1125 " StringRef Ref = " << getUpperName() << "[I];\n"
1126 " if (!Ref.empty()) {\n"
1127 " char *Mem = new (Ctx, 1) char[Ref.size()];\n"
1128 " std::memcpy(Mem, Ref.data(), Ref.size());\n"
1129 " " << getArgName() << "[I] = StringRef(Mem, Ref.size());\n"
1130 " }\n"
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001131 " }\n";
Benjamin Kramer1b582012016-02-13 18:11:49 +00001132 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001133
Peter Collingbourne915df992015-05-15 18:33:32 +00001134 void writeValueImpl(raw_ostream &OS) const override {
1135 OS << " OS << \"\\\"\" << Val << \"\\\"\";\n";
1136 }
1137 };
1138
Richard Smithb87c4652013-10-31 21:23:20 +00001139 class TypeArgument : public SimpleArgument {
1140 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +00001141 TypeArgument(const Record &Arg, StringRef Attr)
Richard Smithb87c4652013-10-31 21:23:20 +00001142 : SimpleArgument(Arg, Attr, "TypeSourceInfo *")
1143 {}
1144
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001145 void writeAccessors(raw_ostream &OS) const override {
Richard Smithb87c4652013-10-31 21:23:20 +00001146 OS << " QualType get" << getUpperName() << "() const {\n";
1147 OS << " return " << getLowerName() << "->getType();\n";
1148 OS << " }";
1149 OS << " " << getType() << " get" << getUpperName() << "Loc() const {\n";
1150 OS << " return " << getLowerName() << ";\n";
1151 OS << " }";
1152 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001153
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001154 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
Richard Smithb87c4652013-10-31 21:23:20 +00001155 OS << "A->get" << getUpperName() << "Loc()";
1156 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001157
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001158 void writePCHWrite(raw_ostream &OS) const override {
Richard Smithb87c4652013-10-31 21:23:20 +00001159 OS << " " << WritePCHRecord(
1160 getType(), "SA->get" + std::string(getUpperName()) + "Loc()");
1161 }
1162 };
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001163
Hans Wennborgdcfba332015-10-06 23:40:43 +00001164} // end anonymous namespace
Peter Collingbournebee583f2011-10-06 13:03:08 +00001165
Aaron Ballman2f22b942014-05-20 19:47:14 +00001166static std::unique_ptr<Argument>
1167createArgument(const Record &Arg, StringRef Attr,
1168 const Record *Search = nullptr) {
Peter Collingbournebee583f2011-10-06 13:03:08 +00001169 if (!Search)
1170 Search = &Arg;
1171
David Blaikie28f30ca2014-08-08 23:59:38 +00001172 std::unique_ptr<Argument> Ptr;
Peter Collingbournebee583f2011-10-06 13:03:08 +00001173 llvm::StringRef ArgName = Search->getName();
1174
David Blaikie28f30ca2014-08-08 23:59:38 +00001175 if (ArgName == "AlignedArgument")
1176 Ptr = llvm::make_unique<AlignedArgument>(Arg, Attr);
1177 else if (ArgName == "EnumArgument")
1178 Ptr = llvm::make_unique<EnumArgument>(Arg, Attr);
1179 else if (ArgName == "ExprArgument")
1180 Ptr = llvm::make_unique<ExprArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001181 else if (ArgName == "FunctionArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001182 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "FunctionDecl *");
Peter Collingbournebee583f2011-10-06 13:03:08 +00001183 else if (ArgName == "IdentifierArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001184 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "IdentifierInfo *");
David Majnemer4bb09802014-02-10 19:50:15 +00001185 else if (ArgName == "DefaultBoolArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001186 Ptr = llvm::make_unique<DefaultSimpleArgument>(
1187 Arg, Attr, "bool", Arg.getValueAsBit("Default"));
1188 else if (ArgName == "BoolArgument")
1189 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "bool");
Aaron Ballman18a78382013-11-21 00:28:23 +00001190 else if (ArgName == "DefaultIntArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001191 Ptr = llvm::make_unique<DefaultSimpleArgument>(
1192 Arg, Attr, "int", Arg.getValueAsInt("Default"));
1193 else if (ArgName == "IntArgument")
1194 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "int");
1195 else if (ArgName == "StringArgument")
1196 Ptr = llvm::make_unique<StringArgument>(Arg, Attr);
1197 else if (ArgName == "TypeArgument")
1198 Ptr = llvm::make_unique<TypeArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001199 else if (ArgName == "UnsignedArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001200 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "unsigned");
Peter Collingbournebee583f2011-10-06 13:03:08 +00001201 else if (ArgName == "VariadicUnsignedArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001202 Ptr = llvm::make_unique<VariadicArgument>(Arg, Attr, "unsigned");
Peter Collingbourne915df992015-05-15 18:33:32 +00001203 else if (ArgName == "VariadicStringArgument")
1204 Ptr = llvm::make_unique<VariadicStringArgument>(Arg, Attr);
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001205 else if (ArgName == "VariadicEnumArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001206 Ptr = llvm::make_unique<VariadicEnumArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001207 else if (ArgName == "VariadicExprArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001208 Ptr = llvm::make_unique<VariadicExprArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001209 else if (ArgName == "VersionArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001210 Ptr = llvm::make_unique<VersionArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001211
1212 if (!Ptr) {
Aaron Ballman18a78382013-11-21 00:28:23 +00001213 // Search in reverse order so that the most-derived type is handled first.
Craig Topper25761242016-01-18 19:52:54 +00001214 ArrayRef<std::pair<Record*, SMRange>> Bases = Search->getSuperClasses();
David Majnemerf7e36092016-06-23 00:15:04 +00001215 for (const auto &Base : llvm::reverse(Bases)) {
Craig Topper25761242016-01-18 19:52:54 +00001216 if ((Ptr = createArgument(Arg, Attr, Base.first)))
Peter Collingbournebee583f2011-10-06 13:03:08 +00001217 break;
1218 }
1219 }
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001220
1221 if (Ptr && Arg.getValueAsBit("Optional"))
1222 Ptr->setOptional(true);
1223
John McCalla62c1a92015-10-28 00:17:34 +00001224 if (Ptr && Arg.getValueAsBit("Fake"))
1225 Ptr->setFake(true);
1226
David Blaikie28f30ca2014-08-08 23:59:38 +00001227 return Ptr;
Peter Collingbournebee583f2011-10-06 13:03:08 +00001228}
1229
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00001230static void writeAvailabilityValue(raw_ostream &OS) {
1231 OS << "\" << getPlatform()->getName();\n"
Manman Ren42e09eb2016-03-10 23:54:12 +00001232 << " if (getStrict()) OS << \", strict\";\n"
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00001233 << " if (!getIntroduced().empty()) OS << \", introduced=\" << getIntroduced();\n"
1234 << " if (!getDeprecated().empty()) OS << \", deprecated=\" << getDeprecated();\n"
1235 << " if (!getObsoleted().empty()) OS << \", obsoleted=\" << getObsoleted();\n"
1236 << " if (getUnavailable()) OS << \", unavailable\";\n"
1237 << " OS << \"";
1238}
1239
Manman Renc7890fe2016-03-16 18:50:49 +00001240static void writeDeprecatedAttrValue(raw_ostream &OS, std::string &Variety) {
1241 OS << "\\\"\" << getMessage() << \"\\\"\";\n";
1242 // Only GNU deprecated has an optional fixit argument at the second position.
1243 if (Variety == "GNU")
1244 OS << " if (!getReplacement().empty()) OS << \", \\\"\""
1245 " << getReplacement() << \"\\\"\";\n";
1246 OS << " OS << \"";
1247}
1248
Aaron Ballman3e424b52013-12-26 18:30:57 +00001249static void writeGetSpellingFunction(Record &R, raw_ostream &OS) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001250 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballman3e424b52013-12-26 18:30:57 +00001251
1252 OS << "const char *" << R.getName() << "Attr::getSpelling() const {\n";
1253 if (Spellings.empty()) {
1254 OS << " return \"(No spelling)\";\n}\n\n";
1255 return;
1256 }
1257
1258 OS << " switch (SpellingListIndex) {\n"
1259 " default:\n"
1260 " llvm_unreachable(\"Unknown attribute spelling!\");\n"
1261 " return \"(No spelling)\";\n";
1262
1263 for (unsigned I = 0; I < Spellings.size(); ++I)
1264 OS << " case " << I << ":\n"
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001265 " return \"" << Spellings[I].name() << "\";\n";
Aaron Ballman3e424b52013-12-26 18:30:57 +00001266 // End of the switch statement.
1267 OS << " }\n";
1268 // End of the getSpelling function.
1269 OS << "}\n\n";
1270}
1271
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001272static void
1273writePrettyPrintFunction(Record &R,
1274 const std::vector<std::unique_ptr<Argument>> &Args,
1275 raw_ostream &OS) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001276 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Michael Han99315932013-01-24 16:46:58 +00001277
1278 OS << "void " << R.getName() << "Attr::printPretty("
1279 << "raw_ostream &OS, const PrintingPolicy &Policy) const {\n";
1280
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001281 if (Spellings.empty()) {
Michael Han99315932013-01-24 16:46:58 +00001282 OS << "}\n\n";
1283 return;
1284 }
1285
1286 OS <<
1287 " switch (SpellingListIndex) {\n"
1288 " default:\n"
1289 " llvm_unreachable(\"Unknown attribute spelling!\");\n"
1290 " break;\n";
1291
1292 for (unsigned I = 0; I < Spellings.size(); ++ I) {
1293 llvm::SmallString<16> Prefix;
1294 llvm::SmallString<8> Suffix;
1295 // The actual spelling of the name and namespace (if applicable)
1296 // of an attribute without considering prefix and suffix.
1297 llvm::SmallString<64> Spelling;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001298 std::string Name = Spellings[I].name();
1299 std::string Variety = Spellings[I].variety();
Michael Han99315932013-01-24 16:46:58 +00001300
1301 if (Variety == "GNU") {
1302 Prefix = " __attribute__((";
1303 Suffix = "))";
1304 } else if (Variety == "CXX11") {
1305 Prefix = " [[";
1306 Suffix = "]]";
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001307 std::string Namespace = Spellings[I].nameSpace();
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001308 if (!Namespace.empty()) {
Michael Han99315932013-01-24 16:46:58 +00001309 Spelling += Namespace;
1310 Spelling += "::";
1311 }
1312 } else if (Variety == "Declspec") {
1313 Prefix = " __declspec(";
1314 Suffix = ")";
Richard Smith0cdcc982013-01-29 01:24:26 +00001315 } else if (Variety == "Keyword") {
1316 Prefix = " ";
1317 Suffix = "";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001318 } else if (Variety == "Pragma") {
1319 Prefix = "#pragma ";
1320 Suffix = "\n";
1321 std::string Namespace = Spellings[I].nameSpace();
1322 if (!Namespace.empty()) {
1323 Spelling += Namespace;
1324 Spelling += " ";
1325 }
Michael Han99315932013-01-24 16:46:58 +00001326 } else {
Richard Smith0cdcc982013-01-29 01:24:26 +00001327 llvm_unreachable("Unknown attribute syntax variety!");
Michael Han99315932013-01-24 16:46:58 +00001328 }
1329
1330 Spelling += Name;
1331
1332 OS <<
1333 " case " << I << " : {\n"
Yaron Keren09fb7c62015-03-10 07:33:23 +00001334 " OS << \"" << Prefix << Spelling;
Michael Han99315932013-01-24 16:46:58 +00001335
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001336 if (Variety == "Pragma") {
1337 OS << " \";\n";
1338 OS << " printPrettyPragma(OS, Policy);\n";
Alexey Bataev6d455322015-10-12 06:59:48 +00001339 OS << " OS << \"\\n\";";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001340 OS << " break;\n";
1341 OS << " }\n";
1342 continue;
1343 }
1344
John McCalla62c1a92015-10-28 00:17:34 +00001345 // Fake arguments aren't part of the parsed form and should not be
1346 // pretty-printed.
1347 bool hasNonFakeArgs = false;
1348 for (const auto &arg : Args) {
1349 if (arg->isFake()) continue;
1350 hasNonFakeArgs = true;
1351 }
1352
Aaron Ballmanc960f562014-08-01 13:49:00 +00001353 // FIXME: always printing the parenthesis isn't the correct behavior for
1354 // attributes which have optional arguments that were not provided. For
1355 // instance: __attribute__((aligned)) will be pretty printed as
1356 // __attribute__((aligned())). The logic should check whether there is only
1357 // a single argument, and if it is optional, whether it has been provided.
John McCalla62c1a92015-10-28 00:17:34 +00001358 if (hasNonFakeArgs)
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001359 OS << "(";
Michael Han99315932013-01-24 16:46:58 +00001360 if (Spelling == "availability") {
1361 writeAvailabilityValue(OS);
Manman Renc7890fe2016-03-16 18:50:49 +00001362 } else if (Spelling == "deprecated" || Spelling == "gnu::deprecated") {
1363 writeDeprecatedAttrValue(OS, Variety);
Michael Han99315932013-01-24 16:46:58 +00001364 } else {
John McCalla62c1a92015-10-28 00:17:34 +00001365 unsigned index = 0;
1366 for (const auto &arg : Args) {
1367 if (arg->isFake()) continue;
1368 if (index++) OS << ", ";
1369 arg->writeValue(OS);
Michael Han99315932013-01-24 16:46:58 +00001370 }
1371 }
1372
John McCalla62c1a92015-10-28 00:17:34 +00001373 if (hasNonFakeArgs)
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001374 OS << ")";
Yaron Keren09fb7c62015-03-10 07:33:23 +00001375 OS << Suffix + "\";\n";
Michael Han99315932013-01-24 16:46:58 +00001376
1377 OS <<
1378 " break;\n"
1379 " }\n";
1380 }
1381
1382 // End of the switch statement.
1383 OS << "}\n";
1384 // End of the print function.
1385 OS << "}\n\n";
1386}
1387
Michael Hanaf02bbe2013-02-01 01:19:17 +00001388/// \brief Return the index of a spelling in a spelling list.
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001389static unsigned
1390getSpellingListIndex(const std::vector<FlattenedSpelling> &SpellingList,
1391 const FlattenedSpelling &Spelling) {
Alexander Kornienko6ee521c2015-01-23 15:36:10 +00001392 assert(!SpellingList.empty() && "Spelling list is empty!");
Michael Hanaf02bbe2013-02-01 01:19:17 +00001393
1394 for (unsigned Index = 0; Index < SpellingList.size(); ++Index) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001395 const FlattenedSpelling &S = SpellingList[Index];
1396 if (S.variety() != Spelling.variety())
Michael Hanaf02bbe2013-02-01 01:19:17 +00001397 continue;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001398 if (S.nameSpace() != Spelling.nameSpace())
Michael Hanaf02bbe2013-02-01 01:19:17 +00001399 continue;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001400 if (S.name() != Spelling.name())
Michael Hanaf02bbe2013-02-01 01:19:17 +00001401 continue;
1402
1403 return Index;
1404 }
1405
1406 llvm_unreachable("Unknown spelling!");
1407}
1408
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001409static void writeAttrAccessorDefinition(const Record &R, raw_ostream &OS) {
Michael Hanaf02bbe2013-02-01 01:19:17 +00001410 std::vector<Record*> Accessors = R.getValueAsListOfDefs("Accessors");
Aaron Ballman2f22b942014-05-20 19:47:14 +00001411 for (const auto *Accessor : Accessors) {
Michael Hanaf02bbe2013-02-01 01:19:17 +00001412 std::string Name = Accessor->getValueAsString("Name");
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001413 std::vector<FlattenedSpelling> Spellings =
1414 GetFlattenedSpellings(*Accessor);
1415 std::vector<FlattenedSpelling> SpellingList = GetFlattenedSpellings(R);
Alexander Kornienko6ee521c2015-01-23 15:36:10 +00001416 assert(!SpellingList.empty() &&
Michael Hanaf02bbe2013-02-01 01:19:17 +00001417 "Attribute with empty spelling list can't have accessors!");
1418
1419 OS << " bool " << Name << "() const { return SpellingListIndex == ";
1420 for (unsigned Index = 0; Index < Spellings.size(); ++Index) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001421 OS << getSpellingListIndex(SpellingList, Spellings[Index]);
Michael Hanaf02bbe2013-02-01 01:19:17 +00001422 if (Index != Spellings.size() -1)
1423 OS << " ||\n SpellingListIndex == ";
1424 else
1425 OS << "; }\n";
1426 }
1427 }
1428}
1429
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001430static bool
1431SpellingNamesAreCommon(const std::vector<FlattenedSpelling>& Spellings) {
Aaron Ballman36a53502014-01-16 13:03:14 +00001432 assert(!Spellings.empty() && "An empty list of spellings was provided");
1433 std::string FirstName = NormalizeNameForSpellingComparison(
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001434 Spellings.front().name());
Aaron Ballman2f22b942014-05-20 19:47:14 +00001435 for (const auto &Spelling :
1436 llvm::make_range(std::next(Spellings.begin()), Spellings.end())) {
1437 std::string Name = NormalizeNameForSpellingComparison(Spelling.name());
Aaron Ballman36a53502014-01-16 13:03:14 +00001438 if (Name != FirstName)
1439 return false;
1440 }
1441 return true;
1442}
1443
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001444typedef std::map<unsigned, std::string> SemanticSpellingMap;
1445static std::string
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001446CreateSemanticSpellings(const std::vector<FlattenedSpelling> &Spellings,
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001447 SemanticSpellingMap &Map) {
1448 // The enumerants are automatically generated based on the variety,
1449 // namespace (if present) and name for each attribute spelling. However,
1450 // care is taken to avoid trampling on the reserved namespace due to
1451 // underscores.
1452 std::string Ret(" enum Spelling {\n");
1453 std::set<std::string> Uniques;
1454 unsigned Idx = 0;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001455 for (auto I = Spellings.begin(), E = Spellings.end(); I != E; ++I, ++Idx) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001456 const FlattenedSpelling &S = *I;
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00001457 const std::string &Variety = S.variety();
1458 const std::string &Spelling = S.name();
1459 const std::string &Namespace = S.nameSpace();
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001460 std::string EnumName;
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001461
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001462 EnumName += (Variety + "_");
1463 if (!Namespace.empty())
1464 EnumName += (NormalizeNameForSpellingComparison(Namespace).str() +
1465 "_");
1466 EnumName += NormalizeNameForSpellingComparison(Spelling);
1467
1468 // Even if the name is not unique, this spelling index corresponds to a
1469 // particular enumerant name that we've calculated.
1470 Map[Idx] = EnumName;
1471
1472 // Since we have been stripping underscores to avoid trampling on the
1473 // reserved namespace, we may have inadvertently created duplicate
1474 // enumerant names. These duplicates are not considered part of the
1475 // semantic spelling, and can be elided.
1476 if (Uniques.find(EnumName) != Uniques.end())
1477 continue;
1478
1479 Uniques.insert(EnumName);
1480 if (I != Spellings.begin())
1481 Ret += ",\n";
Aaron Ballman9bf6b752015-03-10 17:19:18 +00001482 // Duplicate spellings are not considered part of the semantic spelling
1483 // enumeration, but the spelling index and semantic spelling values are
1484 // meant to be equivalent, so we must specify a concrete value for each
1485 // enumerator.
1486 Ret += " " + EnumName + " = " + llvm::utostr(Idx);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001487 }
1488 Ret += "\n };\n\n";
1489 return Ret;
1490}
1491
1492void WriteSemanticSpellingSwitch(const std::string &VarName,
1493 const SemanticSpellingMap &Map,
1494 raw_ostream &OS) {
1495 OS << " switch (" << VarName << ") {\n default: "
1496 << "llvm_unreachable(\"Unknown spelling list index\");\n";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001497 for (const auto &I : Map)
1498 OS << " case " << I.first << ": return " << I.second << ";\n";
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001499 OS << " }\n";
1500}
1501
Aaron Ballman35db2b32014-01-29 22:13:45 +00001502// Emits the LateParsed property for attributes.
1503static void emitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) {
1504 OS << "#if defined(CLANG_ATTR_LATE_PARSED_LIST)\n";
1505 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
1506
Aaron Ballman2f22b942014-05-20 19:47:14 +00001507 for (const auto *Attr : Attrs) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001508 bool LateParsed = Attr->getValueAsBit("LateParsed");
Aaron Ballman35db2b32014-01-29 22:13:45 +00001509
1510 if (LateParsed) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001511 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Attr);
Aaron Ballman35db2b32014-01-29 22:13:45 +00001512
1513 // FIXME: Handle non-GNU attributes
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001514 for (const auto &I : Spellings) {
1515 if (I.variety() != "GNU")
Aaron Ballman35db2b32014-01-29 22:13:45 +00001516 continue;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001517 OS << ".Case(\"" << I.name() << "\", " << LateParsed << ")\n";
Aaron Ballman35db2b32014-01-29 22:13:45 +00001518 }
1519 }
1520 }
1521 OS << "#endif // CLANG_ATTR_LATE_PARSED_LIST\n\n";
1522}
1523
1524/// \brief Emits the first-argument-is-type property for attributes.
1525static void emitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS) {
1526 OS << "#if defined(CLANG_ATTR_TYPE_ARG_LIST)\n";
1527 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
1528
Aaron Ballman2f22b942014-05-20 19:47:14 +00001529 for (const auto *Attr : Attrs) {
Aaron Ballman35db2b32014-01-29 22:13:45 +00001530 // Determine whether the first argument is a type.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001531 std::vector<Record *> Args = Attr->getValueAsListOfDefs("Args");
Aaron Ballman35db2b32014-01-29 22:13:45 +00001532 if (Args.empty())
1533 continue;
1534
Craig Topper25761242016-01-18 19:52:54 +00001535 if (Args[0]->getSuperClasses().back().first->getName() != "TypeArgument")
Aaron Ballman35db2b32014-01-29 22:13:45 +00001536 continue;
1537
1538 // All these spellings take a single type argument.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001539 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Attr);
Aaron Ballman35db2b32014-01-29 22:13:45 +00001540 std::set<std::string> Emitted;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001541 for (const auto &S : Spellings) {
1542 if (Emitted.insert(S.name()).second)
1543 OS << ".Case(\"" << S.name() << "\", " << "true" << ")\n";
Aaron Ballman35db2b32014-01-29 22:13:45 +00001544 }
1545 }
1546 OS << "#endif // CLANG_ATTR_TYPE_ARG_LIST\n\n";
1547}
1548
1549/// \brief Emits the parse-arguments-in-unevaluated-context property for
1550/// attributes.
1551static void emitClangAttrArgContextList(RecordKeeper &Records, raw_ostream &OS) {
1552 OS << "#if defined(CLANG_ATTR_ARG_CONTEXT_LIST)\n";
1553 ParsedAttrMap Attrs = getParsedAttrList(Records);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001554 for (const auto &I : Attrs) {
1555 const Record &Attr = *I.second;
Aaron Ballman35db2b32014-01-29 22:13:45 +00001556
1557 if (!Attr.getValueAsBit("ParseArgumentsAsUnevaluated"))
1558 continue;
1559
1560 // All these spellings take are parsed unevaluated.
1561 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attr);
1562 std::set<std::string> Emitted;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001563 for (const auto &S : Spellings) {
1564 if (Emitted.insert(S.name()).second)
1565 OS << ".Case(\"" << S.name() << "\", " << "true" << ")\n";
Aaron Ballman35db2b32014-01-29 22:13:45 +00001566 }
1567 }
1568 OS << "#endif // CLANG_ATTR_ARG_CONTEXT_LIST\n\n";
1569}
1570
1571static bool isIdentifierArgument(Record *Arg) {
1572 return !Arg->getSuperClasses().empty() &&
Craig Topper25761242016-01-18 19:52:54 +00001573 llvm::StringSwitch<bool>(Arg->getSuperClasses().back().first->getName())
Aaron Ballman35db2b32014-01-29 22:13:45 +00001574 .Case("IdentifierArgument", true)
1575 .Case("EnumArgument", true)
Aaron Ballman55ef1512014-12-19 16:42:04 +00001576 .Case("VariadicEnumArgument", true)
Aaron Ballman35db2b32014-01-29 22:13:45 +00001577 .Default(false);
1578}
1579
1580// Emits the first-argument-is-identifier property for attributes.
1581static void emitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) {
1582 OS << "#if defined(CLANG_ATTR_IDENTIFIER_ARG_LIST)\n";
1583 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
1584
Aaron Ballman2f22b942014-05-20 19:47:14 +00001585 for (const auto *Attr : Attrs) {
Aaron Ballman35db2b32014-01-29 22:13:45 +00001586 // Determine whether the first argument is an identifier.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001587 std::vector<Record *> Args = Attr->getValueAsListOfDefs("Args");
Aaron Ballman35db2b32014-01-29 22:13:45 +00001588 if (Args.empty() || !isIdentifierArgument(Args[0]))
1589 continue;
1590
1591 // All these spellings take an identifier argument.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001592 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Attr);
Aaron Ballman35db2b32014-01-29 22:13:45 +00001593 std::set<std::string> Emitted;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001594 for (const auto &S : Spellings) {
1595 if (Emitted.insert(S.name()).second)
1596 OS << ".Case(\"" << S.name() << "\", " << "true" << ")\n";
Aaron Ballman35db2b32014-01-29 22:13:45 +00001597 }
1598 }
1599 OS << "#endif // CLANG_ATTR_IDENTIFIER_ARG_LIST\n\n";
1600}
1601
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00001602namespace clang {
1603
1604// Emits the class definitions for attributes.
1605void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00001606 emitSourceFileHeader("Attribute classes' definitions", OS);
1607
Peter Collingbournebee583f2011-10-06 13:03:08 +00001608 OS << "#ifndef LLVM_CLANG_ATTR_CLASSES_INC\n";
1609 OS << "#define LLVM_CLANG_ATTR_CLASSES_INC\n\n";
1610
1611 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
1612
Aaron Ballman2f22b942014-05-20 19:47:14 +00001613 for (const auto *Attr : Attrs) {
1614 const Record &R = *Attr;
Aaron Ballman06bd44b2014-02-17 18:23:02 +00001615
1616 // FIXME: Currently, documentation is generated as-needed due to the fact
1617 // that there is no way to allow a generated project "reach into" the docs
1618 // directory (for instance, it may be an out-of-tree build). However, we want
1619 // to ensure that every attribute has a Documentation field, and produce an
1620 // error if it has been neglected. Otherwise, the on-demand generation which
1621 // happens server-side will fail. This code is ensuring that functionality,
1622 // even though this Emitter doesn't technically need the documentation.
1623 // When attribute documentation can be generated as part of the build
1624 // itself, this code can be removed.
1625 (void)R.getValueAsListOfDefs("Documentation");
Douglas Gregorb2daf842012-05-02 15:56:52 +00001626
1627 if (!R.getValueAsBit("ASTNode"))
1628 continue;
1629
Craig Topper25761242016-01-18 19:52:54 +00001630 ArrayRef<std::pair<Record *, SMRange>> Supers = R.getSuperClasses();
Aaron Ballman0979e9e2013-07-30 01:44:15 +00001631 assert(!Supers.empty() && "Forgot to specify a superclass for the attr");
Aaron Ballman0979e9e2013-07-30 01:44:15 +00001632 std::string SuperName;
David Majnemerf7e36092016-06-23 00:15:04 +00001633 for (const auto &Super : llvm::reverse(Supers)) {
Craig Topper25761242016-01-18 19:52:54 +00001634 const Record *R = Super.first;
1635 if (R->getName() != "TargetSpecificAttr" && SuperName.empty())
1636 SuperName = R->getName();
Aaron Ballman0979e9e2013-07-30 01:44:15 +00001637 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00001638
1639 OS << "class " << R.getName() << "Attr : public " << SuperName << " {\n";
1640
1641 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001642 std::vector<std::unique_ptr<Argument>> Args;
Peter Collingbournebee583f2011-10-06 13:03:08 +00001643 Args.reserve(ArgRecords.size());
1644
John McCalla62c1a92015-10-28 00:17:34 +00001645 bool HasOptArg = false;
1646 bool HasFakeArg = false;
Aaron Ballman2f22b942014-05-20 19:47:14 +00001647 for (const auto *ArgRecord : ArgRecords) {
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001648 Args.emplace_back(createArgument(*ArgRecord, R.getName()));
1649 Args.back()->writeDeclarations(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001650 OS << "\n\n";
John McCalla62c1a92015-10-28 00:17:34 +00001651
1652 // For these purposes, fake takes priority over optional.
1653 if (Args.back()->isFake()) {
1654 HasFakeArg = true;
1655 } else if (Args.back()->isOptional()) {
1656 HasOptArg = true;
1657 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00001658 }
1659
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001660 OS << "public:\n";
Aaron Ballman36a53502014-01-16 13:03:14 +00001661
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001662 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballman36a53502014-01-16 13:03:14 +00001663
1664 // If there are zero or one spellings, all spelling-related functionality
1665 // can be elided. If all of the spellings share the same name, the spelling
1666 // functionality can also be elided.
1667 bool ElideSpelling = (Spellings.size() <= 1) ||
1668 SpellingNamesAreCommon(Spellings);
1669
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001670 // This maps spelling index values to semantic Spelling enumerants.
1671 SemanticSpellingMap SemanticToSyntacticMap;
Aaron Ballman36a53502014-01-16 13:03:14 +00001672
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001673 if (!ElideSpelling)
1674 OS << CreateSemanticSpellings(Spellings, SemanticToSyntacticMap);
Aaron Ballman36a53502014-01-16 13:03:14 +00001675
John McCalla62c1a92015-10-28 00:17:34 +00001676 // Emit CreateImplicit factory methods.
1677 auto emitCreateImplicit = [&](bool emitFake) {
1678 OS << " static " << R.getName() << "Attr *CreateImplicit(";
1679 OS << "ASTContext &Ctx";
1680 if (!ElideSpelling)
1681 OS << ", Spelling S";
1682 for (auto const &ai : Args) {
1683 if (ai->isFake() && !emitFake) continue;
1684 OS << ", ";
1685 ai->writeCtorParameters(OS);
1686 }
1687 OS << ", SourceRange Loc = SourceRange()";
1688 OS << ") {\n";
Eugene Zelenko5f02b772015-12-08 18:49:01 +00001689 OS << " auto *A = new (Ctx) " << R.getName();
John McCalla62c1a92015-10-28 00:17:34 +00001690 OS << "Attr(Loc, Ctx, ";
1691 for (auto const &ai : Args) {
1692 if (ai->isFake() && !emitFake) continue;
1693 ai->writeImplicitCtorArgs(OS);
1694 OS << ", ";
1695 }
1696 OS << (ElideSpelling ? "0" : "S") << ");\n";
1697 OS << " A->setImplicit(true);\n";
1698 OS << " return A;\n }\n\n";
1699 };
Aaron Ballman36a53502014-01-16 13:03:14 +00001700
John McCalla62c1a92015-10-28 00:17:34 +00001701 // Emit a CreateImplicit that takes all the arguments.
1702 emitCreateImplicit(true);
1703
1704 // Emit a CreateImplicit that takes all the non-fake arguments.
1705 if (HasFakeArg) {
1706 emitCreateImplicit(false);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001707 }
Michael Han99315932013-01-24 16:46:58 +00001708
John McCalla62c1a92015-10-28 00:17:34 +00001709 // Emit constructors.
1710 auto emitCtor = [&](bool emitOpt, bool emitFake) {
1711 auto shouldEmitArg = [=](const std::unique_ptr<Argument> &arg) {
1712 if (arg->isFake()) return emitFake;
1713 if (arg->isOptional()) return emitOpt;
1714 return true;
1715 };
Michael Han99315932013-01-24 16:46:58 +00001716
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001717 OS << " " << R.getName() << "Attr(SourceRange R, ASTContext &Ctx\n";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001718 for (auto const &ai : Args) {
John McCalla62c1a92015-10-28 00:17:34 +00001719 if (!shouldEmitArg(ai)) continue;
1720 OS << " , ";
1721 ai->writeCtorParameters(OS);
1722 OS << "\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001723 }
1724
1725 OS << " , ";
Aaron Ballman36a53502014-01-16 13:03:14 +00001726 OS << "unsigned SI\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001727
1728 OS << " )\n";
Benjamin Kramer845e32c2015-03-19 16:06:49 +00001729 OS << " : " << SuperName << "(attr::" << R.getName() << ", R, SI, "
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001730 << ( R.getValueAsBit("LateParsed") ? "true" : "false" ) << ", "
1731 << ( R.getValueAsBit("DuplicatesAllowedWhileMerging") ? "true" : "false" ) << ")\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001732
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001733 for (auto const &ai : Args) {
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001734 OS << " , ";
John McCalla62c1a92015-10-28 00:17:34 +00001735 if (!shouldEmitArg(ai)) {
1736 ai->writeCtorDefaultInitializers(OS);
1737 } else {
1738 ai->writeCtorInitializers(OS);
1739 }
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001740 OS << "\n";
1741 }
1742
1743 OS << " {\n";
1744
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001745 for (auto const &ai : Args) {
John McCalla62c1a92015-10-28 00:17:34 +00001746 if (!shouldEmitArg(ai)) continue;
1747 ai->writeCtorBody(OS);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001748 }
1749 OS << " }\n\n";
John McCalla62c1a92015-10-28 00:17:34 +00001750 };
1751
1752 // Emit a constructor that includes all the arguments.
1753 // This is necessary for cloning.
1754 emitCtor(true, true);
1755
1756 // Emit a constructor that takes all the non-fake arguments.
1757 if (HasFakeArg) {
1758 emitCtor(true, false);
1759 }
1760
1761 // Emit a constructor that takes all the non-fake, non-optional arguments.
1762 if (HasOptArg) {
1763 emitCtor(false, false);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001764 }
1765
Benjamin Kramer845e32c2015-03-19 16:06:49 +00001766 OS << " " << R.getName() << "Attr *clone(ASTContext &C) const;\n";
Craig Toppercbce6e92014-03-11 06:22:39 +00001767 OS << " void printPretty(raw_ostream &OS,\n"
Benjamin Kramer845e32c2015-03-19 16:06:49 +00001768 << " const PrintingPolicy &Policy) const;\n";
1769 OS << " const char *getSpelling() const;\n";
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001770
1771 if (!ElideSpelling) {
1772 assert(!SemanticToSyntacticMap.empty() && "Empty semantic mapping list");
1773 OS << " Spelling getSemanticSpelling() const {\n";
1774 WriteSemanticSpellingSwitch("SpellingListIndex", SemanticToSyntacticMap,
1775 OS);
1776 OS << " }\n";
1777 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00001778
Michael Hanaf02bbe2013-02-01 01:19:17 +00001779 writeAttrAccessorDefinition(R, OS);
1780
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001781 for (auto const &ai : Args) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001782 ai->writeAccessors(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001783 OS << "\n\n";
Aaron Ballman682ee422013-09-11 19:47:58 +00001784
John McCalla62c1a92015-10-28 00:17:34 +00001785 // Don't write conversion routines for fake arguments.
1786 if (ai->isFake()) continue;
1787
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001788 if (ai->isEnumArg())
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001789 static_cast<const EnumArgument *>(ai.get())->writeConversion(OS);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001790 else if (ai->isVariadicEnumArg())
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001791 static_cast<const VariadicEnumArgument *>(ai.get())
1792 ->writeConversion(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001793 }
1794
Jakob Stoklund Olesen6f2288b62012-01-13 04:57:47 +00001795 OS << R.getValueAsString("AdditionalMembers");
Peter Collingbournebee583f2011-10-06 13:03:08 +00001796 OS << "\n\n";
1797
1798 OS << " static bool classof(const Attr *A) { return A->getKind() == "
1799 << "attr::" << R.getName() << "; }\n";
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00001800
Peter Collingbournebee583f2011-10-06 13:03:08 +00001801 OS << "};\n\n";
1802 }
1803
Eugene Zelenko5f02b772015-12-08 18:49:01 +00001804 OS << "#endif // LLVM_CLANG_ATTR_CLASSES_INC\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00001805}
1806
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00001807// Emits the class method definitions for attributes.
1808void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00001809 emitSourceFileHeader("Attribute classes' member function definitions", OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001810
1811 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
Peter Collingbournebee583f2011-10-06 13:03:08 +00001812
Aaron Ballman2f22b942014-05-20 19:47:14 +00001813 for (auto *Attr : Attrs) {
1814 Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00001815
1816 if (!R.getValueAsBit("ASTNode"))
1817 continue;
Peter Collingbournebee583f2011-10-06 13:03:08 +00001818
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001819 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
1820 std::vector<std::unique_ptr<Argument>> Args;
Aaron Ballman2f22b942014-05-20 19:47:14 +00001821 for (const auto *Arg : ArgRecords)
1822 Args.emplace_back(createArgument(*Arg, R.getName()));
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001823
1824 for (auto const &ai : Args)
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001825 ai->writeAccessorDefinitions(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001826
1827 OS << R.getName() << "Attr *" << R.getName()
1828 << "Attr::clone(ASTContext &C) const {\n";
Hans Wennborg613807b2014-05-31 01:30:30 +00001829 OS << " auto *A = new (C) " << R.getName() << "Attr(getLocation(), C";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001830 for (auto const &ai : Args) {
Peter Collingbournebee583f2011-10-06 13:03:08 +00001831 OS << ", ";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001832 ai->writeCloneArgs(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001833 }
Hans Wennborg613807b2014-05-31 01:30:30 +00001834 OS << ", getSpellingListIndex());\n";
1835 OS << " A->Inherited = Inherited;\n";
1836 OS << " A->IsPackExpansion = IsPackExpansion;\n";
1837 OS << " A->Implicit = Implicit;\n";
1838 OS << " return A;\n}\n\n";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00001839
Michael Han99315932013-01-24 16:46:58 +00001840 writePrettyPrintFunction(R, Args, OS);
Aaron Ballman3e424b52013-12-26 18:30:57 +00001841 writeGetSpellingFunction(R, OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001842 }
Benjamin Kramer845e32c2015-03-19 16:06:49 +00001843
1844 // Instead of relying on virtual dispatch we just create a huge dispatch
1845 // switch. This is both smaller and faster than virtual functions.
1846 auto EmitFunc = [&](const char *Method) {
1847 OS << " switch (getKind()) {\n";
1848 for (const auto *Attr : Attrs) {
1849 const Record &R = *Attr;
1850 if (!R.getValueAsBit("ASTNode"))
1851 continue;
1852
1853 OS << " case attr::" << R.getName() << ":\n";
1854 OS << " return cast<" << R.getName() << "Attr>(this)->" << Method
1855 << ";\n";
1856 }
Benjamin Kramer845e32c2015-03-19 16:06:49 +00001857 OS << " }\n";
1858 OS << " llvm_unreachable(\"Unexpected attribute kind!\");\n";
1859 OS << "}\n\n";
1860 };
1861
1862 OS << "const char *Attr::getSpelling() const {\n";
1863 EmitFunc("getSpelling()");
1864
1865 OS << "Attr *Attr::clone(ASTContext &C) const {\n";
1866 EmitFunc("clone(C)");
1867
1868 OS << "void Attr::printPretty(raw_ostream &OS, "
1869 "const PrintingPolicy &Policy) const {\n";
1870 EmitFunc("printPretty(OS, Policy)");
Peter Collingbournebee583f2011-10-06 13:03:08 +00001871}
1872
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00001873} // end namespace clang
1874
John McCall2225c8b2016-03-01 00:18:05 +00001875static void emitAttrList(raw_ostream &OS, StringRef Class,
Peter Collingbournebee583f2011-10-06 13:03:08 +00001876 const std::vector<Record*> &AttrList) {
John McCall2225c8b2016-03-01 00:18:05 +00001877 for (auto Cur : AttrList) {
1878 OS << Class << "(" << Cur->getName() << ")\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00001879 }
1880}
1881
Tyler Nowickic724a83e2014-10-12 20:46:07 +00001882// Determines if an attribute has a Pragma spelling.
1883static bool AttrHasPragmaSpelling(const Record *R) {
1884 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*R);
1885 return std::find_if(Spellings.begin(), Spellings.end(),
1886 [](const FlattenedSpelling &S) {
1887 return S.variety() == "Pragma";
1888 }) != Spellings.end();
1889}
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00001890
John McCall2225c8b2016-03-01 00:18:05 +00001891namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001892
John McCall2225c8b2016-03-01 00:18:05 +00001893 struct AttrClassDescriptor {
1894 const char * const MacroName;
1895 const char * const TableGenName;
1896 };
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001897
1898} // end anonymous namespace
John McCall2225c8b2016-03-01 00:18:05 +00001899
1900static const AttrClassDescriptor AttrClassDescriptors[] = {
1901 { "ATTR", "Attr" },
Richard Smith4f902c72016-03-08 00:32:55 +00001902 { "STMT_ATTR", "StmtAttr" },
John McCall2225c8b2016-03-01 00:18:05 +00001903 { "INHERITABLE_ATTR", "InheritableAttr" },
John McCall477f2bb2016-03-03 06:39:32 +00001904 { "INHERITABLE_PARAM_ATTR", "InheritableParamAttr" },
1905 { "PARAMETER_ABI_ATTR", "ParameterABIAttr" }
John McCall2225c8b2016-03-01 00:18:05 +00001906};
1907
1908static void emitDefaultDefine(raw_ostream &OS, StringRef name,
1909 const char *superName) {
1910 OS << "#ifndef " << name << "\n";
1911 OS << "#define " << name << "(NAME) ";
1912 if (superName) OS << superName << "(NAME)";
1913 OS << "\n#endif\n\n";
1914}
1915
1916namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001917
John McCall2225c8b2016-03-01 00:18:05 +00001918 /// A class of attributes.
1919 struct AttrClass {
1920 const AttrClassDescriptor &Descriptor;
1921 Record *TheRecord;
1922 AttrClass *SuperClass = nullptr;
1923 std::vector<AttrClass*> SubClasses;
1924 std::vector<Record*> Attrs;
1925
1926 AttrClass(const AttrClassDescriptor &Descriptor, Record *R)
1927 : Descriptor(Descriptor), TheRecord(R) {}
1928
1929 void emitDefaultDefines(raw_ostream &OS) const {
1930 // Default the macro unless this is a root class (i.e. Attr).
1931 if (SuperClass) {
1932 emitDefaultDefine(OS, Descriptor.MacroName,
1933 SuperClass->Descriptor.MacroName);
1934 }
1935 }
1936
1937 void emitUndefs(raw_ostream &OS) const {
1938 OS << "#undef " << Descriptor.MacroName << "\n";
1939 }
1940
1941 void emitAttrList(raw_ostream &OS) const {
1942 for (auto SubClass : SubClasses) {
1943 SubClass->emitAttrList(OS);
1944 }
1945
1946 ::emitAttrList(OS, Descriptor.MacroName, Attrs);
1947 }
1948
1949 void classifyAttrOnRoot(Record *Attr) {
1950 bool result = classifyAttr(Attr);
1951 assert(result && "failed to classify on root"); (void) result;
1952 }
1953
1954 void emitAttrRange(raw_ostream &OS) const {
1955 OS << "ATTR_RANGE(" << Descriptor.TableGenName
1956 << ", " << getFirstAttr()->getName()
1957 << ", " << getLastAttr()->getName() << ")\n";
1958 }
1959
1960 private:
1961 bool classifyAttr(Record *Attr) {
1962 // Check all the subclasses.
1963 for (auto SubClass : SubClasses) {
1964 if (SubClass->classifyAttr(Attr))
1965 return true;
1966 }
1967
1968 // It's not more specific than this class, but it might still belong here.
1969 if (Attr->isSubClassOf(TheRecord)) {
1970 Attrs.push_back(Attr);
1971 return true;
1972 }
1973
1974 return false;
1975 }
1976
1977 Record *getFirstAttr() const {
1978 if (!SubClasses.empty())
1979 return SubClasses.front()->getFirstAttr();
1980 return Attrs.front();
1981 }
1982
1983 Record *getLastAttr() const {
1984 if (!Attrs.empty())
1985 return Attrs.back();
1986 return SubClasses.back()->getLastAttr();
1987 }
1988 };
1989
1990 /// The entire hierarchy of attribute classes.
1991 class AttrClassHierarchy {
1992 std::vector<std::unique_ptr<AttrClass>> Classes;
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001993
John McCall2225c8b2016-03-01 00:18:05 +00001994 public:
1995 AttrClassHierarchy(RecordKeeper &Records) {
1996 // Find records for all the classes.
1997 for (auto &Descriptor : AttrClassDescriptors) {
1998 Record *ClassRecord = Records.getClass(Descriptor.TableGenName);
1999 AttrClass *Class = new AttrClass(Descriptor, ClassRecord);
2000 Classes.emplace_back(Class);
2001 }
2002
2003 // Link up the hierarchy.
2004 for (auto &Class : Classes) {
2005 if (AttrClass *SuperClass = findSuperClass(Class->TheRecord)) {
2006 Class->SuperClass = SuperClass;
2007 SuperClass->SubClasses.push_back(Class.get());
2008 }
2009 }
2010
2011#ifndef NDEBUG
2012 for (auto i = Classes.begin(), e = Classes.end(); i != e; ++i) {
2013 assert((i == Classes.begin()) == ((*i)->SuperClass == nullptr) &&
2014 "only the first class should be a root class!");
2015 }
2016#endif
2017 }
2018
2019 void emitDefaultDefines(raw_ostream &OS) const {
2020 for (auto &Class : Classes) {
2021 Class->emitDefaultDefines(OS);
2022 }
2023 }
2024
2025 void emitUndefs(raw_ostream &OS) const {
2026 for (auto &Class : Classes) {
2027 Class->emitUndefs(OS);
2028 }
2029 }
2030
2031 void emitAttrLists(raw_ostream &OS) const {
2032 // Just start from the root class.
2033 Classes[0]->emitAttrList(OS);
2034 }
2035
2036 void emitAttrRanges(raw_ostream &OS) const {
2037 for (auto &Class : Classes)
2038 Class->emitAttrRange(OS);
2039 }
2040
2041 void classifyAttr(Record *Attr) {
2042 // Add the attribute to the root class.
2043 Classes[0]->classifyAttrOnRoot(Attr);
2044 }
2045
2046 private:
2047 AttrClass *findClassByRecord(Record *R) const {
2048 for (auto &Class : Classes) {
2049 if (Class->TheRecord == R)
2050 return Class.get();
2051 }
2052 return nullptr;
2053 }
2054
2055 AttrClass *findSuperClass(Record *R) const {
2056 // TableGen flattens the superclass list, so we just need to walk it
2057 // in reverse.
2058 auto SuperClasses = R->getSuperClasses();
2059 for (signed i = 0, e = SuperClasses.size(); i != e; ++i) {
2060 auto SuperClass = findClassByRecord(SuperClasses[e - i - 1].first);
2061 if (SuperClass) return SuperClass;
2062 }
2063 return nullptr;
2064 }
2065 };
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002066
2067} // end anonymous namespace
John McCall2225c8b2016-03-01 00:18:05 +00002068
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002069namespace clang {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002070
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002071// Emits the enumeration list for attributes.
2072void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002073 emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002074
John McCall2225c8b2016-03-01 00:18:05 +00002075 AttrClassHierarchy Hierarchy(Records);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002076
John McCall2225c8b2016-03-01 00:18:05 +00002077 // Add defaulting macro definitions.
2078 Hierarchy.emitDefaultDefines(OS);
2079 emitDefaultDefine(OS, "PRAGMA_SPELLING_ATTR", nullptr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002080
John McCall2225c8b2016-03-01 00:18:05 +00002081 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
2082 std::vector<Record *> PragmaAttrs;
Aaron Ballman2f22b942014-05-20 19:47:14 +00002083 for (auto *Attr : Attrs) {
2084 if (!Attr->getValueAsBit("ASTNode"))
Douglas Gregorb2daf842012-05-02 15:56:52 +00002085 continue;
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002086
John McCall2225c8b2016-03-01 00:18:05 +00002087 // Add the attribute to the ad-hoc groups.
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002088 if (AttrHasPragmaSpelling(Attr))
2089 PragmaAttrs.push_back(Attr);
2090
John McCall2225c8b2016-03-01 00:18:05 +00002091 // Place it in the hierarchy.
2092 Hierarchy.classifyAttr(Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002093 }
2094
John McCall2225c8b2016-03-01 00:18:05 +00002095 // Emit the main attribute list.
2096 Hierarchy.emitAttrLists(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002097
John McCall2225c8b2016-03-01 00:18:05 +00002098 // Emit the ad hoc groups.
2099 emitAttrList(OS, "PRAGMA_SPELLING_ATTR", PragmaAttrs);
2100
2101 // Emit the attribute ranges.
2102 OS << "#ifdef ATTR_RANGE\n";
2103 Hierarchy.emitAttrRanges(OS);
2104 OS << "#undef ATTR_RANGE\n";
2105 OS << "#endif\n";
2106
2107 Hierarchy.emitUndefs(OS);
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002108 OS << "#undef PRAGMA_SPELLING_ATTR\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002109}
2110
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002111// Emits the code to read an attribute from a precompiled header.
2112void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002113 emitSourceFileHeader("Attribute deserialization code", OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002114
2115 Record *InhClass = Records.getClass("InheritableAttr");
2116 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"),
2117 ArgRecords;
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002118 std::vector<std::unique_ptr<Argument>> Args;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002119
2120 OS << " switch (Kind) {\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00002121 for (const auto *Attr : Attrs) {
2122 const Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00002123 if (!R.getValueAsBit("ASTNode"))
2124 continue;
2125
Peter Collingbournebee583f2011-10-06 13:03:08 +00002126 OS << " case attr::" << R.getName() << ": {\n";
2127 if (R.isSubClassOf(InhClass))
2128 OS << " bool isInherited = Record[Idx++];\n";
Aaron Ballman36a53502014-01-16 13:03:14 +00002129 OS << " bool isImplicit = Record[Idx++];\n";
2130 OS << " unsigned Spelling = Record[Idx++];\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002131 ArgRecords = R.getValueAsListOfDefs("Args");
2132 Args.clear();
Aaron Ballman2f22b942014-05-20 19:47:14 +00002133 for (const auto *Arg : ArgRecords) {
2134 Args.emplace_back(createArgument(*Arg, R.getName()));
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002135 Args.back()->writePCHReadDecls(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002136 }
2137 OS << " New = new (Context) " << R.getName() << "Attr(Range, Context";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002138 for (auto const &ri : Args) {
Peter Collingbournebee583f2011-10-06 13:03:08 +00002139 OS << ", ";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002140 ri->writePCHReadArgs(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002141 }
Aaron Ballman36a53502014-01-16 13:03:14 +00002142 OS << ", Spelling);\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002143 if (R.isSubClassOf(InhClass))
2144 OS << " cast<InheritableAttr>(New)->setInherited(isInherited);\n";
Aaron Ballman36a53502014-01-16 13:03:14 +00002145 OS << " New->setImplicit(isImplicit);\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002146 OS << " break;\n";
2147 OS << " }\n";
2148 }
2149 OS << " }\n";
2150}
2151
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002152// Emits the code to write an attribute to a precompiled header.
2153void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002154 emitSourceFileHeader("Attribute serialization code", OS);
2155
Peter Collingbournebee583f2011-10-06 13:03:08 +00002156 Record *InhClass = Records.getClass("InheritableAttr");
2157 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), Args;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002158
2159 OS << " switch (A->getKind()) {\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00002160 for (const auto *Attr : Attrs) {
2161 const Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00002162 if (!R.getValueAsBit("ASTNode"))
2163 continue;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002164 OS << " case attr::" << R.getName() << ": {\n";
2165 Args = R.getValueAsListOfDefs("Args");
2166 if (R.isSubClassOf(InhClass) || !Args.empty())
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002167 OS << " const auto *SA = cast<" << R.getName()
Peter Collingbournebee583f2011-10-06 13:03:08 +00002168 << "Attr>(A);\n";
2169 if (R.isSubClassOf(InhClass))
2170 OS << " Record.push_back(SA->isInherited());\n";
Aaron Ballman36a53502014-01-16 13:03:14 +00002171 OS << " Record.push_back(A->isImplicit());\n";
2172 OS << " Record.push_back(A->getSpellingListIndex());\n";
2173
Aaron Ballman2f22b942014-05-20 19:47:14 +00002174 for (const auto *Arg : Args)
2175 createArgument(*Arg, R.getName())->writePCHWrite(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002176 OS << " break;\n";
2177 OS << " }\n";
2178 }
2179 OS << " }\n";
2180}
2181
Bob Wilson0058b822015-07-20 22:57:36 +00002182// Generate a conditional expression to check if the current target satisfies
2183// the conditions for a TargetSpecificAttr record, and append the code for
2184// those checks to the Test string. If the FnName string pointer is non-null,
2185// append a unique suffix to distinguish this set of target checks from other
2186// TargetSpecificAttr records.
2187static void GenerateTargetSpecificAttrChecks(const Record *R,
2188 std::vector<std::string> &Arches,
2189 std::string &Test,
2190 std::string *FnName) {
2191 // It is assumed that there will be an llvm::Triple object
2192 // named "T" and a TargetInfo object named "Target" within
2193 // scope that can be used to determine whether the attribute exists in
2194 // a given target.
2195 Test += "(";
2196
2197 for (auto I = Arches.begin(), E = Arches.end(); I != E; ++I) {
2198 std::string Part = *I;
2199 Test += "T.getArch() == llvm::Triple::" + Part;
2200 if (I + 1 != E)
2201 Test += " || ";
2202 if (FnName)
2203 *FnName += Part;
2204 }
2205 Test += ")";
2206
2207 // If the attribute is specific to particular OSes, check those.
2208 if (!R->isValueUnset("OSes")) {
2209 // We know that there was at least one arch test, so we need to and in the
2210 // OS tests.
2211 Test += " && (";
2212 std::vector<std::string> OSes = R->getValueAsListOfStrings("OSes");
2213 for (auto I = OSes.begin(), E = OSes.end(); I != E; ++I) {
2214 std::string Part = *I;
2215
2216 Test += "T.getOS() == llvm::Triple::" + Part;
2217 if (I + 1 != E)
2218 Test += " || ";
2219 if (FnName)
2220 *FnName += Part;
2221 }
2222 Test += ")";
2223 }
2224
2225 // If one or more CXX ABIs are specified, check those as well.
2226 if (!R->isValueUnset("CXXABIs")) {
2227 Test += " && (";
2228 std::vector<std::string> CXXABIs = R->getValueAsListOfStrings("CXXABIs");
2229 for (auto I = CXXABIs.begin(), E = CXXABIs.end(); I != E; ++I) {
2230 std::string Part = *I;
2231 Test += "Target.getCXXABI().getKind() == TargetCXXABI::" + Part;
2232 if (I + 1 != E)
2233 Test += " || ";
2234 if (FnName)
2235 *FnName += Part;
2236 }
2237 Test += ")";
2238 }
2239}
2240
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002241static void GenerateHasAttrSpellingStringSwitch(
2242 const std::vector<Record *> &Attrs, raw_ostream &OS,
2243 const std::string &Variety = "", const std::string &Scope = "") {
2244 for (const auto *Attr : Attrs) {
Aaron Ballmana0344c52014-11-14 13:44:02 +00002245 // C++11-style attributes have specific version information associated with
2246 // them. If the attribute has no scope, the version information must not
2247 // have the default value (1), as that's incorrect. Instead, the unscoped
2248 // attribute version information should be taken from the SD-6 standing
2249 // document, which can be found at:
2250 // https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations
2251 int Version = 1;
2252
2253 if (Variety == "CXX11") {
2254 std::vector<Record *> Spellings = Attr->getValueAsListOfDefs("Spellings");
2255 for (const auto &Spelling : Spellings) {
2256 if (Spelling->getValueAsString("Variety") == "CXX11") {
2257 Version = static_cast<int>(Spelling->getValueAsInt("Version"));
2258 if (Scope.empty() && Version == 1)
2259 PrintError(Spelling->getLoc(), "C++ standard attributes must "
2260 "have valid version information.");
2261 break;
2262 }
2263 }
2264 }
2265
Aaron Ballman0fa06d82014-01-09 22:57:44 +00002266 std::string Test;
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002267 if (Attr->isSubClassOf("TargetSpecificAttr")) {
2268 const Record *R = Attr->getValueAsDef("Target");
Aaron Ballman0fa06d82014-01-09 22:57:44 +00002269 std::vector<std::string> Arches = R->getValueAsListOfStrings("Arches");
Hans Wennborgdcfba332015-10-06 23:40:43 +00002270 GenerateTargetSpecificAttrChecks(R, Arches, Test, nullptr);
Bob Wilson7c730832015-07-20 22:57:31 +00002271
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002272 // If this is the C++11 variety, also add in the LangOpts test.
2273 if (Variety == "CXX11")
2274 Test += " && LangOpts.CPlusPlus11";
2275 } else if (Variety == "CXX11")
2276 // C++11 mode should be checked against LangOpts, which is presumed to be
2277 // present in the caller.
2278 Test = "LangOpts.CPlusPlus11";
Aaron Ballman0fa06d82014-01-09 22:57:44 +00002279
Aaron Ballmana0344c52014-11-14 13:44:02 +00002280 std::string TestStr =
Aaron Ballman28afa182014-11-17 18:17:19 +00002281 !Test.empty() ? Test + " ? " + llvm::itostr(Version) + " : 0" : "1";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002282 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Attr);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002283 for (const auto &S : Spellings)
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002284 if (Variety.empty() || (Variety == S.variety() &&
2285 (Scope.empty() || Scope == S.nameSpace())))
Aaron Ballmana0344c52014-11-14 13:44:02 +00002286 OS << " .Case(\"" << S.name() << "\", " << TestStr << ")\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002287 }
Aaron Ballmana0344c52014-11-14 13:44:02 +00002288 OS << " .Default(0);\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002289}
2290
2291// Emits the list of spellings for attributes.
2292void EmitClangAttrHasAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
2293 emitSourceFileHeader("Code to implement the __has_attribute logic", OS);
2294
2295 // Separate all of the attributes out into four group: generic, C++11, GNU,
2296 // and declspecs. Then generate a big switch statement for each of them.
2297 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002298 std::vector<Record *> Declspec, GNU, Pragma;
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002299 std::map<std::string, std::vector<Record *>> CXX;
2300
2301 // Walk over the list of all attributes, and split them out based on the
2302 // spelling variety.
2303 for (auto *R : Attrs) {
2304 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*R);
2305 for (const auto &SI : Spellings) {
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00002306 const std::string &Variety = SI.variety();
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002307 if (Variety == "GNU")
2308 GNU.push_back(R);
2309 else if (Variety == "Declspec")
2310 Declspec.push_back(R);
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002311 else if (Variety == "CXX11")
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002312 CXX[SI.nameSpace()].push_back(R);
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002313 else if (Variety == "Pragma")
2314 Pragma.push_back(R);
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002315 }
2316 }
2317
Bob Wilson7c730832015-07-20 22:57:31 +00002318 OS << "const llvm::Triple &T = Target.getTriple();\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002319 OS << "switch (Syntax) {\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002320 OS << "case AttrSyntax::GNU:\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002321 OS << " return llvm::StringSwitch<int>(Name)\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002322 GenerateHasAttrSpellingStringSwitch(GNU, OS, "GNU");
2323 OS << "case AttrSyntax::Declspec:\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002324 OS << " return llvm::StringSwitch<int>(Name)\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002325 GenerateHasAttrSpellingStringSwitch(Declspec, OS, "Declspec");
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002326 OS << "case AttrSyntax::Pragma:\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002327 OS << " return llvm::StringSwitch<int>(Name)\n";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002328 GenerateHasAttrSpellingStringSwitch(Pragma, OS, "Pragma");
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002329 OS << "case AttrSyntax::CXX: {\n";
2330 // C++11-style attributes are further split out based on the Scope.
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002331 for (auto I = CXX.cbegin(), E = CXX.cend(); I != E; ++I) {
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002332 if (I != CXX.begin())
2333 OS << " else ";
2334 if (I->first.empty())
2335 OS << "if (!Scope || Scope->getName() == \"\") {\n";
2336 else
2337 OS << "if (Scope->getName() == \"" << I->first << "\") {\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002338 OS << " return llvm::StringSwitch<int>(Name)\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002339 GenerateHasAttrSpellingStringSwitch(I->second, OS, "CXX11", I->first);
2340 OS << "}";
2341 }
2342 OS << "\n}\n";
2343 OS << "}\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002344}
2345
Michael Han99315932013-01-24 16:46:58 +00002346void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002347 emitSourceFileHeader("Code to translate different attribute spellings "
2348 "into internal identifiers", OS);
Michael Han99315932013-01-24 16:46:58 +00002349
John McCall2225c8b2016-03-01 00:18:05 +00002350 OS << " switch (AttrKind) {\n";
Michael Han99315932013-01-24 16:46:58 +00002351
Aaron Ballman64e69862013-12-15 13:05:48 +00002352 ParsedAttrMap Attrs = getParsedAttrList(Records);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002353 for (const auto &I : Attrs) {
Aaron Ballman2f22b942014-05-20 19:47:14 +00002354 const Record &R = *I.second;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00002355 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002356 OS << " case AT_" << I.first << ": {\n";
Richard Smith852e9ce2013-11-27 01:46:48 +00002357 for (unsigned I = 0; I < Spellings.size(); ++ I) {
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002358 OS << " if (Name == \"" << Spellings[I].name() << "\" && "
2359 << "SyntaxUsed == "
2360 << StringSwitch<unsigned>(Spellings[I].variety())
2361 .Case("GNU", 0)
2362 .Case("CXX11", 1)
2363 .Case("Declspec", 2)
2364 .Case("Keyword", 3)
2365 .Case("Pragma", 4)
2366 .Default(0)
2367 << " && Scope == \"" << Spellings[I].nameSpace() << "\")\n"
2368 << " return " << I << ";\n";
Michael Han99315932013-01-24 16:46:58 +00002369 }
Richard Smith852e9ce2013-11-27 01:46:48 +00002370
2371 OS << " break;\n";
2372 OS << " }\n";
Michael Han99315932013-01-24 16:46:58 +00002373 }
2374
2375 OS << " }\n";
Aaron Ballman64e69862013-12-15 13:05:48 +00002376 OS << " return 0;\n";
Michael Han99315932013-01-24 16:46:58 +00002377}
2378
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002379// Emits code used by RecursiveASTVisitor to visit attributes
2380void EmitClangAttrASTVisitor(RecordKeeper &Records, raw_ostream &OS) {
2381 emitSourceFileHeader("Used by RecursiveASTVisitor to visit attributes.", OS);
2382
2383 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
2384
2385 // Write method declarations for Traverse* methods.
2386 // We emit this here because we only generate methods for attributes that
2387 // are declared as ASTNodes.
2388 OS << "#ifdef ATTR_VISITOR_DECLS_ONLY\n\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00002389 for (const auto *Attr : Attrs) {
2390 const Record &R = *Attr;
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002391 if (!R.getValueAsBit("ASTNode"))
2392 continue;
2393 OS << " bool Traverse"
2394 << R.getName() << "Attr(" << R.getName() << "Attr *A);\n";
2395 OS << " bool Visit"
2396 << R.getName() << "Attr(" << R.getName() << "Attr *A) {\n"
2397 << " return true; \n"
Hans Wennborg4afe5042015-07-22 20:46:26 +00002398 << " }\n";
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002399 }
2400 OS << "\n#else // ATTR_VISITOR_DECLS_ONLY\n\n";
2401
2402 // Write individual Traverse* methods for each attribute class.
Aaron Ballman2f22b942014-05-20 19:47:14 +00002403 for (const auto *Attr : Attrs) {
2404 const Record &R = *Attr;
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002405 if (!R.getValueAsBit("ASTNode"))
2406 continue;
2407
2408 OS << "template <typename Derived>\n"
DeLesley Hutchinsbb79c332013-12-30 21:03:02 +00002409 << "bool VISITORCLASS<Derived>::Traverse"
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002410 << R.getName() << "Attr(" << R.getName() << "Attr *A) {\n"
2411 << " if (!getDerived().VisitAttr(A))\n"
2412 << " return false;\n"
2413 << " if (!getDerived().Visit" << R.getName() << "Attr(A))\n"
2414 << " return false;\n";
2415
2416 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
Aaron Ballman2f22b942014-05-20 19:47:14 +00002417 for (const auto *Arg : ArgRecords)
2418 createArgument(*Arg, R.getName())->writeASTVisitorTraversal(OS);
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002419
2420 OS << " return true;\n";
2421 OS << "}\n\n";
2422 }
2423
2424 // Write generic Traverse routine
2425 OS << "template <typename Derived>\n"
DeLesley Hutchinsbb79c332013-12-30 21:03:02 +00002426 << "bool VISITORCLASS<Derived>::TraverseAttr(Attr *A) {\n"
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002427 << " if (!A)\n"
2428 << " return true;\n"
2429 << "\n"
John McCall2225c8b2016-03-01 00:18:05 +00002430 << " switch (A->getKind()) {\n";
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002431
Aaron Ballman2f22b942014-05-20 19:47:14 +00002432 for (const auto *Attr : Attrs) {
2433 const Record &R = *Attr;
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002434 if (!R.getValueAsBit("ASTNode"))
2435 continue;
2436
2437 OS << " case attr::" << R.getName() << ":\n"
2438 << " return getDerived().Traverse" << R.getName() << "Attr("
2439 << "cast<" << R.getName() << "Attr>(A));\n";
2440 }
John McCall5d7cf772016-03-01 02:09:20 +00002441 OS << " }\n"; // end switch
2442 OS << " llvm_unreachable(\"bad attribute kind\");\n";
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002443 OS << "}\n"; // end function
2444 OS << "#endif // ATTR_VISITOR_DECLS_ONLY\n";
2445}
2446
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002447// Emits code to instantiate dependent attributes on templates.
2448void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002449 emitSourceFileHeader("Template instantiation code for attributes", OS);
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002450
2451 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
2452
Benjamin Kramerbf8da9d2012-02-06 11:13:08 +00002453 OS << "namespace clang {\n"
2454 << "namespace sema {\n\n"
2455 << "Attr *instantiateTemplateAttribute(const Attr *At, ASTContext &C, "
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002456 << "Sema &S,\n"
2457 << " const MultiLevelTemplateArgumentList &TemplateArgs) {\n"
John McCall2225c8b2016-03-01 00:18:05 +00002458 << " switch (At->getKind()) {\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002459
Aaron Ballman2f22b942014-05-20 19:47:14 +00002460 for (const auto *Attr : Attrs) {
2461 const Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00002462 if (!R.getValueAsBit("ASTNode"))
2463 continue;
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002464
2465 OS << " case attr::" << R.getName() << ": {\n";
Rafael Espindola7f90b7d2012-05-15 14:09:55 +00002466 bool ShouldClone = R.getValueAsBit("Clone");
2467
2468 if (!ShouldClone) {
Hans Wennborg59dbe862015-09-29 20:56:43 +00002469 OS << " return nullptr;\n";
Rafael Espindola7f90b7d2012-05-15 14:09:55 +00002470 OS << " }\n";
2471 continue;
2472 }
2473
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002474 OS << " const auto *A = cast<"
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002475 << R.getName() << "Attr>(At);\n";
2476 bool TDependent = R.getValueAsBit("TemplateDependent");
2477
2478 if (!TDependent) {
2479 OS << " return A->clone(C);\n";
2480 OS << " }\n";
2481 continue;
2482 }
2483
2484 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002485 std::vector<std::unique_ptr<Argument>> Args;
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002486 Args.reserve(ArgRecords.size());
2487
Aaron Ballman2f22b942014-05-20 19:47:14 +00002488 for (const auto *ArgRecord : ArgRecords)
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002489 Args.emplace_back(createArgument(*ArgRecord, R.getName()));
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002490
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002491 for (auto const &ai : Args)
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002492 ai->writeTemplateInstantiation(OS);
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002493
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002494 OS << " return new (C) " << R.getName() << "Attr(A->getLocation(), C";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002495 for (auto const &ai : Args) {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002496 OS << ", ";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002497 ai->writeTemplateInstantiationArgs(OS);
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002498 }
Aaron Ballman36a53502014-01-16 13:03:14 +00002499 OS << ", A->getSpellingListIndex());\n }\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002500 }
2501 OS << " } // end switch\n"
2502 << " llvm_unreachable(\"Unknown attribute!\");\n"
Hans Wennborg59dbe862015-09-29 20:56:43 +00002503 << " return nullptr;\n"
Benjamin Kramerbf8da9d2012-02-06 11:13:08 +00002504 << "}\n\n"
2505 << "} // end namespace sema\n"
2506 << "} // end namespace clang\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002507}
2508
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002509// Emits the list of parsed attributes.
2510void EmitClangAttrParsedAttrList(RecordKeeper &Records, raw_ostream &OS) {
2511 emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
2512
2513 OS << "#ifndef PARSED_ATTR\n";
2514 OS << "#define PARSED_ATTR(NAME) NAME\n";
2515 OS << "#endif\n\n";
2516
2517 ParsedAttrMap Names = getParsedAttrList(Records);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002518 for (const auto &I : Names) {
2519 OS << "PARSED_ATTR(" << I.first << ")\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002520 }
2521}
2522
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002523static bool isArgVariadic(const Record &R, StringRef AttrName) {
2524 return createArgument(R, AttrName)->isVariadic();
2525}
2526
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002527static void emitArgInfo(const Record &R, std::stringstream &OS) {
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002528 // This function will count the number of arguments specified for the
2529 // attribute and emit the number of required arguments followed by the
2530 // number of optional arguments.
2531 std::vector<Record *> Args = R.getValueAsListOfDefs("Args");
2532 unsigned ArgCount = 0, OptCount = 0;
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002533 bool HasVariadic = false;
Aaron Ballman2f22b942014-05-20 19:47:14 +00002534 for (const auto *Arg : Args) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002535 Arg->getValueAsBit("Optional") ? ++OptCount : ++ArgCount;
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002536 if (!HasVariadic && isArgVariadic(*Arg, R.getName()))
2537 HasVariadic = true;
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002538 }
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002539
2540 // If there is a variadic argument, we will set the optional argument count
2541 // to its largest value. Since it's currently a 4-bit number, we set it to 15.
2542 OS << ArgCount << ", " << (HasVariadic ? 15 : OptCount);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002543}
2544
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002545static void GenerateDefaultAppertainsTo(raw_ostream &OS) {
Aaron Ballman93b5cc62013-12-02 19:36:42 +00002546 OS << "static bool defaultAppertainsTo(Sema &, const AttributeList &,";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002547 OS << "const Decl *) {\n";
2548 OS << " return true;\n";
2549 OS << "}\n\n";
2550}
2551
2552static std::string CalculateDiagnostic(const Record &S) {
2553 // If the SubjectList object has a custom diagnostic associated with it,
2554 // return that directly.
2555 std::string CustomDiag = S.getValueAsString("CustomDiag");
2556 if (!CustomDiag.empty())
2557 return CustomDiag;
2558
2559 // Given the list of subjects, determine what diagnostic best fits.
2560 enum {
2561 Func = 1U << 0,
2562 Var = 1U << 1,
2563 ObjCMethod = 1U << 2,
2564 Param = 1U << 3,
2565 Class = 1U << 4,
Aaron Ballmanc1494bd2013-11-27 20:14:30 +00002566 GenericRecord = 1U << 5,
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002567 Type = 1U << 6,
2568 ObjCIVar = 1U << 7,
2569 ObjCProp = 1U << 8,
2570 ObjCInterface = 1U << 9,
2571 Block = 1U << 10,
2572 Namespace = 1U << 11,
Aaron Ballman981ba242014-05-20 14:10:53 +00002573 Field = 1U << 12,
2574 CXXMethod = 1U << 13,
Alexis Hunt724f14e2014-11-28 00:53:20 +00002575 ObjCProtocol = 1U << 14,
2576 Enum = 1U << 15
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002577 };
2578 uint32_t SubMask = 0;
2579
2580 std::vector<Record *> Subjects = S.getValueAsListOfDefs("Subjects");
Aaron Ballman2f22b942014-05-20 19:47:14 +00002581 for (const auto *Subject : Subjects) {
2582 const Record &R = *Subject;
Aaron Ballman80469032013-11-29 14:57:58 +00002583 std::string Name;
2584
2585 if (R.isSubClassOf("SubsetSubject")) {
2586 PrintError(R.getLoc(), "SubsetSubjects should use a custom diagnostic");
2587 // As a fallback, look through the SubsetSubject to see what its base
2588 // type is, and use that. This needs to be updated if SubsetSubjects
2589 // are allowed within other SubsetSubjects.
2590 Name = R.getValueAsDef("Base")->getName();
2591 } else
2592 Name = R.getName();
2593
2594 uint32_t V = StringSwitch<uint32_t>(Name)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002595 .Case("Function", Func)
2596 .Case("Var", Var)
2597 .Case("ObjCMethod", ObjCMethod)
2598 .Case("ParmVar", Param)
2599 .Case("TypedefName", Type)
2600 .Case("ObjCIvar", ObjCIVar)
2601 .Case("ObjCProperty", ObjCProp)
Aaron Ballmanc1494bd2013-11-27 20:14:30 +00002602 .Case("Record", GenericRecord)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002603 .Case("ObjCInterface", ObjCInterface)
Ted Kremenekd980da22013-12-10 19:43:42 +00002604 .Case("ObjCProtocol", ObjCProtocol)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002605 .Case("Block", Block)
2606 .Case("CXXRecord", Class)
2607 .Case("Namespace", Namespace)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002608 .Case("Field", Field)
2609 .Case("CXXMethod", CXXMethod)
Alexis Hunt724f14e2014-11-28 00:53:20 +00002610 .Case("Enum", Enum)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002611 .Default(0);
2612 if (!V) {
2613 // Something wasn't in our mapping, so be helpful and let the developer
2614 // know about it.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002615 PrintFatalError(R.getLoc(), "Unknown subject type: " + R.getName());
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002616 return "";
2617 }
2618
2619 SubMask |= V;
2620 }
2621
2622 switch (SubMask) {
2623 // For the simple cases where there's only a single entry in the mask, we
2624 // don't have to resort to bit fiddling.
2625 case Func: return "ExpectedFunction";
2626 case Var: return "ExpectedVariable";
2627 case Param: return "ExpectedParameter";
2628 case Class: return "ExpectedClass";
Alexis Hunt724f14e2014-11-28 00:53:20 +00002629 case Enum: return "ExpectedEnum";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002630 case CXXMethod:
2631 // FIXME: Currently, this maps to ExpectedMethod based on existing code,
2632 // but should map to something a bit more accurate at some point.
2633 case ObjCMethod: return "ExpectedMethod";
2634 case Type: return "ExpectedType";
2635 case ObjCInterface: return "ExpectedObjectiveCInterface";
Ted Kremenekd980da22013-12-10 19:43:42 +00002636 case ObjCProtocol: return "ExpectedObjectiveCProtocol";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002637
Aaron Ballmanc1494bd2013-11-27 20:14:30 +00002638 // "GenericRecord" means struct, union or class; check the language options
2639 // and if not compiling for C++, strip off the class part. Note that this
2640 // relies on the fact that the context for this declares "Sema &S".
2641 case GenericRecord:
Aaron Ballman17046b82013-11-27 19:16:55 +00002642 return "(S.getLangOpts().CPlusPlus ? ExpectedStructOrUnionOrClass : "
2643 "ExpectedStructOrUnion)";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002644 case Func | ObjCMethod | Block: return "ExpectedFunctionMethodOrBlock";
2645 case Func | ObjCMethod | Class: return "ExpectedFunctionMethodOrClass";
2646 case Func | Param:
2647 case Func | ObjCMethod | Param: return "ExpectedFunctionMethodOrParameter";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002648 case Func | ObjCMethod: return "ExpectedFunctionOrMethod";
2649 case Func | Var: return "ExpectedVariableOrFunction";
Aaron Ballman604dfec2013-12-02 17:07:07 +00002650
2651 // If not compiling for C++, the class portion does not apply.
2652 case Func | Var | Class:
2653 return "(S.getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass : "
2654 "ExpectedVariableOrFunction)";
2655
Saleem Abdulrasool511f2e52016-07-15 20:41:10 +00002656 case Func | Var | Class | ObjCInterface:
2657 return "(S.getLangOpts().CPlusPlus"
2658 " ? ((S.getLangOpts().ObjC1 || S.getLangOpts().ObjC2)"
2659 " ? ExpectedFunctionVariableClassOrObjCInterface"
2660 " : ExpectedFunctionVariableOrClass)"
2661 " : ((S.getLangOpts().ObjC1 || S.getLangOpts().ObjC2)"
2662 " ? ExpectedFunctionVariableOrObjCInterface"
2663 " : ExpectedVariableOrFunction))";
2664
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002665 case ObjCMethod | ObjCProp: return "ExpectedMethodOrProperty";
Aaron Ballman173361e2014-07-16 20:28:10 +00002666 case ObjCProtocol | ObjCInterface:
2667 return "ExpectedObjectiveCInterfaceOrProtocol";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002668 case Field | Var: return "ExpectedFieldOrGlobalVar";
2669 }
2670
2671 PrintFatalError(S.getLoc(),
2672 "Could not deduce diagnostic argument for Attr subjects");
2673
2674 return "";
2675}
2676
Aaron Ballman12b9f652014-01-16 13:55:42 +00002677static std::string GetSubjectWithSuffix(const Record *R) {
2678 std::string B = R->getName();
2679 if (B == "DeclBase")
2680 return "Decl";
2681 return B + "Decl";
2682}
Hans Wennborgdcfba332015-10-06 23:40:43 +00002683
Aaron Ballman80469032013-11-29 14:57:58 +00002684static std::string GenerateCustomAppertainsTo(const Record &Subject,
2685 raw_ostream &OS) {
Aaron Ballmana358c902013-12-02 14:58:17 +00002686 std::string FnName = "is" + Subject.getName();
2687
Aaron Ballman80469032013-11-29 14:57:58 +00002688 // If this code has already been generated, simply return the previous
2689 // instance of it.
2690 static std::set<std::string> CustomSubjectSet;
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002691 auto I = CustomSubjectSet.find(FnName);
Aaron Ballman80469032013-11-29 14:57:58 +00002692 if (I != CustomSubjectSet.end())
2693 return *I;
2694
2695 Record *Base = Subject.getValueAsDef("Base");
2696
2697 // Not currently support custom subjects within custom subjects.
2698 if (Base->isSubClassOf("SubsetSubject")) {
2699 PrintFatalError(Subject.getLoc(),
2700 "SubsetSubjects within SubsetSubjects is not supported");
2701 return "";
2702 }
2703
Aaron Ballman80469032013-11-29 14:57:58 +00002704 OS << "static bool " << FnName << "(const Decl *D) {\n";
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002705 OS << " if (const auto *S = dyn_cast<";
Aaron Ballman12b9f652014-01-16 13:55:42 +00002706 OS << GetSubjectWithSuffix(Base);
Aaron Ballman47553042014-01-16 14:32:03 +00002707 OS << ">(D))\n";
2708 OS << " return " << Subject.getValueAsString("CheckCode") << ";\n";
2709 OS << " return false;\n";
Aaron Ballman80469032013-11-29 14:57:58 +00002710 OS << "}\n\n";
2711
2712 CustomSubjectSet.insert(FnName);
2713 return FnName;
2714}
2715
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002716static std::string GenerateAppertainsTo(const Record &Attr, raw_ostream &OS) {
2717 // If the attribute does not contain a Subjects definition, then use the
2718 // default appertainsTo logic.
2719 if (Attr.isValueUnset("Subjects"))
Aaron Ballman93b5cc62013-12-02 19:36:42 +00002720 return "defaultAppertainsTo";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002721
2722 const Record *SubjectObj = Attr.getValueAsDef("Subjects");
2723 std::vector<Record*> Subjects = SubjectObj->getValueAsListOfDefs("Subjects");
2724
2725 // If the list of subjects is empty, it is assumed that the attribute
2726 // appertains to everything.
2727 if (Subjects.empty())
Aaron Ballman93b5cc62013-12-02 19:36:42 +00002728 return "defaultAppertainsTo";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002729
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002730 bool Warn = SubjectObj->getValueAsDef("Diag")->getValueAsBit("Warn");
2731
2732 // Otherwise, generate an appertainsTo check specific to this attribute which
2733 // checks all of the given subjects against the Decl passed in. Return the
2734 // name of that check to the caller.
Aaron Ballman00dcc432013-12-03 13:45:50 +00002735 std::string FnName = "check" + Attr.getName() + "AppertainsTo";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002736 std::stringstream SS;
2737 SS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr, ";
2738 SS << "const Decl *D) {\n";
2739 SS << " if (";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002740 for (auto I = Subjects.begin(), E = Subjects.end(); I != E; ++I) {
Aaron Ballman80469032013-11-29 14:57:58 +00002741 // If the subject has custom code associated with it, generate a function
2742 // for it. The function cannot be inlined into this check (yet) because it
2743 // requires the subject to be of a specific type, and were that information
2744 // inlined here, it would not support an attribute with multiple custom
2745 // subjects.
2746 if ((*I)->isSubClassOf("SubsetSubject")) {
2747 SS << "!" << GenerateCustomAppertainsTo(**I, OS) << "(D)";
2748 } else {
Aaron Ballman12b9f652014-01-16 13:55:42 +00002749 SS << "!isa<" << GetSubjectWithSuffix(*I) << ">(D)";
Aaron Ballman80469032013-11-29 14:57:58 +00002750 }
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002751
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002752 if (I + 1 != E)
2753 SS << " && ";
2754 }
2755 SS << ") {\n";
2756 SS << " S.Diag(Attr.getLoc(), diag::";
2757 SS << (Warn ? "warn_attribute_wrong_decl_type" :
2758 "err_attribute_wrong_decl_type");
2759 SS << ")\n";
2760 SS << " << Attr.getName() << ";
2761 SS << CalculateDiagnostic(*SubjectObj) << ";\n";
2762 SS << " return false;\n";
2763 SS << " }\n";
2764 SS << " return true;\n";
2765 SS << "}\n\n";
2766
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002767 OS << SS.str();
2768 return FnName;
2769}
2770
Aaron Ballman3aff6332013-12-02 19:30:36 +00002771static void GenerateDefaultLangOptRequirements(raw_ostream &OS) {
2772 OS << "static bool defaultDiagnoseLangOpts(Sema &, ";
2773 OS << "const AttributeList &) {\n";
2774 OS << " return true;\n";
2775 OS << "}\n\n";
2776}
2777
2778static std::string GenerateLangOptRequirements(const Record &R,
2779 raw_ostream &OS) {
2780 // If the attribute has an empty or unset list of language requirements,
2781 // return the default handler.
2782 std::vector<Record *> LangOpts = R.getValueAsListOfDefs("LangOpts");
2783 if (LangOpts.empty())
2784 return "defaultDiagnoseLangOpts";
2785
2786 // Generate the test condition, as well as a unique function name for the
2787 // diagnostic test. The list of options should usually be short (one or two
2788 // options), and the uniqueness isn't strictly necessary (it is just for
2789 // codegen efficiency).
2790 std::string FnName = "check", Test;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002791 for (auto I = LangOpts.begin(), E = LangOpts.end(); I != E; ++I) {
Aaron Ballman3aff6332013-12-02 19:30:36 +00002792 std::string Part = (*I)->getValueAsString("Name");
Alexis Hunt724f14e2014-11-28 00:53:20 +00002793 if ((*I)->getValueAsBit("Negated"))
2794 Test += "!";
Aaron Ballman3aff6332013-12-02 19:30:36 +00002795 Test += "S.LangOpts." + Part;
2796 if (I + 1 != E)
2797 Test += " || ";
2798 FnName += Part;
2799 }
2800 FnName += "LangOpts";
2801
2802 // If this code has already been generated, simply return the previous
2803 // instance of it.
2804 static std::set<std::string> CustomLangOptsSet;
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002805 auto I = CustomLangOptsSet.find(FnName);
Aaron Ballman3aff6332013-12-02 19:30:36 +00002806 if (I != CustomLangOptsSet.end())
2807 return *I;
2808
2809 OS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr) {\n";
2810 OS << " if (" << Test << ")\n";
2811 OS << " return true;\n\n";
2812 OS << " S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) ";
2813 OS << "<< Attr.getName();\n";
2814 OS << " return false;\n";
2815 OS << "}\n\n";
2816
2817 CustomLangOptsSet.insert(FnName);
2818 return FnName;
2819}
2820
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002821static void GenerateDefaultTargetRequirements(raw_ostream &OS) {
Bob Wilson7c730832015-07-20 22:57:31 +00002822 OS << "static bool defaultTargetRequirements(const TargetInfo &) {\n";
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002823 OS << " return true;\n";
2824 OS << "}\n\n";
2825}
2826
2827static std::string GenerateTargetRequirements(const Record &Attr,
2828 const ParsedAttrMap &Dupes,
2829 raw_ostream &OS) {
2830 // If the attribute is not a target specific attribute, return the default
2831 // target handler.
2832 if (!Attr.isSubClassOf("TargetSpecificAttr"))
2833 return "defaultTargetRequirements";
2834
2835 // Get the list of architectures to be tested for.
2836 const Record *R = Attr.getValueAsDef("Target");
2837 std::vector<std::string> Arches = R->getValueAsListOfStrings("Arches");
2838 if (Arches.empty()) {
2839 PrintError(Attr.getLoc(), "Empty list of target architectures for a "
2840 "target-specific attr");
2841 return "defaultTargetRequirements";
2842 }
2843
2844 // If there are other attributes which share the same parsed attribute kind,
2845 // such as target-specific attributes with a shared spelling, collapse the
2846 // duplicate architectures. This is required because a shared target-specific
2847 // attribute has only one AttributeList::Kind enumeration value, but it
2848 // applies to multiple target architectures. In order for the attribute to be
2849 // considered valid, all of its architectures need to be included.
2850 if (!Attr.isValueUnset("ParseKind")) {
2851 std::string APK = Attr.getValueAsString("ParseKind");
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002852 for (const auto &I : Dupes) {
2853 if (I.first == APK) {
2854 std::vector<std::string> DA = I.second->getValueAsDef("Target")
2855 ->getValueAsListOfStrings("Arches");
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002856 std::copy(DA.begin(), DA.end(), std::back_inserter(Arches));
2857 }
2858 }
2859 }
2860
Bob Wilson0058b822015-07-20 22:57:36 +00002861 std::string FnName = "isTarget";
2862 std::string Test;
2863 GenerateTargetSpecificAttrChecks(R, Arches, Test, &FnName);
Bob Wilson7c730832015-07-20 22:57:31 +00002864
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002865 // If this code has already been generated, simply return the previous
2866 // instance of it.
2867 static std::set<std::string> CustomTargetSet;
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002868 auto I = CustomTargetSet.find(FnName);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002869 if (I != CustomTargetSet.end())
2870 return *I;
2871
Bob Wilson7c730832015-07-20 22:57:31 +00002872 OS << "static bool " << FnName << "(const TargetInfo &Target) {\n";
2873 OS << " const llvm::Triple &T = Target.getTriple();\n";
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002874 OS << " return " << Test << ";\n";
2875 OS << "}\n\n";
2876
2877 CustomTargetSet.insert(FnName);
2878 return FnName;
2879}
2880
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002881static void GenerateDefaultSpellingIndexToSemanticSpelling(raw_ostream &OS) {
2882 OS << "static unsigned defaultSpellingIndexToSemanticSpelling("
2883 << "const AttributeList &Attr) {\n";
2884 OS << " return UINT_MAX;\n";
2885 OS << "}\n\n";
2886}
2887
2888static std::string GenerateSpellingIndexToSemanticSpelling(const Record &Attr,
2889 raw_ostream &OS) {
2890 // If the attribute does not have a semantic form, we can bail out early.
2891 if (!Attr.getValueAsBit("ASTNode"))
2892 return "defaultSpellingIndexToSemanticSpelling";
2893
Aaron Ballmanc669cc02014-01-27 22:10:04 +00002894 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attr);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002895
2896 // If there are zero or one spellings, or all of the spellings share the same
2897 // name, we can also bail out early.
2898 if (Spellings.size() <= 1 || SpellingNamesAreCommon(Spellings))
2899 return "defaultSpellingIndexToSemanticSpelling";
2900
2901 // Generate the enumeration we will use for the mapping.
2902 SemanticSpellingMap SemanticToSyntacticMap;
2903 std::string Enum = CreateSemanticSpellings(Spellings, SemanticToSyntacticMap);
2904 std::string Name = Attr.getName() + "AttrSpellingMap";
2905
2906 OS << "static unsigned " << Name << "(const AttributeList &Attr) {\n";
2907 OS << Enum;
2908 OS << " unsigned Idx = Attr.getAttributeSpellingListIndex();\n";
2909 WriteSemanticSpellingSwitch("Idx", SemanticToSyntacticMap, OS);
2910 OS << "}\n\n";
2911
2912 return Name;
2913}
2914
Aaron Ballmanc669cc02014-01-27 22:10:04 +00002915static bool IsKnownToGCC(const Record &Attr) {
2916 // Look at the spellings for this subject; if there are any spellings which
2917 // claim to be known to GCC, the attribute is known to GCC.
2918 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attr);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002919 for (const auto &I : Spellings) {
2920 if (I.knownToGCC())
Aaron Ballman9a99e0d2014-01-20 17:18:35 +00002921 return true;
2922 }
2923 return false;
2924}
2925
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002926/// Emits the parsed attribute helpers
2927void EmitClangAttrParsedAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
2928 emitSourceFileHeader("Parsed attribute helpers", OS);
2929
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002930 // Get the list of parsed attributes, and accept the optional list of
2931 // duplicates due to the ParseKind.
2932 ParsedAttrMap Dupes;
2933 ParsedAttrMap Attrs = getParsedAttrList(Records, &Dupes);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002934
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002935 // Generate the default appertainsTo, target and language option diagnostic,
2936 // and spelling list index mapping methods.
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002937 GenerateDefaultAppertainsTo(OS);
Aaron Ballman3aff6332013-12-02 19:30:36 +00002938 GenerateDefaultLangOptRequirements(OS);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002939 GenerateDefaultTargetRequirements(OS);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002940 GenerateDefaultSpellingIndexToSemanticSpelling(OS);
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002941
2942 // Generate the appertainsTo diagnostic methods and write their names into
2943 // another mapping. At the same time, generate the AttrInfoMap object
2944 // contents. Due to the reliance on generated code, use separate streams so
2945 // that code will not be interleaved.
2946 std::stringstream SS;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002947 for (auto I = Attrs.begin(), E = Attrs.end(); I != E; ++I) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002948 // TODO: If the attribute's kind appears in the list of duplicates, that is
2949 // because it is a target-specific attribute that appears multiple times.
2950 // It would be beneficial to test whether the duplicates are "similar
2951 // enough" to each other to not cause problems. For instance, check that
Alp Toker96cf7582014-01-18 21:49:37 +00002952 // the spellings are identical, and custom parsing rules match, etc.
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002953
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002954 // We need to generate struct instances based off ParsedAttrInfo from
2955 // AttributeList.cpp.
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002956 SS << " { ";
2957 emitArgInfo(*I->second, SS);
2958 SS << ", " << I->second->getValueAsBit("HasCustomParsing");
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002959 SS << ", " << I->second->isSubClassOf("TargetSpecificAttr");
2960 SS << ", " << I->second->isSubClassOf("TypeAttr");
Richard Smith4f902c72016-03-08 00:32:55 +00002961 SS << ", " << I->second->isSubClassOf("StmtAttr");
Aaron Ballmanc669cc02014-01-27 22:10:04 +00002962 SS << ", " << IsKnownToGCC(*I->second);
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002963 SS << ", " << GenerateAppertainsTo(*I->second, OS);
Aaron Ballman3aff6332013-12-02 19:30:36 +00002964 SS << ", " << GenerateLangOptRequirements(*I->second, OS);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00002965 SS << ", " << GenerateTargetRequirements(*I->second, Dupes, OS);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002966 SS << ", " << GenerateSpellingIndexToSemanticSpelling(*I->second, OS);
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002967 SS << " }";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002968
2969 if (I + 1 != E)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002970 SS << ",";
2971
2972 SS << " // AT_" << I->first << "\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002973 }
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002974
2975 OS << "static const ParsedAttrInfo AttrInfoMap[AttributeList::UnknownAttribute + 1] = {\n";
2976 OS << SS.str();
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002977 OS << "};\n\n";
Michael Han4a045172012-03-07 00:12:16 +00002978}
2979
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002980// Emits the kind list of parsed attributes
2981void EmitClangAttrParsedAttrKinds(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002982 emitSourceFileHeader("Attribute name matcher", OS);
2983
Aaron Ballman09e98ff2014-01-13 21:42:39 +00002984 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002985 std::vector<StringMatcher::StringPair> GNU, Declspec, CXX11, Keywords, Pragma;
Aaron Ballman64e69862013-12-15 13:05:48 +00002986 std::set<std::string> Seen;
Aaron Ballman2f22b942014-05-20 19:47:14 +00002987 for (const auto *A : Attrs) {
2988 const Record &Attr = *A;
Richard Smith852e9ce2013-11-27 01:46:48 +00002989
Michael Han4a045172012-03-07 00:12:16 +00002990 bool SemaHandler = Attr.getValueAsBit("SemaHandler");
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00002991 bool Ignored = Attr.getValueAsBit("Ignored");
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00002992 if (SemaHandler || Ignored) {
Aaron Ballman09e98ff2014-01-13 21:42:39 +00002993 // Attribute spellings can be shared between target-specific attributes,
2994 // and can be shared between syntaxes for the same attribute. For
2995 // instance, an attribute can be spelled GNU<"interrupt"> for an ARM-
2996 // specific attribute, or MSP430-specific attribute. Additionally, an
2997 // attribute can be spelled GNU<"dllexport"> and Declspec<"dllexport">
2998 // for the same semantic attribute. Ultimately, we need to map each of
2999 // these to a single AttributeList::Kind value, but the StringMatcher
3000 // class cannot handle duplicate match strings. So we generate a list of
3001 // string to match based on the syntax, and emit multiple string matchers
3002 // depending on the syntax used.
Aaron Ballman64e69862013-12-15 13:05:48 +00003003 std::string AttrName;
3004 if (Attr.isSubClassOf("TargetSpecificAttr") &&
3005 !Attr.isValueUnset("ParseKind")) {
3006 AttrName = Attr.getValueAsString("ParseKind");
3007 if (Seen.find(AttrName) != Seen.end())
3008 continue;
3009 Seen.insert(AttrName);
3010 } else
3011 AttrName = NormalizeAttrName(StringRef(Attr.getName())).str();
3012
Aaron Ballmanc669cc02014-01-27 22:10:04 +00003013 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attr);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003014 for (const auto &S : Spellings) {
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00003015 const std::string &RawSpelling = S.name();
Craig Topper8ae12032014-05-07 06:21:57 +00003016 std::vector<StringMatcher::StringPair> *Matches = nullptr;
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00003017 std::string Spelling;
3018 const std::string &Variety = S.variety();
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003019 if (Variety == "CXX11") {
3020 Matches = &CXX11;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003021 Spelling += S.nameSpace();
Alexis Hunt3bc72c12012-06-19 23:57:03 +00003022 Spelling += "::";
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003023 } else if (Variety == "GNU")
3024 Matches = &GNU;
3025 else if (Variety == "Declspec")
3026 Matches = &Declspec;
3027 else if (Variety == "Keyword")
3028 Matches = &Keywords;
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003029 else if (Variety == "Pragma")
3030 Matches = &Pragma;
Alexis Hunta0e54d42012-06-18 16:13:52 +00003031
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003032 assert(Matches && "Unsupported spelling variety found");
3033
3034 Spelling += NormalizeAttrSpelling(RawSpelling);
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00003035 if (SemaHandler)
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003036 Matches->push_back(StringMatcher::StringPair(Spelling,
3037 "return AttributeList::AT_" + AttrName + ";"));
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00003038 else
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003039 Matches->push_back(StringMatcher::StringPair(Spelling,
3040 "return AttributeList::IgnoredAttribute;"));
Michael Han4a045172012-03-07 00:12:16 +00003041 }
3042 }
3043 }
Douglas Gregor377f99b2012-05-02 17:33:51 +00003044
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003045 OS << "static AttributeList::Kind getAttrKind(StringRef Name, ";
3046 OS << "AttributeList::Syntax Syntax) {\n";
3047 OS << " if (AttributeList::AS_GNU == Syntax) {\n";
3048 StringMatcher("Name", GNU, OS).Emit();
3049 OS << " } else if (AttributeList::AS_Declspec == Syntax) {\n";
3050 StringMatcher("Name", Declspec, OS).Emit();
3051 OS << " } else if (AttributeList::AS_CXX11 == Syntax) {\n";
3052 StringMatcher("Name", CXX11, OS).Emit();
Douglas Gregorbec595a2015-06-19 18:27:45 +00003053 OS << " } else if (AttributeList::AS_Keyword == Syntax || ";
3054 OS << "AttributeList::AS_ContextSensitiveKeyword == Syntax) {\n";
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003055 StringMatcher("Name", Keywords, OS).Emit();
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003056 OS << " } else if (AttributeList::AS_Pragma == Syntax) {\n";
3057 StringMatcher("Name", Pragma, OS).Emit();
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003058 OS << " }\n";
3059 OS << " return AttributeList::UnknownAttribute;\n"
Douglas Gregor377f99b2012-05-02 17:33:51 +00003060 << "}\n";
Michael Han4a045172012-03-07 00:12:16 +00003061}
3062
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003063// Emits the code to dump an attribute.
3064void EmitClangAttrDump(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00003065 emitSourceFileHeader("Attribute dumper", OS);
3066
John McCall2225c8b2016-03-01 00:18:05 +00003067 OS << " switch (A->getKind()) {\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003068 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), Args;
Aaron Ballman2f22b942014-05-20 19:47:14 +00003069 for (const auto *Attr : Attrs) {
3070 const Record &R = *Attr;
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003071 if (!R.getValueAsBit("ASTNode"))
3072 continue;
3073 OS << " case attr::" << R.getName() << ": {\n";
Aaron Ballmanbc909612014-01-22 21:51:20 +00003074
3075 // If the attribute has a semantically-meaningful name (which is determined
3076 // by whether there is a Spelling enumeration for it), then write out the
3077 // spelling used for the attribute.
Aaron Ballmanc669cc02014-01-27 22:10:04 +00003078 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballmanbc909612014-01-22 21:51:20 +00003079 if (Spellings.size() > 1 && !SpellingNamesAreCommon(Spellings))
3080 OS << " OS << \" \" << A->getSpelling();\n";
3081
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003082 Args = R.getValueAsListOfDefs("Args");
3083 if (!Args.empty()) {
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003084 OS << " const auto *SA = cast<" << R.getName()
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003085 << "Attr>(A);\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00003086 for (const auto *Arg : Args)
3087 createArgument(*Arg, R.getName())->writeDump(OS);
Richard Trieude5cc7d2013-01-31 01:44:26 +00003088
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003089 for (const auto *AI : Args)
3090 createArgument(*AI, R.getName())->writeDumpChildren(OS);
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003091 }
3092 OS <<
3093 " break;\n"
3094 " }\n";
3095 }
3096 OS << " }\n";
3097}
3098
Aaron Ballman35db2b32014-01-29 22:13:45 +00003099void EmitClangAttrParserStringSwitches(RecordKeeper &Records,
3100 raw_ostream &OS) {
3101 emitSourceFileHeader("Parser-related llvm::StringSwitch cases", OS);
3102 emitClangAttrArgContextList(Records, OS);
3103 emitClangAttrIdentifierArgList(Records, OS);
3104 emitClangAttrTypeArgList(Records, OS);
3105 emitClangAttrLateParsedList(Records, OS);
3106}
3107
Aaron Ballman97dba042014-02-17 15:27:10 +00003108class DocumentationData {
3109public:
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003110 const Record *Documentation;
3111 const Record *Attribute;
Aaron Ballman97dba042014-02-17 15:27:10 +00003112
Aaron Ballman4de1b582014-02-19 22:59:32 +00003113 DocumentationData(const Record &Documentation, const Record &Attribute)
3114 : Documentation(&Documentation), Attribute(&Attribute) {}
Aaron Ballman97dba042014-02-17 15:27:10 +00003115};
3116
Aaron Ballman4de1b582014-02-19 22:59:32 +00003117static void WriteCategoryHeader(const Record *DocCategory,
Aaron Ballman97dba042014-02-17 15:27:10 +00003118 raw_ostream &OS) {
Aaron Ballman4de1b582014-02-19 22:59:32 +00003119 const std::string &Name = DocCategory->getValueAsString("Name");
3120 OS << Name << "\n" << std::string(Name.length(), '=') << "\n";
3121
3122 // If there is content, print that as well.
3123 std::string ContentStr = DocCategory->getValueAsString("Content");
Benjamin Kramer5c404072015-04-10 21:37:21 +00003124 // Trim leading and trailing newlines and spaces.
3125 OS << StringRef(ContentStr).trim();
3126
Aaron Ballman4de1b582014-02-19 22:59:32 +00003127 OS << "\n\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003128}
3129
Aaron Ballmana66b5742014-02-17 15:36:08 +00003130enum SpellingKind {
3131 GNU = 1 << 0,
3132 CXX11 = 1 << 1,
3133 Declspec = 1 << 2,
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003134 Keyword = 1 << 3,
3135 Pragma = 1 << 4
Aaron Ballmana66b5742014-02-17 15:36:08 +00003136};
3137
Aaron Ballman97dba042014-02-17 15:27:10 +00003138static void WriteDocumentation(const DocumentationData &Doc,
3139 raw_ostream &OS) {
3140 // FIXME: there is no way to have a per-spelling category for the attribute
3141 // documentation. This may not be a limiting factor since the spellings
3142 // should generally be consistently applied across the category.
3143
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003144 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Doc.Attribute);
Aaron Ballman97dba042014-02-17 15:27:10 +00003145
3146 // Determine the heading to be used for this attribute.
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003147 std::string Heading = Doc.Documentation->getValueAsString("Heading");
Aaron Ballmanea6668c2014-02-21 14:14:04 +00003148 bool CustomHeading = !Heading.empty();
Aaron Ballman97dba042014-02-17 15:27:10 +00003149 if (Heading.empty()) {
3150 // If there's only one spelling, we can simply use that.
3151 if (Spellings.size() == 1)
3152 Heading = Spellings.begin()->name();
3153 else {
3154 std::set<std::string> Uniques;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003155 for (auto I = Spellings.begin(), E = Spellings.end();
3156 I != E && Uniques.size() <= 1; ++I) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003157 std::string Spelling = NormalizeNameForSpellingComparison(I->name());
3158 Uniques.insert(Spelling);
3159 }
3160 // If the semantic map has only one spelling, that is sufficient for our
3161 // needs.
3162 if (Uniques.size() == 1)
3163 Heading = *Uniques.begin();
3164 }
3165 }
3166
3167 // If the heading is still empty, it is an error.
3168 if (Heading.empty())
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003169 PrintFatalError(Doc.Attribute->getLoc(),
Aaron Ballman97dba042014-02-17 15:27:10 +00003170 "This attribute requires a heading to be specified");
3171
3172 // Gather a list of unique spellings; this is not the same as the semantic
3173 // spelling for the attribute. Variations in underscores and other non-
3174 // semantic characters are still acceptable.
3175 std::vector<std::string> Names;
3176
Aaron Ballman97dba042014-02-17 15:27:10 +00003177 unsigned SupportedSpellings = 0;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003178 for (const auto &I : Spellings) {
3179 SpellingKind Kind = StringSwitch<SpellingKind>(I.variety())
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003180 .Case("GNU", GNU)
3181 .Case("CXX11", CXX11)
3182 .Case("Declspec", Declspec)
3183 .Case("Keyword", Keyword)
3184 .Case("Pragma", Pragma);
Aaron Ballman97dba042014-02-17 15:27:10 +00003185
3186 // Mask in the supported spelling.
3187 SupportedSpellings |= Kind;
3188
3189 std::string Name;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003190 if (Kind == CXX11 && !I.nameSpace().empty())
3191 Name = I.nameSpace() + "::";
3192 Name += I.name();
Aaron Ballman97dba042014-02-17 15:27:10 +00003193
3194 // If this name is the same as the heading, do not add it.
3195 if (Name != Heading)
3196 Names.push_back(Name);
3197 }
3198
3199 // Print out the heading for the attribute. If there are alternate spellings,
3200 // then display those after the heading.
Aaron Ballmanea6668c2014-02-21 14:14:04 +00003201 if (!CustomHeading && !Names.empty()) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003202 Heading += " (";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003203 for (auto I = Names.begin(), E = Names.end(); I != E; ++I) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003204 if (I != Names.begin())
3205 Heading += ", ";
3206 Heading += *I;
3207 }
3208 Heading += ")";
3209 }
3210 OS << Heading << "\n" << std::string(Heading.length(), '-') << "\n";
3211
3212 if (!SupportedSpellings)
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003213 PrintFatalError(Doc.Attribute->getLoc(),
Aaron Ballman97dba042014-02-17 15:27:10 +00003214 "Attribute has no supported spellings; cannot be "
3215 "documented");
3216
3217 // List what spelling syntaxes the attribute supports.
3218 OS << ".. csv-table:: Supported Syntaxes\n";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003219 OS << " :header: \"GNU\", \"C++11\", \"__declspec\", \"Keyword\",";
3220 OS << " \"Pragma\"\n\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003221 OS << " \"";
3222 if (SupportedSpellings & GNU) OS << "X";
3223 OS << "\",\"";
3224 if (SupportedSpellings & CXX11) OS << "X";
3225 OS << "\",\"";
3226 if (SupportedSpellings & Declspec) OS << "X";
3227 OS << "\",\"";
3228 if (SupportedSpellings & Keyword) OS << "X";
Aaron Ballman120c79f2014-06-25 12:48:06 +00003229 OS << "\", \"";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003230 if (SupportedSpellings & Pragma) OS << "X";
3231 OS << "\"\n\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003232
3233 // If the attribute is deprecated, print a message about it, and possibly
3234 // provide a replacement attribute.
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003235 if (!Doc.Documentation->isValueUnset("Deprecated")) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003236 OS << "This attribute has been deprecated, and may be removed in a future "
3237 << "version of Clang.";
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003238 const Record &Deprecated = *Doc.Documentation->getValueAsDef("Deprecated");
Aaron Ballman97dba042014-02-17 15:27:10 +00003239 std::string Replacement = Deprecated.getValueAsString("Replacement");
3240 if (!Replacement.empty())
3241 OS << " This attribute has been superseded by ``"
3242 << Replacement << "``.";
3243 OS << "\n\n";
3244 }
3245
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003246 std::string ContentStr = Doc.Documentation->getValueAsString("Content");
Aaron Ballman97dba042014-02-17 15:27:10 +00003247 // Trim leading and trailing newlines and spaces.
Benjamin Kramer5c404072015-04-10 21:37:21 +00003248 OS << StringRef(ContentStr).trim();
Aaron Ballman97dba042014-02-17 15:27:10 +00003249
3250 OS << "\n\n\n";
3251}
3252
3253void EmitClangAttrDocs(RecordKeeper &Records, raw_ostream &OS) {
3254 // Get the documentation introduction paragraph.
3255 const Record *Documentation = Records.getDef("GlobalDocumentation");
3256 if (!Documentation) {
3257 PrintFatalError("The Documentation top-level definition is missing, "
3258 "no documentation will be generated.");
3259 return;
3260 }
3261
Aaron Ballman4de1b582014-02-19 22:59:32 +00003262 OS << Documentation->getValueAsString("Intro") << "\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003263
Aaron Ballman97dba042014-02-17 15:27:10 +00003264 // Gather the Documentation lists from each of the attributes, based on the
3265 // category provided.
3266 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003267 std::map<const Record *, std::vector<DocumentationData>> SplitDocs;
Aaron Ballman2f22b942014-05-20 19:47:14 +00003268 for (const auto *A : Attrs) {
3269 const Record &Attr = *A;
Aaron Ballman97dba042014-02-17 15:27:10 +00003270 std::vector<Record *> Docs = Attr.getValueAsListOfDefs("Documentation");
Aaron Ballman2f22b942014-05-20 19:47:14 +00003271 for (const auto *D : Docs) {
3272 const Record &Doc = *D;
Aaron Ballman4de1b582014-02-19 22:59:32 +00003273 const Record *Category = Doc.getValueAsDef("Category");
Aaron Ballman97dba042014-02-17 15:27:10 +00003274 // If the category is "undocumented", then there cannot be any other
3275 // documentation categories (otherwise, the attribute would become
3276 // documented).
Aaron Ballman4de1b582014-02-19 22:59:32 +00003277 std::string Cat = Category->getValueAsString("Name");
3278 bool Undocumented = Cat == "Undocumented";
Aaron Ballman97dba042014-02-17 15:27:10 +00003279 if (Undocumented && Docs.size() > 1)
3280 PrintFatalError(Doc.getLoc(),
3281 "Attribute is \"Undocumented\", but has multiple "
3282 "documentation categories");
3283
3284 if (!Undocumented)
Aaron Ballman4de1b582014-02-19 22:59:32 +00003285 SplitDocs[Category].push_back(DocumentationData(Doc, Attr));
Aaron Ballman97dba042014-02-17 15:27:10 +00003286 }
3287 }
3288
3289 // Having split the attributes out based on what documentation goes where,
3290 // we can begin to generate sections of documentation.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003291 for (const auto &I : SplitDocs) {
3292 WriteCategoryHeader(I.first, OS);
Aaron Ballman97dba042014-02-17 15:27:10 +00003293
3294 // Walk over each of the attributes in the category and write out their
3295 // documentation.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003296 for (const auto &Doc : I.second)
3297 WriteDocumentation(Doc, OS);
Aaron Ballman97dba042014-02-17 15:27:10 +00003298 }
3299}
3300
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00003301} // end namespace clang