blob: b6d2988964b484793cf0d82e731950485a6f647d [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"
Alex Lorenz9e7bf162017-04-18 14:33:39 +000015#include "llvm/ADT/DenseMap.h"
George Burgess IV1881a572016-12-01 00:13:18 +000016#include "llvm/ADT/DenseSet.h"
Alex Lorenz3bfe9622017-04-18 10:46:41 +000017#include "llvm/ADT/STLExtras.h"
Alex Lorenz9e7bf162017-04-18 14:33:39 +000018#include "llvm/ADT/SmallString.h"
Aaron Ballman28afa182014-11-17 18:17:19 +000019#include "llvm/ADT/StringExtras.h"
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000020#include "llvm/ADT/StringRef.h"
Alex Lorenz9e7bf162017-04-18 14:33:39 +000021#include "llvm/ADT/StringSet.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000022#include "llvm/ADT/StringSwitch.h"
Alex Lorenz9e7bf162017-04-18 14:33:39 +000023#include "llvm/ADT/iterator_range.h"
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000024#include "llvm/Support/ErrorHandling.h"
25#include "llvm/Support/raw_ostream.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000026#include "llvm/TableGen/Error.h"
Peter Collingbournebee583f2011-10-06 13:03:08 +000027#include "llvm/TableGen/Record.h"
Douglas Gregor377f99b2012-05-02 17:33:51 +000028#include "llvm/TableGen/StringMatcher.h"
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +000029#include "llvm/TableGen/TableGenBackend.h"
Peter Collingbournebee583f2011-10-06 13:03:08 +000030#include <algorithm>
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000031#include <cassert>
Peter Collingbournebee583f2011-10-06 13:03:08 +000032#include <cctype>
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000033#include <cstddef>
34#include <cstdint>
35#include <map>
Aaron Ballman8f1439b2014-03-05 16:49:55 +000036#include <memory>
Aaron Ballman80469032013-11-29 14:57:58 +000037#include <set>
Chandler Carruth5553d0d2014-01-07 11:51:46 +000038#include <sstream>
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000039#include <string>
40#include <utility>
41#include <vector>
Peter Collingbournebee583f2011-10-06 13:03:08 +000042
43using namespace llvm;
44
Benjamin Kramerd910d162015-03-10 18:24:01 +000045namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000046
Aaron Ballmanc669cc02014-01-27 22:10:04 +000047class FlattenedSpelling {
48 std::string V, N, NS;
49 bool K;
50
51public:
52 FlattenedSpelling(const std::string &Variety, const std::string &Name,
53 const std::string &Namespace, bool KnownToGCC) :
54 V(Variety), N(Name), NS(Namespace), K(KnownToGCC) {}
55 explicit FlattenedSpelling(const Record &Spelling) :
56 V(Spelling.getValueAsString("Variety")),
57 N(Spelling.getValueAsString("Name")) {
58
59 assert(V != "GCC" && "Given a GCC spelling, which means this hasn't been"
60 "flattened!");
Tyler Nowickie8b07ed2014-06-13 17:57:25 +000061 if (V == "CXX11" || V == "Pragma")
Aaron Ballmanc669cc02014-01-27 22:10:04 +000062 NS = Spelling.getValueAsString("Namespace");
63 bool Unset;
64 K = Spelling.getValueAsBitOrUnset("KnownToGCC", Unset);
65 }
66
67 const std::string &variety() const { return V; }
68 const std::string &name() const { return N; }
69 const std::string &nameSpace() const { return NS; }
70 bool knownToGCC() const { return K; }
71};
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +000072
Hans Wennborgdcfba332015-10-06 23:40:43 +000073} // end anonymous namespace
Aaron Ballmanc669cc02014-01-27 22:10:04 +000074
Benjamin Kramerd910d162015-03-10 18:24:01 +000075static std::vector<FlattenedSpelling>
76GetFlattenedSpellings(const Record &Attr) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +000077 std::vector<Record *> Spellings = Attr.getValueAsListOfDefs("Spellings");
78 std::vector<FlattenedSpelling> Ret;
79
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +000080 for (const auto &Spelling : Spellings) {
81 if (Spelling->getValueAsString("Variety") == "GCC") {
Aaron Ballmanc669cc02014-01-27 22:10:04 +000082 // Gin up two new spelling objects to add into the list.
Benjamin Kramer3204b152015-05-29 19:42:19 +000083 Ret.emplace_back("GNU", Spelling->getValueAsString("Name"), "", true);
84 Ret.emplace_back("CXX11", Spelling->getValueAsString("Name"), "gnu",
85 true);
Aaron Ballmanc669cc02014-01-27 22:10:04 +000086 } else
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +000087 Ret.push_back(FlattenedSpelling(*Spelling));
Aaron Ballmanc669cc02014-01-27 22:10:04 +000088 }
89
90 return Ret;
91}
92
Peter Collingbournebee583f2011-10-06 13:03:08 +000093static std::string ReadPCHRecord(StringRef type) {
94 return StringSwitch<std::string>(type)
David L. Jones267b8842017-01-24 01:04:30 +000095 .EndsWith("Decl *", "Record.GetLocalDeclAs<"
96 + std::string(type, 0, type.size()-1) + ">(Record.readInt())")
97 .Case("TypeSourceInfo *", "Record.getTypeSourceInfo()")
98 .Case("Expr *", "Record.readExpr()")
99 .Case("IdentifierInfo *", "Record.getIdentifierInfo()")
100 .Case("StringRef", "Record.readString()")
101 .Default("Record.readInt()");
Peter Collingbournebee583f2011-10-06 13:03:08 +0000102}
103
Richard Smith19978562016-05-18 00:16:51 +0000104// Get a type that is suitable for storing an object of the specified type.
105static StringRef getStorageType(StringRef type) {
106 return StringSwitch<StringRef>(type)
107 .Case("StringRef", "std::string")
108 .Default(type);
109}
110
Peter Collingbournebee583f2011-10-06 13:03:08 +0000111// Assumes that the way to get the value is SA->getname()
112static std::string WritePCHRecord(StringRef type, StringRef name) {
Richard Smith290d8012016-04-06 17:06:00 +0000113 return "Record." + StringSwitch<std::string>(type)
114 .EndsWith("Decl *", "AddDeclRef(" + std::string(name) + ");\n")
115 .Case("TypeSourceInfo *", "AddTypeSourceInfo(" + std::string(name) + ");\n")
Peter Collingbournebee583f2011-10-06 13:03:08 +0000116 .Case("Expr *", "AddStmt(" + std::string(name) + ");\n")
Richard Smith290d8012016-04-06 17:06:00 +0000117 .Case("IdentifierInfo *", "AddIdentifierRef(" + std::string(name) + ");\n")
118 .Case("StringRef", "AddString(" + std::string(name) + ");\n")
119 .Default("push_back(" + std::string(name) + ");\n");
Peter Collingbournebee583f2011-10-06 13:03:08 +0000120}
121
Michael Han4a045172012-03-07 00:12:16 +0000122// Normalize attribute name by removing leading and trailing
123// underscores. For example, __foo, foo__, __foo__ would
124// become foo.
125static StringRef NormalizeAttrName(StringRef AttrName) {
George Burgess IV1881a572016-12-01 00:13:18 +0000126 AttrName.consume_front("__");
127 AttrName.consume_back("__");
Michael Han4a045172012-03-07 00:12:16 +0000128 return AttrName;
129}
130
Aaron Ballman36a53502014-01-16 13:03:14 +0000131// Normalize the name by removing any and all leading and trailing underscores.
132// This is different from NormalizeAttrName in that it also handles names like
133// _pascal and __pascal.
134static StringRef NormalizeNameForSpellingComparison(StringRef Name) {
Benjamin Kramer5c404072015-04-10 21:37:21 +0000135 return Name.trim("_");
Aaron Ballman36a53502014-01-16 13:03:14 +0000136}
137
Justin Lebar4086fe52017-01-05 16:51:54 +0000138// Normalize the spelling of a GNU attribute (i.e. "x" in "__attribute__((x))"),
139// removing "__" if it appears at the beginning and end of the attribute's name.
140static StringRef NormalizeGNUAttrSpelling(StringRef AttrSpelling) {
Michael Han4a045172012-03-07 00:12:16 +0000141 if (AttrSpelling.startswith("__") && AttrSpelling.endswith("__")) {
142 AttrSpelling = AttrSpelling.substr(2, AttrSpelling.size() - 4);
143 }
144
145 return AttrSpelling;
146}
147
Aaron Ballman2f22b942014-05-20 19:47:14 +0000148typedef std::vector<std::pair<std::string, const Record *>> ParsedAttrMap;
Aaron Ballman64e69862013-12-15 13:05:48 +0000149
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000150static ParsedAttrMap getParsedAttrList(const RecordKeeper &Records,
Craig Topper8ae12032014-05-07 06:21:57 +0000151 ParsedAttrMap *Dupes = nullptr) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000152 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Aaron Ballman64e69862013-12-15 13:05:48 +0000153 std::set<std::string> Seen;
154 ParsedAttrMap R;
Aaron Ballman2f22b942014-05-20 19:47:14 +0000155 for (const auto *Attr : Attrs) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000156 if (Attr->getValueAsBit("SemaHandler")) {
Aaron Ballman64e69862013-12-15 13:05:48 +0000157 std::string AN;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000158 if (Attr->isSubClassOf("TargetSpecificAttr") &&
159 !Attr->isValueUnset("ParseKind")) {
160 AN = Attr->getValueAsString("ParseKind");
Aaron Ballman64e69862013-12-15 13:05:48 +0000161
162 // If this attribute has already been handled, it does not need to be
163 // handled again.
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000164 if (Seen.find(AN) != Seen.end()) {
165 if (Dupes)
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000166 Dupes->push_back(std::make_pair(AN, Attr));
Aaron Ballman64e69862013-12-15 13:05:48 +0000167 continue;
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000168 }
Aaron Ballman64e69862013-12-15 13:05:48 +0000169 Seen.insert(AN);
170 } else
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000171 AN = NormalizeAttrName(Attr->getName()).str();
Aaron Ballman64e69862013-12-15 13:05:48 +0000172
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000173 R.push_back(std::make_pair(AN, Attr));
Aaron Ballman64e69862013-12-15 13:05:48 +0000174 }
175 }
176 return R;
177}
178
Peter Collingbournebee583f2011-10-06 13:03:08 +0000179namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000180
Peter Collingbournebee583f2011-10-06 13:03:08 +0000181 class Argument {
182 std::string lowerName, upperName;
183 StringRef attrName;
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000184 bool isOpt;
John McCalla62c1a92015-10-28 00:17:34 +0000185 bool Fake;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000186
187 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000188 Argument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000189 : lowerName(Arg.getValueAsString("Name")), upperName(lowerName),
John McCalla62c1a92015-10-28 00:17:34 +0000190 attrName(Attr), isOpt(false), Fake(false) {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000191 if (!lowerName.empty()) {
192 lowerName[0] = std::tolower(lowerName[0]);
193 upperName[0] = std::toupper(upperName[0]);
194 }
Reid Klecknerebeb0ca2016-05-31 17:42:56 +0000195 // Work around MinGW's macro definition of 'interface' to 'struct'. We
196 // have an attribute argument called 'Interface', so only the lower case
197 // name conflicts with the macro definition.
198 if (lowerName == "interface")
199 lowerName = "interface_";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000200 }
Hans Wennborgdcfba332015-10-06 23:40:43 +0000201 virtual ~Argument() = default;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000202
203 StringRef getLowerName() const { return lowerName; }
204 StringRef getUpperName() const { return upperName; }
205 StringRef getAttrName() const { return attrName; }
206
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000207 bool isOptional() const { return isOpt; }
208 void setOptional(bool set) { isOpt = set; }
209
John McCalla62c1a92015-10-28 00:17:34 +0000210 bool isFake() const { return Fake; }
211 void setFake(bool fake) { Fake = fake; }
212
Peter Collingbournebee583f2011-10-06 13:03:08 +0000213 // These functions print the argument contents formatted in different ways.
214 virtual void writeAccessors(raw_ostream &OS) const = 0;
215 virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +0000216 virtual void writeASTVisitorTraversal(raw_ostream &OS) const {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000217 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000218 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
Daniel Dunbardc51baa2012-02-10 06:00:29 +0000219 virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000220 virtual void writeCtorBody(raw_ostream &OS) const {}
221 virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000222 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000223 virtual void writeCtorParameters(raw_ostream &OS) const = 0;
224 virtual void writeDeclarations(raw_ostream &OS) const = 0;
225 virtual void writePCHReadArgs(raw_ostream &OS) const = 0;
226 virtual void writePCHReadDecls(raw_ostream &OS) const = 0;
227 virtual void writePCHWrite(raw_ostream &OS) const = 0;
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000228 virtual void writeValue(raw_ostream &OS) const = 0;
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000229 virtual void writeDump(raw_ostream &OS) const = 0;
230 virtual void writeDumpChildren(raw_ostream &OS) const {}
Richard Trieude5cc7d2013-01-31 01:44:26 +0000231 virtual void writeHasChildren(raw_ostream &OS) const { OS << "false"; }
Aaron Ballman682ee422013-09-11 19:47:58 +0000232
233 virtual bool isEnumArg() const { return false; }
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000234 virtual bool isVariadicEnumArg() const { return false; }
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000235 virtual bool isVariadic() const { return false; }
Aaron Ballman36a53502014-01-16 13:03:14 +0000236
237 virtual void writeImplicitCtorArgs(raw_ostream &OS) const {
238 OS << getUpperName();
239 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000240 };
241
242 class SimpleArgument : public Argument {
243 std::string type;
244
245 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000246 SimpleArgument(const Record &Arg, StringRef Attr, std::string T)
Benjamin Kramercfeacf52016-05-27 14:27:13 +0000247 : Argument(Arg, Attr), type(std::move(T)) {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000248
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000249 std::string getType() const { return type; }
250
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000251 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000252 OS << " " << type << " get" << getUpperName() << "() const {\n";
253 OS << " return " << getLowerName() << ";\n";
254 OS << " }";
255 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000256
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000257 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000258 OS << getLowerName();
259 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000260
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000261 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000262 OS << "A->get" << getUpperName() << "()";
263 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000264
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000265 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000266 OS << getLowerName() << "(" << getUpperName() << ")";
267 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000268
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000269 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000270 OS << getLowerName() << "()";
271 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000272
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000273 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000274 OS << type << " " << getUpperName();
275 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000276
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000277 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000278 OS << type << " " << getLowerName() << ";";
279 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000280
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000281 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000282 std::string read = ReadPCHRecord(type);
283 OS << " " << type << " " << getLowerName() << " = " << read << ";\n";
284 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000285
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000286 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000287 OS << getLowerName();
288 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000289
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000290 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000291 OS << " " << WritePCHRecord(type, "SA->get" +
292 std::string(getUpperName()) + "()");
293 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000294
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000295 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000296 if (type == "FunctionDecl *") {
Richard Smithb87c4652013-10-31 21:23:20 +0000297 OS << "\" << get" << getUpperName()
298 << "()->getNameInfo().getAsString() << \"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000299 } else if (type == "IdentifierInfo *") {
Akira Hatanaka3d173132016-09-10 03:29:43 +0000300 OS << "\";\n";
301 if (isOptional())
302 OS << " if (get" << getUpperName() << "()) ";
303 else
304 OS << " ";
305 OS << "OS << get" << getUpperName() << "()->getName();\n";
306 OS << " OS << \"";
Richard Smithb87c4652013-10-31 21:23:20 +0000307 } else if (type == "TypeSourceInfo *") {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000308 OS << "\" << get" << getUpperName() << "().getAsString() << \"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000309 } else {
310 OS << "\" << get" << getUpperName() << "() << \"";
311 }
312 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000313
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000314 void writeDump(raw_ostream &OS) const override {
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +0000315 if (type == "FunctionDecl *" || type == "NamedDecl *") {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000316 OS << " OS << \" \";\n";
317 OS << " dumpBareDeclRef(SA->get" << getUpperName() << "());\n";
318 } else if (type == "IdentifierInfo *") {
Aaron Ballman415c4142015-11-30 15:25:34 +0000319 if (isOptional())
320 OS << " if (SA->get" << getUpperName() << "())\n ";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000321 OS << " OS << \" \" << SA->get" << getUpperName()
322 << "()->getName();\n";
Richard Smithb87c4652013-10-31 21:23:20 +0000323 } else if (type == "TypeSourceInfo *") {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000324 OS << " OS << \" \" << SA->get" << getUpperName()
325 << "().getAsString();\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000326 } else if (type == "bool") {
327 OS << " if (SA->get" << getUpperName() << "()) OS << \" "
328 << getUpperName() << "\";\n";
329 } else if (type == "int" || type == "unsigned") {
330 OS << " OS << \" \" << SA->get" << getUpperName() << "();\n";
331 } else {
332 llvm_unreachable("Unknown SimpleArgument type!");
333 }
334 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000335 };
336
Aaron Ballman18a78382013-11-21 00:28:23 +0000337 class DefaultSimpleArgument : public SimpleArgument {
338 int64_t Default;
339
340 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000341 DefaultSimpleArgument(const Record &Arg, StringRef Attr,
Aaron Ballman18a78382013-11-21 00:28:23 +0000342 std::string T, int64_t Default)
343 : SimpleArgument(Arg, Attr, T), Default(Default) {}
344
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000345 void writeAccessors(raw_ostream &OS) const override {
Aaron Ballman18a78382013-11-21 00:28:23 +0000346 SimpleArgument::writeAccessors(OS);
347
348 OS << "\n\n static const " << getType() << " Default" << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000349 << " = ";
350 if (getType() == "bool")
351 OS << (Default != 0 ? "true" : "false");
352 else
353 OS << Default;
354 OS << ";";
Aaron Ballman18a78382013-11-21 00:28:23 +0000355 }
356 };
357
Peter Collingbournebee583f2011-10-06 13:03:08 +0000358 class StringArgument : public Argument {
359 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000360 StringArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000361 : Argument(Arg, Attr)
362 {}
363
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000364 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000365 OS << " llvm::StringRef get" << getUpperName() << "() const {\n";
366 OS << " return llvm::StringRef(" << getLowerName() << ", "
367 << getLowerName() << "Length);\n";
368 OS << " }\n";
369 OS << " unsigned get" << getUpperName() << "Length() const {\n";
370 OS << " return " << getLowerName() << "Length;\n";
371 OS << " }\n";
372 OS << " void set" << getUpperName()
373 << "(ASTContext &C, llvm::StringRef S) {\n";
374 OS << " " << getLowerName() << "Length = S.size();\n";
375 OS << " this->" << getLowerName() << " = new (C, 1) char ["
376 << getLowerName() << "Length];\n";
Chandler Carruth38a45cc2015-08-04 03:53:01 +0000377 OS << " if (!S.empty())\n";
378 OS << " std::memcpy(this->" << getLowerName() << ", S.data(), "
Peter Collingbournebee583f2011-10-06 13:03:08 +0000379 << getLowerName() << "Length);\n";
380 OS << " }";
381 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000382
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000383 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000384 OS << "get" << getUpperName() << "()";
385 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000386
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000387 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000388 OS << "A->get" << getUpperName() << "()";
389 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000390
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000391 void writeCtorBody(raw_ostream &OS) const override {
Chandler Carruth38a45cc2015-08-04 03:53:01 +0000392 OS << " if (!" << getUpperName() << ".empty())\n";
393 OS << " std::memcpy(" << getLowerName() << ", " << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000394 << ".data(), " << getLowerName() << "Length);\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000395 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000396
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000397 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000398 OS << getLowerName() << "Length(" << getUpperName() << ".size()),"
399 << getLowerName() << "(new (Ctx, 1) char[" << getLowerName()
400 << "Length])";
401 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000402
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000403 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Hans Wennborg59dbe862015-09-29 20:56:43 +0000404 OS << getLowerName() << "Length(0)," << getLowerName() << "(nullptr)";
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000405 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000406
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000407 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000408 OS << "llvm::StringRef " << getUpperName();
409 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000410
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000411 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000412 OS << "unsigned " << getLowerName() << "Length;\n";
413 OS << "char *" << getLowerName() << ";";
414 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000415
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000416 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000417 OS << " std::string " << getLowerName()
David L. Jones267b8842017-01-24 01:04:30 +0000418 << "= Record.readString();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000419 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000420
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000421 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000422 OS << getLowerName();
423 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000424
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000425 void writePCHWrite(raw_ostream &OS) const override {
Richard Smith290d8012016-04-06 17:06:00 +0000426 OS << " Record.AddString(SA->get" << getUpperName() << "());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000427 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000428
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000429 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000430 OS << "\\\"\" << get" << getUpperName() << "() << \"\\\"";
431 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000432
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000433 void writeDump(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000434 OS << " OS << \" \\\"\" << SA->get" << getUpperName()
435 << "() << \"\\\"\";\n";
436 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000437 };
438
439 class AlignedArgument : public Argument {
440 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000441 AlignedArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000442 : Argument(Arg, Attr)
443 {}
444
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000445 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000446 OS << " bool is" << getUpperName() << "Dependent() const;\n";
447
448 OS << " unsigned get" << getUpperName() << "(ASTContext &Ctx) const;\n";
449
450 OS << " bool is" << getUpperName() << "Expr() const {\n";
451 OS << " return is" << getLowerName() << "Expr;\n";
452 OS << " }\n";
453
454 OS << " Expr *get" << getUpperName() << "Expr() const {\n";
455 OS << " assert(is" << getLowerName() << "Expr);\n";
456 OS << " return " << getLowerName() << "Expr;\n";
457 OS << " }\n";
458
459 OS << " TypeSourceInfo *get" << getUpperName() << "Type() const {\n";
460 OS << " assert(!is" << getLowerName() << "Expr);\n";
461 OS << " return " << getLowerName() << "Type;\n";
462 OS << " }";
463 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000464
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000465 void writeAccessorDefinitions(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000466 OS << "bool " << getAttrName() << "Attr::is" << getUpperName()
467 << "Dependent() const {\n";
468 OS << " if (is" << getLowerName() << "Expr)\n";
469 OS << " return " << getLowerName() << "Expr && (" << getLowerName()
470 << "Expr->isValueDependent() || " << getLowerName()
471 << "Expr->isTypeDependent());\n";
472 OS << " else\n";
473 OS << " return " << getLowerName()
474 << "Type->getType()->isDependentType();\n";
475 OS << "}\n";
476
477 // FIXME: Do not do the calculation here
478 // FIXME: Handle types correctly
479 // A null pointer means maximum alignment
Peter Collingbournebee583f2011-10-06 13:03:08 +0000480 OS << "unsigned " << getAttrName() << "Attr::get" << getUpperName()
481 << "(ASTContext &Ctx) const {\n";
482 OS << " assert(!is" << getUpperName() << "Dependent());\n";
483 OS << " if (is" << getLowerName() << "Expr)\n";
Ulrich Weigandca3cb7f2015-04-21 17:29:35 +0000484 OS << " return " << getLowerName() << "Expr ? " << getLowerName()
485 << "Expr->EvaluateKnownConstInt(Ctx).getZExtValue()"
486 << " * Ctx.getCharWidth() : "
487 << "Ctx.getTargetDefaultAlignForAttributeAligned();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000488 OS << " else\n";
489 OS << " return 0; // FIXME\n";
490 OS << "}\n";
491 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000492
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000493 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000494 OS << "is" << getLowerName() << "Expr, is" << getLowerName()
495 << "Expr ? static_cast<void*>(" << getLowerName()
496 << "Expr) : " << getLowerName()
497 << "Type";
498 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000499
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000500 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000501 // FIXME: move the definition in Sema::InstantiateAttrs to here.
502 // In the meantime, aligned attributes are cloned.
503 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000504
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000505 void writeCtorBody(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000506 OS << " if (is" << getLowerName() << "Expr)\n";
507 OS << " " << getLowerName() << "Expr = reinterpret_cast<Expr *>("
508 << getUpperName() << ");\n";
509 OS << " else\n";
510 OS << " " << getLowerName()
511 << "Type = reinterpret_cast<TypeSourceInfo *>(" << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000512 << ");\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000513 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000514
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000515 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000516 OS << "is" << getLowerName() << "Expr(Is" << getUpperName() << "Expr)";
517 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000518
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000519 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000520 OS << "is" << getLowerName() << "Expr(false)";
521 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000522
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000523 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000524 OS << "bool Is" << getUpperName() << "Expr, void *" << getUpperName();
525 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000526
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000527 void writeImplicitCtorArgs(raw_ostream &OS) const override {
Aaron Ballman36a53502014-01-16 13:03:14 +0000528 OS << "Is" << getUpperName() << "Expr, " << getUpperName();
529 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000530
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000531 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000532 OS << "bool is" << getLowerName() << "Expr;\n";
533 OS << "union {\n";
534 OS << "Expr *" << getLowerName() << "Expr;\n";
535 OS << "TypeSourceInfo *" << getLowerName() << "Type;\n";
536 OS << "};";
537 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000538
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000539 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000540 OS << "is" << getLowerName() << "Expr, " << getLowerName() << "Ptr";
541 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000542
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000543 void writePCHReadDecls(raw_ostream &OS) const override {
David L. Jones267b8842017-01-24 01:04:30 +0000544 OS << " bool is" << getLowerName() << "Expr = Record.readInt();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000545 OS << " void *" << getLowerName() << "Ptr;\n";
546 OS << " if (is" << getLowerName() << "Expr)\n";
David L. Jones267b8842017-01-24 01:04:30 +0000547 OS << " " << getLowerName() << "Ptr = Record.readExpr();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000548 OS << " else\n";
549 OS << " " << getLowerName()
David L. Jones267b8842017-01-24 01:04:30 +0000550 << "Ptr = Record.getTypeSourceInfo();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000551 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000552
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000553 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000554 OS << " Record.push_back(SA->is" << getUpperName() << "Expr());\n";
555 OS << " if (SA->is" << getUpperName() << "Expr())\n";
Richard Smith290d8012016-04-06 17:06:00 +0000556 OS << " Record.AddStmt(SA->get" << getUpperName() << "Expr());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000557 OS << " else\n";
Richard Smith290d8012016-04-06 17:06:00 +0000558 OS << " Record.AddTypeSourceInfo(SA->get" << getUpperName()
559 << "Type());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000560 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000561
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000562 void writeValue(raw_ostream &OS) const override {
Richard Trieuddd01ce2014-06-09 22:53:25 +0000563 OS << "\";\n";
Aaron Ballmanc960f562014-08-01 13:49:00 +0000564 // The aligned attribute argument expression is optional.
565 OS << " if (is" << getLowerName() << "Expr && "
566 << getLowerName() << "Expr)\n";
Hans Wennborg59dbe862015-09-29 20:56:43 +0000567 OS << " " << getLowerName() << "Expr->printPretty(OS, nullptr, Policy);\n";
Richard Trieuddd01ce2014-06-09 22:53:25 +0000568 OS << " OS << \"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000569 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000570
571 void writeDump(raw_ostream &OS) const override {}
572
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000573 void writeDumpChildren(raw_ostream &OS) const override {
Richard Smithf7514452014-10-30 21:02:37 +0000574 OS << " if (SA->is" << getUpperName() << "Expr())\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000575 OS << " dumpStmt(SA->get" << getUpperName() << "Expr());\n";
Richard Smithf7514452014-10-30 21:02:37 +0000576 OS << " else\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000577 OS << " dumpType(SA->get" << getUpperName()
578 << "Type()->getType());\n";
579 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000580
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000581 void writeHasChildren(raw_ostream &OS) const override {
Richard Trieude5cc7d2013-01-31 01:44:26 +0000582 OS << "SA->is" << getUpperName() << "Expr()";
583 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000584 };
585
586 class VariadicArgument : public Argument {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000587 std::string Type, ArgName, ArgSizeName, RangeName;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000588
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000589 protected:
590 // Assumed to receive a parameter: raw_ostream OS.
591 virtual void writeValueImpl(raw_ostream &OS) const {
592 OS << " OS << Val;\n";
593 }
594
Peter Collingbournebee583f2011-10-06 13:03:08 +0000595 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000596 VariadicArgument(const Record &Arg, StringRef Attr, std::string T)
Benjamin Kramercfeacf52016-05-27 14:27:13 +0000597 : Argument(Arg, Attr), Type(std::move(T)),
598 ArgName(getLowerName().str() + "_"), ArgSizeName(ArgName + "Size"),
599 RangeName(getLowerName()) {}
Peter Collingbournebee583f2011-10-06 13:03:08 +0000600
Benjamin Kramer1b582012016-02-13 18:11:49 +0000601 const std::string &getType() const { return Type; }
602 const std::string &getArgName() const { return ArgName; }
603 const std::string &getArgSizeName() const { return ArgSizeName; }
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000604 bool isVariadic() const override { return true; }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000605
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000606 void writeAccessors(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000607 std::string IteratorType = getLowerName().str() + "_iterator";
608 std::string BeginFn = getLowerName().str() + "_begin()";
609 std::string EndFn = getLowerName().str() + "_end()";
610
611 OS << " typedef " << Type << "* " << IteratorType << ";\n";
612 OS << " " << IteratorType << " " << BeginFn << " const {"
613 << " return " << ArgName << "; }\n";
614 OS << " " << IteratorType << " " << EndFn << " const {"
615 << " return " << ArgName << " + " << ArgSizeName << "; }\n";
616 OS << " unsigned " << getLowerName() << "_size() const {"
617 << " return " << ArgSizeName << "; }\n";
618 OS << " llvm::iterator_range<" << IteratorType << "> " << RangeName
619 << "() const { return llvm::make_range(" << BeginFn << ", " << EndFn
620 << "); }\n";
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 writeCloneArgs(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000624 OS << ArgName << ", " << ArgSizeName;
Peter Collingbournebee583f2011-10-06 13:03:08 +0000625 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000626
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000627 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000628 // This isn't elegant, but we have to go through public methods...
629 OS << "A->" << getLowerName() << "_begin(), "
630 << "A->" << getLowerName() << "_size()";
631 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000632
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000633 void writeCtorBody(raw_ostream &OS) const override {
Aaron Ballmand6459e52014-05-01 15:21:03 +0000634 OS << " std::copy(" << getUpperName() << ", " << getUpperName()
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000635 << " + " << ArgSizeName << ", " << ArgName << ");\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000636 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000637
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000638 void writeCtorInitializers(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000639 OS << ArgSizeName << "(" << getUpperName() << "Size), "
640 << ArgName << "(new (Ctx, 16) " << getType() << "["
641 << ArgSizeName << "])";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000642 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000643
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000644 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000645 OS << ArgSizeName << "(0), " << ArgName << "(nullptr)";
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000646 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000647
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000648 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000649 OS << getType() << " *" << getUpperName() << ", unsigned "
650 << getUpperName() << "Size";
651 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000652
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000653 void writeImplicitCtorArgs(raw_ostream &OS) const override {
Aaron Ballman36a53502014-01-16 13:03:14 +0000654 OS << getUpperName() << ", " << getUpperName() << "Size";
655 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000656
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000657 void writeDeclarations(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000658 OS << " unsigned " << ArgSizeName << ";\n";
659 OS << " " << getType() << " *" << ArgName << ";";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000660 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000661
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000662 void writePCHReadDecls(raw_ostream &OS) const override {
David L. Jones267b8842017-01-24 01:04:30 +0000663 OS << " unsigned " << getLowerName() << "Size = Record.readInt();\n";
Richard Smith19978562016-05-18 00:16:51 +0000664 OS << " SmallVector<" << getType() << ", 4> "
665 << getLowerName() << ";\n";
666 OS << " " << getLowerName() << ".reserve(" << getLowerName()
Peter Collingbournebee583f2011-10-06 13:03:08 +0000667 << "Size);\n";
Richard Smith19978562016-05-18 00:16:51 +0000668
669 // If we can't store the values in the current type (if it's something
670 // like StringRef), store them in a different type and convert the
671 // container afterwards.
672 std::string StorageType = getStorageType(getType());
673 std::string StorageName = getLowerName();
674 if (StorageType != getType()) {
675 StorageName += "Storage";
676 OS << " SmallVector<" << StorageType << ", 4> "
677 << StorageName << ";\n";
678 OS << " " << StorageName << ".reserve(" << getLowerName()
679 << "Size);\n";
680 }
681
682 OS << " for (unsigned i = 0; i != " << getLowerName() << "Size; ++i)\n";
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000683 std::string read = ReadPCHRecord(Type);
Richard Smith19978562016-05-18 00:16:51 +0000684 OS << " " << StorageName << ".push_back(" << read << ");\n";
685
686 if (StorageType != getType()) {
687 OS << " for (unsigned i = 0; i != " << getLowerName() << "Size; ++i)\n";
688 OS << " " << getLowerName() << ".push_back("
689 << StorageName << "[i]);\n";
690 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000691 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000692
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000693 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000694 OS << getLowerName() << ".data(), " << getLowerName() << "Size";
695 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000696
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000697 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000698 OS << " Record.push_back(SA->" << getLowerName() << "_size());\n";
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000699 OS << " for (auto &Val : SA->" << RangeName << "())\n";
700 OS << " " << WritePCHRecord(Type, "Val");
Peter Collingbournebee583f2011-10-06 13:03:08 +0000701 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000702
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000703 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000704 OS << "\";\n";
705 OS << " bool isFirst = true;\n"
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000706 << " for (const auto &Val : " << RangeName << "()) {\n"
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000707 << " if (isFirst) isFirst = false;\n"
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000708 << " else OS << \", \";\n";
709 writeValueImpl(OS);
710 OS << " }\n";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000711 OS << " OS << \"";
712 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000713
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000714 void writeDump(raw_ostream &OS) const override {
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000715 OS << " for (const auto &Val : SA->" << RangeName << "())\n";
716 OS << " OS << \" \" << Val;\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000717 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000718 };
719
Reid Klecknerf526b9482014-02-12 18:22:18 +0000720 // Unique the enums, but maintain the original declaration ordering.
Craig Topper00648582017-05-31 19:01:22 +0000721 std::vector<StringRef>
722 uniqueEnumsInOrder(const std::vector<StringRef> &enums) {
723 std::vector<StringRef> uniques;
George Burgess IV1881a572016-12-01 00:13:18 +0000724 SmallDenseSet<StringRef, 8> unique_set;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000725 for (const auto &i : enums) {
George Burgess IV1881a572016-12-01 00:13:18 +0000726 if (unique_set.insert(i).second)
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000727 uniques.push_back(i);
Reid Klecknerf526b9482014-02-12 18:22:18 +0000728 }
729 return uniques;
730 }
731
Peter Collingbournebee583f2011-10-06 13:03:08 +0000732 class EnumArgument : public Argument {
733 std::string type;
Craig Topper00648582017-05-31 19:01:22 +0000734 std::vector<StringRef> values, enums, uniques;
735
Peter Collingbournebee583f2011-10-06 13:03:08 +0000736 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000737 EnumArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000738 : Argument(Arg, Attr), type(Arg.getValueAsString("Type")),
Aaron Ballman0e468c02014-01-05 21:08:29 +0000739 values(Arg.getValueAsListOfStrings("Values")),
740 enums(Arg.getValueAsListOfStrings("Enums")),
Reid Klecknerf526b9482014-02-12 18:22:18 +0000741 uniques(uniqueEnumsInOrder(enums))
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000742 {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000743 // FIXME: Emit a proper error
744 assert(!uniques.empty());
745 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000746
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000747 bool isEnumArg() const override { return true; }
Aaron Ballman682ee422013-09-11 19:47:58 +0000748
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000749 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000750 OS << " " << type << " get" << getUpperName() << "() const {\n";
751 OS << " return " << getLowerName() << ";\n";
752 OS << " }";
753 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000754
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000755 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000756 OS << getLowerName();
757 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000758
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000759 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000760 OS << "A->get" << getUpperName() << "()";
761 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000762 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000763 OS << getLowerName() << "(" << getUpperName() << ")";
764 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000765 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000766 OS << getLowerName() << "(" << type << "(0))";
767 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000768 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000769 OS << type << " " << getUpperName();
770 }
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000771 void writeDeclarations(raw_ostream &OS) const override {
Eugene Zelenko5f02b772015-12-08 18:49:01 +0000772 auto i = uniques.cbegin(), e = uniques.cend();
Peter Collingbournebee583f2011-10-06 13:03:08 +0000773 // The last one needs to not have a comma.
774 --e;
775
776 OS << "public:\n";
777 OS << " enum " << type << " {\n";
778 for (; i != e; ++i)
779 OS << " " << *i << ",\n";
780 OS << " " << *e << "\n";
781 OS << " };\n";
782 OS << "private:\n";
783 OS << " " << type << " " << getLowerName() << ";";
784 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000785
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000786 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000787 OS << " " << getAttrName() << "Attr::" << type << " " << getLowerName()
788 << "(static_cast<" << getAttrName() << "Attr::" << type
David L. Jones267b8842017-01-24 01:04:30 +0000789 << ">(Record.readInt()));\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +0000790 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000791
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000792 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000793 OS << getLowerName();
794 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000795
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000796 void writePCHWrite(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000797 OS << "Record.push_back(SA->get" << getUpperName() << "());\n";
798 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000799
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000800 void writeValue(raw_ostream &OS) const override {
Aaron Ballman36d79102014-09-15 16:16:14 +0000801 // FIXME: this isn't 100% correct -- some enum arguments require printing
802 // as a string literal, while others require printing as an identifier.
803 // Tablegen currently does not distinguish between the two forms.
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000804 OS << "\\\"\" << " << getAttrName() << "Attr::Convert" << type << "ToStr(get"
805 << getUpperName() << "()) << \"\\\"";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +0000806 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000807
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000808 void writeDump(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000809 OS << " switch(SA->get" << getUpperName() << "()) {\n";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000810 for (const auto &I : uniques) {
811 OS << " case " << getAttrName() << "Attr::" << I << ":\n";
812 OS << " OS << \" " << I << "\";\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000813 OS << " break;\n";
814 }
815 OS << " }\n";
816 }
Aaron Ballman682ee422013-09-11 19:47:58 +0000817
818 void writeConversion(raw_ostream &OS) const {
819 OS << " static bool ConvertStrTo" << type << "(StringRef Val, ";
820 OS << type << " &Out) {\n";
821 OS << " Optional<" << type << "> R = llvm::StringSwitch<Optional<";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000822 OS << type << ">>(Val)\n";
Aaron Ballman682ee422013-09-11 19:47:58 +0000823 for (size_t I = 0; I < enums.size(); ++I) {
824 OS << " .Case(\"" << values[I] << "\", ";
825 OS << getAttrName() << "Attr::" << enums[I] << ")\n";
826 }
827 OS << " .Default(Optional<" << type << ">());\n";
828 OS << " if (R) {\n";
829 OS << " Out = *R;\n return true;\n }\n";
830 OS << " return false;\n";
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000831 OS << " }\n\n";
832
833 // Mapping from enumeration values back to enumeration strings isn't
834 // trivial because some enumeration values have multiple named
835 // enumerators, such as type_visibility(internal) and
836 // type_visibility(hidden) both mapping to TypeVisibilityAttr::Hidden.
837 OS << " static const char *Convert" << type << "ToStr("
838 << type << " Val) {\n"
839 << " switch(Val) {\n";
George Burgess IV1881a572016-12-01 00:13:18 +0000840 SmallDenseSet<StringRef, 8> Uniques;
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000841 for (size_t I = 0; I < enums.size(); ++I) {
842 if (Uniques.insert(enums[I]).second)
843 OS << " case " << getAttrName() << "Attr::" << enums[I]
844 << ": return \"" << values[I] << "\";\n";
845 }
846 OS << " }\n"
847 << " llvm_unreachable(\"No enumerator with that value\");\n"
848 << " }\n";
Aaron Ballman682ee422013-09-11 19:47:58 +0000849 }
Peter Collingbournebee583f2011-10-06 13:03:08 +0000850 };
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000851
852 class VariadicEnumArgument: public VariadicArgument {
853 std::string type, QualifiedTypeName;
Craig Topper00648582017-05-31 19:01:22 +0000854 std::vector<StringRef> values, enums, uniques;
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000855
856 protected:
857 void writeValueImpl(raw_ostream &OS) const override {
Aaron Ballman36d79102014-09-15 16:16:14 +0000858 // FIXME: this isn't 100% correct -- some enum arguments require printing
859 // as a string literal, while others require printing as an identifier.
860 // Tablegen currently does not distinguish between the two forms.
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000861 OS << " OS << \"\\\"\" << " << getAttrName() << "Attr::Convert" << type
862 << "ToStr(Val)" << "<< \"\\\"\";\n";
863 }
864
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000865 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000866 VariadicEnumArgument(const Record &Arg, StringRef Attr)
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000867 : VariadicArgument(Arg, Attr, Arg.getValueAsString("Type")),
868 type(Arg.getValueAsString("Type")),
Aaron Ballman0e468c02014-01-05 21:08:29 +0000869 values(Arg.getValueAsListOfStrings("Values")),
870 enums(Arg.getValueAsListOfStrings("Enums")),
Reid Klecknerf526b9482014-02-12 18:22:18 +0000871 uniques(uniqueEnumsInOrder(enums))
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000872 {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000873 QualifiedTypeName = getAttrName().str() + "Attr::" + type;
874
875 // FIXME: Emit a proper error
876 assert(!uniques.empty());
877 }
878
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000879 bool isVariadicEnumArg() const override { return true; }
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000880
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000881 void writeDeclarations(raw_ostream &OS) const override {
Eugene Zelenko5f02b772015-12-08 18:49:01 +0000882 auto i = uniques.cbegin(), e = uniques.cend();
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000883 // The last one needs to not have a comma.
884 --e;
885
886 OS << "public:\n";
887 OS << " enum " << type << " {\n";
888 for (; i != e; ++i)
889 OS << " " << *i << ",\n";
890 OS << " " << *e << "\n";
891 OS << " };\n";
892 OS << "private:\n";
893
894 VariadicArgument::writeDeclarations(OS);
895 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000896
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000897 void writeDump(raw_ostream &OS) const override {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000898 OS << " for (" << getAttrName() << "Attr::" << getLowerName()
899 << "_iterator I = SA->" << getLowerName() << "_begin(), E = SA->"
900 << getLowerName() << "_end(); I != E; ++I) {\n";
901 OS << " switch(*I) {\n";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000902 for (const auto &UI : uniques) {
903 OS << " case " << getAttrName() << "Attr::" << UI << ":\n";
904 OS << " OS << \" " << UI << "\";\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000905 OS << " break;\n";
906 }
907 OS << " }\n";
908 OS << " }\n";
909 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000910
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000911 void writePCHReadDecls(raw_ostream &OS) const override {
David L. Jones267b8842017-01-24 01:04:30 +0000912 OS << " unsigned " << getLowerName() << "Size = Record.readInt();\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000913 OS << " SmallVector<" << QualifiedTypeName << ", 4> " << getLowerName()
914 << ";\n";
915 OS << " " << getLowerName() << ".reserve(" << getLowerName()
916 << "Size);\n";
917 OS << " for (unsigned i = " << getLowerName() << "Size; i; --i)\n";
918 OS << " " << getLowerName() << ".push_back(" << "static_cast<"
David L. Jones267b8842017-01-24 01:04:30 +0000919 << QualifiedTypeName << ">(Record.readInt()));\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000920 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000921
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000922 void writePCHWrite(raw_ostream &OS) const override {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000923 OS << " Record.push_back(SA->" << getLowerName() << "_size());\n";
924 OS << " for (" << getAttrName() << "Attr::" << getLowerName()
925 << "_iterator i = SA->" << getLowerName() << "_begin(), e = SA->"
926 << getLowerName() << "_end(); i != e; ++i)\n";
927 OS << " " << WritePCHRecord(QualifiedTypeName, "(*i)");
928 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000929
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000930 void writeConversion(raw_ostream &OS) const {
931 OS << " static bool ConvertStrTo" << type << "(StringRef Val, ";
932 OS << type << " &Out) {\n";
933 OS << " Optional<" << type << "> R = llvm::StringSwitch<Optional<";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +0000934 OS << type << ">>(Val)\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000935 for (size_t I = 0; I < enums.size(); ++I) {
936 OS << " .Case(\"" << values[I] << "\", ";
937 OS << getAttrName() << "Attr::" << enums[I] << ")\n";
938 }
939 OS << " .Default(Optional<" << type << ">());\n";
940 OS << " if (R) {\n";
941 OS << " Out = *R;\n return true;\n }\n";
942 OS << " return false;\n";
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000943 OS << " }\n\n";
944
945 OS << " static const char *Convert" << type << "ToStr("
946 << type << " Val) {\n"
947 << " switch(Val) {\n";
George Burgess IV1881a572016-12-01 00:13:18 +0000948 SmallDenseSet<StringRef, 8> Uniques;
Aaron Ballman25a2cb92014-09-15 15:14:13 +0000949 for (size_t I = 0; I < enums.size(); ++I) {
950 if (Uniques.insert(enums[I]).second)
951 OS << " case " << getAttrName() << "Attr::" << enums[I]
952 << ": return \"" << values[I] << "\";\n";
953 }
954 OS << " }\n"
955 << " llvm_unreachable(\"No enumerator with that value\");\n"
956 << " }\n";
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000957 }
958 };
Peter Collingbournebee583f2011-10-06 13:03:08 +0000959
960 class VersionArgument : public Argument {
961 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +0000962 VersionArgument(const Record &Arg, StringRef Attr)
Peter Collingbournebee583f2011-10-06 13:03:08 +0000963 : Argument(Arg, Attr)
964 {}
965
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000966 void writeAccessors(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000967 OS << " VersionTuple get" << getUpperName() << "() const {\n";
968 OS << " return " << getLowerName() << ";\n";
969 OS << " }\n";
970 OS << " void set" << getUpperName()
971 << "(ASTContext &C, VersionTuple V) {\n";
972 OS << " " << getLowerName() << " = V;\n";
973 OS << " }";
974 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000975
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000976 void writeCloneArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000977 OS << "get" << getUpperName() << "()";
978 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000979
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000980 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000981 OS << "A->get" << getUpperName() << "()";
982 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000983
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000984 void writeCtorInitializers(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000985 OS << getLowerName() << "(" << getUpperName() << ")";
986 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000987
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000988 void writeCtorDefaultInitializers(raw_ostream &OS) const override {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000989 OS << getLowerName() << "()";
990 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000991
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000992 void writeCtorParameters(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000993 OS << "VersionTuple " << getUpperName();
994 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000995
Aaron Ballman8cbf6332014-03-06 15:09:50 +0000996 void writeDeclarations(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +0000997 OS << "VersionTuple " << getLowerName() << ";\n";
998 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +0000999
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001000 void writePCHReadDecls(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +00001001 OS << " VersionTuple " << getLowerName()
David L. Jones267b8842017-01-24 01:04:30 +00001002 << "= Record.readVersionTuple();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00001003 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001004
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001005 void writePCHReadArgs(raw_ostream &OS) const override {
Peter Collingbournebee583f2011-10-06 13:03:08 +00001006 OS << getLowerName();
1007 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001008
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001009 void writePCHWrite(raw_ostream &OS) const override {
Richard Smith290d8012016-04-06 17:06:00 +00001010 OS << " Record.AddVersionTuple(SA->get" << getUpperName() << "());\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00001011 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001012
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001013 void writeValue(raw_ostream &OS) const override {
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00001014 OS << getLowerName() << "=\" << get" << getUpperName() << "() << \"";
1015 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001016
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001017 void writeDump(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001018 OS << " OS << \" \" << SA->get" << getUpperName() << "();\n";
1019 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00001020 };
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001021
1022 class ExprArgument : public SimpleArgument {
1023 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +00001024 ExprArgument(const Record &Arg, StringRef Attr)
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001025 : SimpleArgument(Arg, Attr, "Expr *")
1026 {}
1027
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001028 void writeASTVisitorTraversal(raw_ostream &OS) const override {
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00001029 OS << " if (!"
1030 << "getDerived().TraverseStmt(A->get" << getUpperName() << "()))\n";
1031 OS << " return false;\n";
1032 }
1033
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001034 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001035 OS << "tempInst" << getUpperName();
1036 }
1037
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001038 void writeTemplateInstantiation(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001039 OS << " " << getType() << " tempInst" << getUpperName() << ";\n";
1040 OS << " {\n";
1041 OS << " EnterExpressionEvaluationContext "
Faisal Valid143a0c2017-04-01 21:30:49 +00001042 << "Unevaluated(S, Sema::ExpressionEvaluationContext::Unevaluated);\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001043 OS << " ExprResult " << "Result = S.SubstExpr("
1044 << "A->get" << getUpperName() << "(), TemplateArgs);\n";
1045 OS << " tempInst" << getUpperName() << " = "
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001046 << "Result.getAs<Expr>();\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001047 OS << " }\n";
1048 }
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001049
Craig Topper3164f332014-03-11 03:39:26 +00001050 void writeDump(raw_ostream &OS) const override {}
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001051
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001052 void writeDumpChildren(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001053 OS << " dumpStmt(SA->get" << getUpperName() << "());\n";
1054 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001055
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001056 void writeHasChildren(raw_ostream &OS) const override { OS << "true"; }
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001057 };
1058
1059 class VariadicExprArgument : public VariadicArgument {
1060 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +00001061 VariadicExprArgument(const Record &Arg, StringRef Attr)
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001062 : VariadicArgument(Arg, Attr, "Expr *")
1063 {}
1064
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001065 void writeASTVisitorTraversal(raw_ostream &OS) const override {
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00001066 OS << " {\n";
1067 OS << " " << getType() << " *I = A->" << getLowerName()
1068 << "_begin();\n";
1069 OS << " " << getType() << " *E = A->" << getLowerName()
1070 << "_end();\n";
1071 OS << " for (; I != E; ++I) {\n";
1072 OS << " if (!getDerived().TraverseStmt(*I))\n";
1073 OS << " return false;\n";
1074 OS << " }\n";
1075 OS << " }\n";
1076 }
1077
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001078 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001079 OS << "tempInst" << getUpperName() << ", "
1080 << "A->" << getLowerName() << "_size()";
1081 }
1082
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001083 void writeTemplateInstantiation(raw_ostream &OS) const override {
Eugene Zelenko5f02b772015-12-08 18:49:01 +00001084 OS << " auto *tempInst" << getUpperName()
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001085 << " = new (C, 16) " << getType()
1086 << "[A->" << getLowerName() << "_size()];\n";
1087 OS << " {\n";
1088 OS << " EnterExpressionEvaluationContext "
Faisal Valid143a0c2017-04-01 21:30:49 +00001089 << "Unevaluated(S, Sema::ExpressionEvaluationContext::Unevaluated);\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001090 OS << " " << getType() << " *TI = tempInst" << getUpperName()
1091 << ";\n";
1092 OS << " " << getType() << " *I = A->" << getLowerName()
1093 << "_begin();\n";
1094 OS << " " << getType() << " *E = A->" << getLowerName()
1095 << "_end();\n";
1096 OS << " for (; I != E; ++I, ++TI) {\n";
1097 OS << " ExprResult Result = S.SubstExpr(*I, TemplateArgs);\n";
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001098 OS << " *TI = Result.getAs<Expr>();\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001099 OS << " }\n";
1100 OS << " }\n";
1101 }
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001102
Craig Topper3164f332014-03-11 03:39:26 +00001103 void writeDump(raw_ostream &OS) const override {}
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001104
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001105 void writeDumpChildren(raw_ostream &OS) const override {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001106 OS << " for (" << getAttrName() << "Attr::" << getLowerName()
1107 << "_iterator I = SA->" << getLowerName() << "_begin(), E = SA->"
Richard Smithf7514452014-10-30 21:02:37 +00001108 << getLowerName() << "_end(); I != E; ++I)\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001109 OS << " dumpStmt(*I);\n";
Richard Trieude5cc7d2013-01-31 01:44:26 +00001110 }
1111
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001112 void writeHasChildren(raw_ostream &OS) const override {
Richard Trieude5cc7d2013-01-31 01:44:26 +00001113 OS << "SA->" << getLowerName() << "_begin() != "
1114 << "SA->" << getLowerName() << "_end()";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001115 }
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00001116 };
Richard Smithb87c4652013-10-31 21:23:20 +00001117
Peter Collingbourne915df992015-05-15 18:33:32 +00001118 class VariadicStringArgument : public VariadicArgument {
1119 public:
1120 VariadicStringArgument(const Record &Arg, StringRef Attr)
Benjamin Kramer1b582012016-02-13 18:11:49 +00001121 : VariadicArgument(Arg, Attr, "StringRef")
Peter Collingbourne915df992015-05-15 18:33:32 +00001122 {}
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001123
Benjamin Kramer1b582012016-02-13 18:11:49 +00001124 void writeCtorBody(raw_ostream &OS) const override {
1125 OS << " for (size_t I = 0, E = " << getArgSizeName() << "; I != E;\n"
1126 " ++I) {\n"
1127 " StringRef Ref = " << getUpperName() << "[I];\n"
1128 " if (!Ref.empty()) {\n"
1129 " char *Mem = new (Ctx, 1) char[Ref.size()];\n"
1130 " std::memcpy(Mem, Ref.data(), Ref.size());\n"
1131 " " << getArgName() << "[I] = StringRef(Mem, Ref.size());\n"
1132 " }\n"
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001133 " }\n";
Benjamin Kramer1b582012016-02-13 18:11:49 +00001134 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001135
Peter Collingbourne915df992015-05-15 18:33:32 +00001136 void writeValueImpl(raw_ostream &OS) const override {
1137 OS << " OS << \"\\\"\" << Val << \"\\\"\";\n";
1138 }
1139 };
1140
Richard Smithb87c4652013-10-31 21:23:20 +00001141 class TypeArgument : public SimpleArgument {
1142 public:
Aaron Ballman2f22b942014-05-20 19:47:14 +00001143 TypeArgument(const Record &Arg, StringRef Attr)
Richard Smithb87c4652013-10-31 21:23:20 +00001144 : SimpleArgument(Arg, Attr, "TypeSourceInfo *")
1145 {}
1146
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001147 void writeAccessors(raw_ostream &OS) const override {
Richard Smithb87c4652013-10-31 21:23:20 +00001148 OS << " QualType get" << getUpperName() << "() const {\n";
1149 OS << " return " << getLowerName() << "->getType();\n";
1150 OS << " }";
1151 OS << " " << getType() << " get" << getUpperName() << "Loc() const {\n";
1152 OS << " return " << getLowerName() << ";\n";
1153 OS << " }";
1154 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001155
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001156 void writeTemplateInstantiationArgs(raw_ostream &OS) const override {
Richard Smithb87c4652013-10-31 21:23:20 +00001157 OS << "A->get" << getUpperName() << "Loc()";
1158 }
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001159
Aaron Ballman8cbf6332014-03-06 15:09:50 +00001160 void writePCHWrite(raw_ostream &OS) const override {
Richard Smithb87c4652013-10-31 21:23:20 +00001161 OS << " " << WritePCHRecord(
1162 getType(), "SA->get" + std::string(getUpperName()) + "Loc()");
1163 }
1164 };
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001165
Hans Wennborgdcfba332015-10-06 23:40:43 +00001166} // end anonymous namespace
Peter Collingbournebee583f2011-10-06 13:03:08 +00001167
Aaron Ballman2f22b942014-05-20 19:47:14 +00001168static std::unique_ptr<Argument>
1169createArgument(const Record &Arg, StringRef Attr,
1170 const Record *Search = nullptr) {
Peter Collingbournebee583f2011-10-06 13:03:08 +00001171 if (!Search)
1172 Search = &Arg;
1173
David Blaikie28f30ca2014-08-08 23:59:38 +00001174 std::unique_ptr<Argument> Ptr;
Peter Collingbournebee583f2011-10-06 13:03:08 +00001175 llvm::StringRef ArgName = Search->getName();
1176
David Blaikie28f30ca2014-08-08 23:59:38 +00001177 if (ArgName == "AlignedArgument")
1178 Ptr = llvm::make_unique<AlignedArgument>(Arg, Attr);
1179 else if (ArgName == "EnumArgument")
1180 Ptr = llvm::make_unique<EnumArgument>(Arg, Attr);
1181 else if (ArgName == "ExprArgument")
1182 Ptr = llvm::make_unique<ExprArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001183 else if (ArgName == "FunctionArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001184 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "FunctionDecl *");
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00001185 else if (ArgName == "NamedArgument")
1186 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "NamedDecl *");
Peter Collingbournebee583f2011-10-06 13:03:08 +00001187 else if (ArgName == "IdentifierArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001188 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "IdentifierInfo *");
David Majnemer4bb09802014-02-10 19:50:15 +00001189 else if (ArgName == "DefaultBoolArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001190 Ptr = llvm::make_unique<DefaultSimpleArgument>(
1191 Arg, Attr, "bool", Arg.getValueAsBit("Default"));
1192 else if (ArgName == "BoolArgument")
1193 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "bool");
Aaron Ballman18a78382013-11-21 00:28:23 +00001194 else if (ArgName == "DefaultIntArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001195 Ptr = llvm::make_unique<DefaultSimpleArgument>(
1196 Arg, Attr, "int", Arg.getValueAsInt("Default"));
1197 else if (ArgName == "IntArgument")
1198 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "int");
1199 else if (ArgName == "StringArgument")
1200 Ptr = llvm::make_unique<StringArgument>(Arg, Attr);
1201 else if (ArgName == "TypeArgument")
1202 Ptr = llvm::make_unique<TypeArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001203 else if (ArgName == "UnsignedArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001204 Ptr = llvm::make_unique<SimpleArgument>(Arg, Attr, "unsigned");
Peter Collingbournebee583f2011-10-06 13:03:08 +00001205 else if (ArgName == "VariadicUnsignedArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001206 Ptr = llvm::make_unique<VariadicArgument>(Arg, Attr, "unsigned");
Peter Collingbourne915df992015-05-15 18:33:32 +00001207 else if (ArgName == "VariadicStringArgument")
1208 Ptr = llvm::make_unique<VariadicStringArgument>(Arg, Attr);
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001209 else if (ArgName == "VariadicEnumArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001210 Ptr = llvm::make_unique<VariadicEnumArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001211 else if (ArgName == "VariadicExprArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001212 Ptr = llvm::make_unique<VariadicExprArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001213 else if (ArgName == "VersionArgument")
David Blaikie28f30ca2014-08-08 23:59:38 +00001214 Ptr = llvm::make_unique<VersionArgument>(Arg, Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00001215
1216 if (!Ptr) {
Aaron Ballman18a78382013-11-21 00:28:23 +00001217 // Search in reverse order so that the most-derived type is handled first.
Craig Topper25761242016-01-18 19:52:54 +00001218 ArrayRef<std::pair<Record*, SMRange>> Bases = Search->getSuperClasses();
David Majnemerf7e36092016-06-23 00:15:04 +00001219 for (const auto &Base : llvm::reverse(Bases)) {
Craig Topper25761242016-01-18 19:52:54 +00001220 if ((Ptr = createArgument(Arg, Attr, Base.first)))
Peter Collingbournebee583f2011-10-06 13:03:08 +00001221 break;
1222 }
1223 }
Aaron Ballman8ee40b72013-09-09 23:33:17 +00001224
1225 if (Ptr && Arg.getValueAsBit("Optional"))
1226 Ptr->setOptional(true);
1227
John McCalla62c1a92015-10-28 00:17:34 +00001228 if (Ptr && Arg.getValueAsBit("Fake"))
1229 Ptr->setFake(true);
1230
David Blaikie28f30ca2014-08-08 23:59:38 +00001231 return Ptr;
Peter Collingbournebee583f2011-10-06 13:03:08 +00001232}
1233
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00001234static void writeAvailabilityValue(raw_ostream &OS) {
1235 OS << "\" << getPlatform()->getName();\n"
Manman Ren42e09eb2016-03-10 23:54:12 +00001236 << " if (getStrict()) OS << \", strict\";\n"
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00001237 << " if (!getIntroduced().empty()) OS << \", introduced=\" << getIntroduced();\n"
1238 << " if (!getDeprecated().empty()) OS << \", deprecated=\" << getDeprecated();\n"
1239 << " if (!getObsoleted().empty()) OS << \", obsoleted=\" << getObsoleted();\n"
1240 << " if (getUnavailable()) OS << \", unavailable\";\n"
1241 << " OS << \"";
1242}
1243
Manman Renc7890fe2016-03-16 18:50:49 +00001244static void writeDeprecatedAttrValue(raw_ostream &OS, std::string &Variety) {
1245 OS << "\\\"\" << getMessage() << \"\\\"\";\n";
1246 // Only GNU deprecated has an optional fixit argument at the second position.
1247 if (Variety == "GNU")
1248 OS << " if (!getReplacement().empty()) OS << \", \\\"\""
1249 " << getReplacement() << \"\\\"\";\n";
1250 OS << " OS << \"";
1251}
1252
Aaron Ballman3e424b52013-12-26 18:30:57 +00001253static void writeGetSpellingFunction(Record &R, raw_ostream &OS) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001254 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballman3e424b52013-12-26 18:30:57 +00001255
1256 OS << "const char *" << R.getName() << "Attr::getSpelling() const {\n";
1257 if (Spellings.empty()) {
1258 OS << " return \"(No spelling)\";\n}\n\n";
1259 return;
1260 }
1261
1262 OS << " switch (SpellingListIndex) {\n"
1263 " default:\n"
1264 " llvm_unreachable(\"Unknown attribute spelling!\");\n"
1265 " return \"(No spelling)\";\n";
1266
1267 for (unsigned I = 0; I < Spellings.size(); ++I)
1268 OS << " case " << I << ":\n"
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001269 " return \"" << Spellings[I].name() << "\";\n";
Aaron Ballman3e424b52013-12-26 18:30:57 +00001270 // End of the switch statement.
1271 OS << " }\n";
1272 // End of the getSpelling function.
1273 OS << "}\n\n";
1274}
1275
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001276static void
1277writePrettyPrintFunction(Record &R,
1278 const std::vector<std::unique_ptr<Argument>> &Args,
1279 raw_ostream &OS) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001280 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Michael Han99315932013-01-24 16:46:58 +00001281
1282 OS << "void " << R.getName() << "Attr::printPretty("
1283 << "raw_ostream &OS, const PrintingPolicy &Policy) const {\n";
1284
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001285 if (Spellings.empty()) {
Michael Han99315932013-01-24 16:46:58 +00001286 OS << "}\n\n";
1287 return;
1288 }
1289
1290 OS <<
1291 " switch (SpellingListIndex) {\n"
1292 " default:\n"
1293 " llvm_unreachable(\"Unknown attribute spelling!\");\n"
1294 " break;\n";
1295
1296 for (unsigned I = 0; I < Spellings.size(); ++ I) {
1297 llvm::SmallString<16> Prefix;
1298 llvm::SmallString<8> Suffix;
1299 // The actual spelling of the name and namespace (if applicable)
1300 // of an attribute without considering prefix and suffix.
1301 llvm::SmallString<64> Spelling;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001302 std::string Name = Spellings[I].name();
1303 std::string Variety = Spellings[I].variety();
Michael Han99315932013-01-24 16:46:58 +00001304
1305 if (Variety == "GNU") {
1306 Prefix = " __attribute__((";
1307 Suffix = "))";
1308 } else if (Variety == "CXX11") {
1309 Prefix = " [[";
1310 Suffix = "]]";
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001311 std::string Namespace = Spellings[I].nameSpace();
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001312 if (!Namespace.empty()) {
Michael Han99315932013-01-24 16:46:58 +00001313 Spelling += Namespace;
1314 Spelling += "::";
1315 }
1316 } else if (Variety == "Declspec") {
1317 Prefix = " __declspec(";
1318 Suffix = ")";
Nico Weber20e08042016-09-03 02:55:10 +00001319 } else if (Variety == "Microsoft") {
1320 Prefix = "[";
1321 Suffix = "]";
Richard Smith0cdcc982013-01-29 01:24:26 +00001322 } else if (Variety == "Keyword") {
1323 Prefix = " ";
1324 Suffix = "";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001325 } else if (Variety == "Pragma") {
1326 Prefix = "#pragma ";
1327 Suffix = "\n";
1328 std::string Namespace = Spellings[I].nameSpace();
1329 if (!Namespace.empty()) {
1330 Spelling += Namespace;
1331 Spelling += " ";
1332 }
Michael Han99315932013-01-24 16:46:58 +00001333 } else {
Richard Smith0cdcc982013-01-29 01:24:26 +00001334 llvm_unreachable("Unknown attribute syntax variety!");
Michael Han99315932013-01-24 16:46:58 +00001335 }
1336
1337 Spelling += Name;
1338
1339 OS <<
1340 " case " << I << " : {\n"
Yaron Keren09fb7c62015-03-10 07:33:23 +00001341 " OS << \"" << Prefix << Spelling;
Michael Han99315932013-01-24 16:46:58 +00001342
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001343 if (Variety == "Pragma") {
1344 OS << " \";\n";
1345 OS << " printPrettyPragma(OS, Policy);\n";
Alexey Bataev6d455322015-10-12 06:59:48 +00001346 OS << " OS << \"\\n\";";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00001347 OS << " break;\n";
1348 OS << " }\n";
1349 continue;
1350 }
1351
John McCalla62c1a92015-10-28 00:17:34 +00001352 // Fake arguments aren't part of the parsed form and should not be
1353 // pretty-printed.
George Burgess IV1881a572016-12-01 00:13:18 +00001354 bool hasNonFakeArgs = llvm::any_of(
1355 Args, [](const std::unique_ptr<Argument> &A) { return !A->isFake(); });
John McCalla62c1a92015-10-28 00:17:34 +00001356
Aaron Ballmanc960f562014-08-01 13:49:00 +00001357 // FIXME: always printing the parenthesis isn't the correct behavior for
1358 // attributes which have optional arguments that were not provided. For
1359 // instance: __attribute__((aligned)) will be pretty printed as
1360 // __attribute__((aligned())). The logic should check whether there is only
1361 // a single argument, and if it is optional, whether it has been provided.
John McCalla62c1a92015-10-28 00:17:34 +00001362 if (hasNonFakeArgs)
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001363 OS << "(";
Michael Han99315932013-01-24 16:46:58 +00001364 if (Spelling == "availability") {
1365 writeAvailabilityValue(OS);
Manman Renc7890fe2016-03-16 18:50:49 +00001366 } else if (Spelling == "deprecated" || Spelling == "gnu::deprecated") {
1367 writeDeprecatedAttrValue(OS, Variety);
Michael Han99315932013-01-24 16:46:58 +00001368 } else {
John McCalla62c1a92015-10-28 00:17:34 +00001369 unsigned index = 0;
1370 for (const auto &arg : Args) {
1371 if (arg->isFake()) continue;
1372 if (index++) OS << ", ";
1373 arg->writeValue(OS);
Michael Han99315932013-01-24 16:46:58 +00001374 }
1375 }
1376
John McCalla62c1a92015-10-28 00:17:34 +00001377 if (hasNonFakeArgs)
Aaron Ballman8f1439b2014-03-05 16:49:55 +00001378 OS << ")";
Yaron Keren09fb7c62015-03-10 07:33:23 +00001379 OS << Suffix + "\";\n";
Michael Han99315932013-01-24 16:46:58 +00001380
1381 OS <<
1382 " break;\n"
1383 " }\n";
1384 }
1385
1386 // End of the switch statement.
1387 OS << "}\n";
1388 // End of the print function.
1389 OS << "}\n\n";
1390}
1391
Michael Hanaf02bbe2013-02-01 01:19:17 +00001392/// \brief Return the index of a spelling in a spelling list.
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001393static unsigned
1394getSpellingListIndex(const std::vector<FlattenedSpelling> &SpellingList,
1395 const FlattenedSpelling &Spelling) {
Alexander Kornienko6ee521c2015-01-23 15:36:10 +00001396 assert(!SpellingList.empty() && "Spelling list is empty!");
Michael Hanaf02bbe2013-02-01 01:19:17 +00001397
1398 for (unsigned Index = 0; Index < SpellingList.size(); ++Index) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001399 const FlattenedSpelling &S = SpellingList[Index];
1400 if (S.variety() != Spelling.variety())
Michael Hanaf02bbe2013-02-01 01:19:17 +00001401 continue;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001402 if (S.nameSpace() != Spelling.nameSpace())
Michael Hanaf02bbe2013-02-01 01:19:17 +00001403 continue;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001404 if (S.name() != Spelling.name())
Michael Hanaf02bbe2013-02-01 01:19:17 +00001405 continue;
1406
1407 return Index;
1408 }
1409
1410 llvm_unreachable("Unknown spelling!");
1411}
1412
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001413static void writeAttrAccessorDefinition(const Record &R, raw_ostream &OS) {
Michael Hanaf02bbe2013-02-01 01:19:17 +00001414 std::vector<Record*> Accessors = R.getValueAsListOfDefs("Accessors");
George Burgess IV1881a572016-12-01 00:13:18 +00001415 if (Accessors.empty())
1416 return;
1417
1418 const std::vector<FlattenedSpelling> SpellingList = GetFlattenedSpellings(R);
1419 assert(!SpellingList.empty() &&
1420 "Attribute with empty spelling list can't have accessors!");
Aaron Ballman2f22b942014-05-20 19:47:14 +00001421 for (const auto *Accessor : Accessors) {
Michael Hanaf02bbe2013-02-01 01:19:17 +00001422 std::string Name = Accessor->getValueAsString("Name");
George Burgess IV1881a572016-12-01 00:13:18 +00001423 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Accessor);
Michael Hanaf02bbe2013-02-01 01:19:17 +00001424
1425 OS << " bool " << Name << "() const { return SpellingListIndex == ";
1426 for (unsigned Index = 0; Index < Spellings.size(); ++Index) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001427 OS << getSpellingListIndex(SpellingList, Spellings[Index]);
George Burgess IV1881a572016-12-01 00:13:18 +00001428 if (Index != Spellings.size() - 1)
Michael Hanaf02bbe2013-02-01 01:19:17 +00001429 OS << " ||\n SpellingListIndex == ";
1430 else
1431 OS << "; }\n";
1432 }
1433 }
1434}
1435
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001436static bool
1437SpellingNamesAreCommon(const std::vector<FlattenedSpelling>& Spellings) {
Aaron Ballman36a53502014-01-16 13:03:14 +00001438 assert(!Spellings.empty() && "An empty list of spellings was provided");
1439 std::string FirstName = NormalizeNameForSpellingComparison(
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001440 Spellings.front().name());
Aaron Ballman2f22b942014-05-20 19:47:14 +00001441 for (const auto &Spelling :
1442 llvm::make_range(std::next(Spellings.begin()), Spellings.end())) {
1443 std::string Name = NormalizeNameForSpellingComparison(Spelling.name());
Aaron Ballman36a53502014-01-16 13:03:14 +00001444 if (Name != FirstName)
1445 return false;
1446 }
1447 return true;
1448}
1449
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001450typedef std::map<unsigned, std::string> SemanticSpellingMap;
1451static std::string
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001452CreateSemanticSpellings(const std::vector<FlattenedSpelling> &Spellings,
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001453 SemanticSpellingMap &Map) {
1454 // The enumerants are automatically generated based on the variety,
1455 // namespace (if present) and name for each attribute spelling. However,
1456 // care is taken to avoid trampling on the reserved namespace due to
1457 // underscores.
1458 std::string Ret(" enum Spelling {\n");
1459 std::set<std::string> Uniques;
1460 unsigned Idx = 0;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001461 for (auto I = Spellings.begin(), E = Spellings.end(); I != E; ++I, ++Idx) {
Aaron Ballmanc669cc02014-01-27 22:10:04 +00001462 const FlattenedSpelling &S = *I;
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00001463 const std::string &Variety = S.variety();
1464 const std::string &Spelling = S.name();
1465 const std::string &Namespace = S.nameSpace();
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00001466 std::string EnumName;
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001467
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001468 EnumName += (Variety + "_");
1469 if (!Namespace.empty())
1470 EnumName += (NormalizeNameForSpellingComparison(Namespace).str() +
1471 "_");
1472 EnumName += NormalizeNameForSpellingComparison(Spelling);
1473
1474 // Even if the name is not unique, this spelling index corresponds to a
1475 // particular enumerant name that we've calculated.
1476 Map[Idx] = EnumName;
1477
1478 // Since we have been stripping underscores to avoid trampling on the
1479 // reserved namespace, we may have inadvertently created duplicate
1480 // enumerant names. These duplicates are not considered part of the
1481 // semantic spelling, and can be elided.
1482 if (Uniques.find(EnumName) != Uniques.end())
1483 continue;
1484
1485 Uniques.insert(EnumName);
1486 if (I != Spellings.begin())
1487 Ret += ",\n";
Aaron Ballman9bf6b752015-03-10 17:19:18 +00001488 // Duplicate spellings are not considered part of the semantic spelling
1489 // enumeration, but the spelling index and semantic spelling values are
1490 // meant to be equivalent, so we must specify a concrete value for each
1491 // enumerator.
1492 Ret += " " + EnumName + " = " + llvm::utostr(Idx);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001493 }
1494 Ret += "\n };\n\n";
1495 return Ret;
1496}
1497
1498void WriteSemanticSpellingSwitch(const std::string &VarName,
1499 const SemanticSpellingMap &Map,
1500 raw_ostream &OS) {
1501 OS << " switch (" << VarName << ") {\n default: "
1502 << "llvm_unreachable(\"Unknown spelling list index\");\n";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001503 for (const auto &I : Map)
1504 OS << " case " << I.first << ": return " << I.second << ";\n";
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00001505 OS << " }\n";
1506}
1507
Aaron Ballman35db2b32014-01-29 22:13:45 +00001508// Emits the LateParsed property for attributes.
1509static void emitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) {
1510 OS << "#if defined(CLANG_ATTR_LATE_PARSED_LIST)\n";
1511 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
1512
Aaron Ballman2f22b942014-05-20 19:47:14 +00001513 for (const auto *Attr : Attrs) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001514 bool LateParsed = Attr->getValueAsBit("LateParsed");
Aaron Ballman35db2b32014-01-29 22:13:45 +00001515
1516 if (LateParsed) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001517 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Attr);
Aaron Ballman35db2b32014-01-29 22:13:45 +00001518
1519 // FIXME: Handle non-GNU attributes
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001520 for (const auto &I : Spellings) {
1521 if (I.variety() != "GNU")
Aaron Ballman35db2b32014-01-29 22:13:45 +00001522 continue;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001523 OS << ".Case(\"" << I.name() << "\", " << LateParsed << ")\n";
Aaron Ballman35db2b32014-01-29 22:13:45 +00001524 }
1525 }
1526 }
1527 OS << "#endif // CLANG_ATTR_LATE_PARSED_LIST\n\n";
1528}
1529
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001530static bool hasGNUorCXX11Spelling(const Record &Attribute) {
1531 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attribute);
1532 for (const auto &I : Spellings) {
1533 if (I.variety() == "GNU" || I.variety() == "CXX11")
1534 return true;
1535 }
1536 return false;
1537}
1538
1539namespace {
1540
1541struct AttributeSubjectMatchRule {
1542 const Record *MetaSubject;
1543 const Record *Constraint;
1544
1545 AttributeSubjectMatchRule(const Record *MetaSubject, const Record *Constraint)
1546 : MetaSubject(MetaSubject), Constraint(Constraint) {
1547 assert(MetaSubject && "Missing subject");
1548 }
1549
1550 bool isSubRule() const { return Constraint != nullptr; }
1551
1552 std::vector<Record *> getSubjects() const {
1553 return (Constraint ? Constraint : MetaSubject)
1554 ->getValueAsListOfDefs("Subjects");
1555 }
1556
1557 std::vector<Record *> getLangOpts() const {
1558 if (Constraint) {
1559 // Lookup the options in the sub-rule first, in case the sub-rule
1560 // overrides the rules options.
1561 std::vector<Record *> Opts = Constraint->getValueAsListOfDefs("LangOpts");
1562 if (!Opts.empty())
1563 return Opts;
1564 }
1565 return MetaSubject->getValueAsListOfDefs("LangOpts");
1566 }
1567
1568 // Abstract rules are used only for sub-rules
1569 bool isAbstractRule() const { return getSubjects().empty(); }
1570
1571 std::string getName() const {
1572 return (Constraint ? Constraint : MetaSubject)->getValueAsString("Name");
1573 }
1574
1575 bool isNegatedSubRule() const {
1576 assert(isSubRule() && "Not a sub-rule");
1577 return Constraint->getValueAsBit("Negated");
1578 }
1579
1580 std::string getSpelling() const {
1581 std::string Result = MetaSubject->getValueAsString("Name");
1582 if (isSubRule()) {
1583 Result += '(';
1584 if (isNegatedSubRule())
1585 Result += "unless(";
1586 Result += getName();
1587 if (isNegatedSubRule())
1588 Result += ')';
1589 Result += ')';
1590 }
1591 return Result;
1592 }
1593
1594 std::string getEnumValueName() const {
Craig Topper00648582017-05-31 19:01:22 +00001595 SmallString<128> Result;
1596 Result += "SubjectMatchRule_";
1597 Result += MetaSubject->getValueAsString("Name");
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001598 if (isSubRule()) {
1599 Result += "_";
1600 if (isNegatedSubRule())
1601 Result += "not_";
1602 Result += Constraint->getValueAsString("Name");
1603 }
1604 if (isAbstractRule())
1605 Result += "_abstract";
Craig Topper00648582017-05-31 19:01:22 +00001606 return Result.str();
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001607 }
1608
1609 std::string getEnumValue() const { return "attr::" + getEnumValueName(); }
1610
1611 static const char *EnumName;
1612};
1613
1614const char *AttributeSubjectMatchRule::EnumName = "attr::SubjectMatchRule";
1615
1616struct PragmaClangAttributeSupport {
1617 std::vector<AttributeSubjectMatchRule> Rules;
Alex Lorenz24952fb2017-04-19 15:52:11 +00001618
1619 class RuleOrAggregateRuleSet {
1620 std::vector<AttributeSubjectMatchRule> Rules;
1621 bool IsRule;
1622 RuleOrAggregateRuleSet(ArrayRef<AttributeSubjectMatchRule> Rules,
1623 bool IsRule)
1624 : Rules(Rules), IsRule(IsRule) {}
1625
1626 public:
1627 bool isRule() const { return IsRule; }
1628
1629 const AttributeSubjectMatchRule &getRule() const {
1630 assert(IsRule && "not a rule!");
1631 return Rules[0];
1632 }
1633
1634 ArrayRef<AttributeSubjectMatchRule> getAggregateRuleSet() const {
1635 return Rules;
1636 }
1637
1638 static RuleOrAggregateRuleSet
1639 getRule(const AttributeSubjectMatchRule &Rule) {
1640 return RuleOrAggregateRuleSet(Rule, /*IsRule=*/true);
1641 }
1642 static RuleOrAggregateRuleSet
1643 getAggregateRuleSet(ArrayRef<AttributeSubjectMatchRule> Rules) {
1644 return RuleOrAggregateRuleSet(Rules, /*IsRule=*/false);
1645 }
1646 };
1647 llvm::DenseMap<const Record *, RuleOrAggregateRuleSet> SubjectsToRules;
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001648
1649 PragmaClangAttributeSupport(RecordKeeper &Records);
1650
1651 bool isAttributedSupported(const Record &Attribute);
1652
1653 void emitMatchRuleList(raw_ostream &OS);
1654
1655 std::string generateStrictConformsTo(const Record &Attr, raw_ostream &OS);
1656
1657 void generateParsingHelpers(raw_ostream &OS);
1658};
1659
1660} // end anonymous namespace
1661
Alex Lorenz24952fb2017-04-19 15:52:11 +00001662static bool doesDeclDeriveFrom(const Record *D, const Record *Base) {
1663 const Record *CurrentBase = D->getValueAsDef("Base");
1664 if (!CurrentBase)
1665 return false;
1666 if (CurrentBase == Base)
1667 return true;
1668 return doesDeclDeriveFrom(CurrentBase, Base);
1669}
1670
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001671PragmaClangAttributeSupport::PragmaClangAttributeSupport(
1672 RecordKeeper &Records) {
1673 std::vector<Record *> MetaSubjects =
1674 Records.getAllDerivedDefinitions("AttrSubjectMatcherRule");
1675 auto MapFromSubjectsToRules = [this](const Record *SubjectContainer,
1676 const Record *MetaSubject,
Saleem Abdulrasoolbe4773c2017-05-01 00:26:59 +00001677 const Record *Constraint) {
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001678 Rules.emplace_back(MetaSubject, Constraint);
1679 std::vector<Record *> ApplicableSubjects =
1680 SubjectContainer->getValueAsListOfDefs("Subjects");
1681 for (const auto *Subject : ApplicableSubjects) {
1682 bool Inserted =
Alex Lorenz24952fb2017-04-19 15:52:11 +00001683 SubjectsToRules
1684 .try_emplace(Subject, RuleOrAggregateRuleSet::getRule(
1685 AttributeSubjectMatchRule(MetaSubject,
1686 Constraint)))
1687 .second;
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001688 if (!Inserted) {
1689 PrintFatalError("Attribute subject match rules should not represent"
1690 "same attribute subjects.");
1691 }
1692 }
1693 };
1694 for (const auto *MetaSubject : MetaSubjects) {
Saleem Abdulrasoolbe4773c2017-05-01 00:26:59 +00001695 MapFromSubjectsToRules(MetaSubject, MetaSubject, /*Constraints=*/nullptr);
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001696 std::vector<Record *> Constraints =
1697 MetaSubject->getValueAsListOfDefs("Constraints");
1698 for (const auto *Constraint : Constraints)
1699 MapFromSubjectsToRules(Constraint, MetaSubject, Constraint);
1700 }
Alex Lorenz24952fb2017-04-19 15:52:11 +00001701
1702 std::vector<Record *> Aggregates =
1703 Records.getAllDerivedDefinitions("AttrSubjectMatcherAggregateRule");
1704 std::vector<Record *> DeclNodes = Records.getAllDerivedDefinitions("DDecl");
1705 for (const auto *Aggregate : Aggregates) {
1706 Record *SubjectDecl = Aggregate->getValueAsDef("Subject");
1707
1708 // Gather sub-classes of the aggregate subject that act as attribute
1709 // subject rules.
1710 std::vector<AttributeSubjectMatchRule> Rules;
1711 for (const auto *D : DeclNodes) {
1712 if (doesDeclDeriveFrom(D, SubjectDecl)) {
1713 auto It = SubjectsToRules.find(D);
1714 if (It == SubjectsToRules.end())
1715 continue;
1716 if (!It->second.isRule() || It->second.getRule().isSubRule())
1717 continue; // Assume that the rule will be included as well.
1718 Rules.push_back(It->second.getRule());
1719 }
1720 }
1721
1722 bool Inserted =
1723 SubjectsToRules
1724 .try_emplace(SubjectDecl,
1725 RuleOrAggregateRuleSet::getAggregateRuleSet(Rules))
1726 .second;
1727 if (!Inserted) {
1728 PrintFatalError("Attribute subject match rules should not represent"
1729 "same attribute subjects.");
1730 }
1731 }
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001732}
1733
1734static PragmaClangAttributeSupport &
1735getPragmaAttributeSupport(RecordKeeper &Records) {
1736 static PragmaClangAttributeSupport Instance(Records);
1737 return Instance;
1738}
1739
1740void PragmaClangAttributeSupport::emitMatchRuleList(raw_ostream &OS) {
1741 OS << "#ifndef ATTR_MATCH_SUB_RULE\n";
1742 OS << "#define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, "
1743 "IsNegated) "
1744 << "ATTR_MATCH_RULE(Value, Spelling, IsAbstract)\n";
1745 OS << "#endif\n";
1746 for (const auto &Rule : Rules) {
1747 OS << (Rule.isSubRule() ? "ATTR_MATCH_SUB_RULE" : "ATTR_MATCH_RULE") << '(';
1748 OS << Rule.getEnumValueName() << ", \"" << Rule.getSpelling() << "\", "
1749 << Rule.isAbstractRule();
1750 if (Rule.isSubRule())
1751 OS << ", "
1752 << AttributeSubjectMatchRule(Rule.MetaSubject, nullptr).getEnumValue()
1753 << ", " << Rule.isNegatedSubRule();
1754 OS << ")\n";
1755 }
1756 OS << "#undef ATTR_MATCH_SUB_RULE\n";
1757}
1758
1759bool PragmaClangAttributeSupport::isAttributedSupported(
1760 const Record &Attribute) {
1761 if (Attribute.getValueAsBit("ForcePragmaAttributeSupport"))
1762 return true;
1763 // Opt-out rules:
1764 // FIXME: The documentation check should be moved before
1765 // the ForcePragmaAttributeSupport check after annotate is documented.
1766 // No documentation present.
1767 if (Attribute.isValueUnset("Documentation"))
1768 return false;
1769 std::vector<Record *> Docs = Attribute.getValueAsListOfDefs("Documentation");
1770 if (Docs.empty())
1771 return false;
1772 if (Docs.size() == 1 && Docs[0]->getName() == "Undocumented")
1773 return false;
1774 // An attribute requires delayed parsing (LateParsed is on)
1775 if (Attribute.getValueAsBit("LateParsed"))
1776 return false;
1777 // An attribute has no GNU/CXX11 spelling
1778 if (!hasGNUorCXX11Spelling(Attribute))
1779 return false;
1780 // An attribute subject list has a subject that isn't covered by one of the
1781 // subject match rules or has no subjects at all.
1782 if (Attribute.isValueUnset("Subjects"))
1783 return false;
1784 const Record *SubjectObj = Attribute.getValueAsDef("Subjects");
1785 std::vector<Record *> Subjects = SubjectObj->getValueAsListOfDefs("Subjects");
1786 if (Subjects.empty())
1787 return false;
1788 for (const auto *Subject : Subjects) {
1789 if (SubjectsToRules.find(Subject) == SubjectsToRules.end())
1790 return false;
1791 }
1792 return true;
1793}
1794
1795std::string
1796PragmaClangAttributeSupport::generateStrictConformsTo(const Record &Attr,
1797 raw_ostream &OS) {
1798 if (!isAttributedSupported(Attr))
1799 return "nullptr";
1800 // Generate a function that constructs a set of matching rules that describe
1801 // to which declarations the attribute should apply to.
1802 std::string FnName = "matchRulesFor" + Attr.getName().str();
1803 std::stringstream SS;
1804 SS << "static void " << FnName << "(llvm::SmallVectorImpl<std::pair<"
1805 << AttributeSubjectMatchRule::EnumName
1806 << ", bool>> &MatchRules, const LangOptions &LangOpts) {\n";
1807 if (Attr.isValueUnset("Subjects")) {
1808 SS << "}\n\n";
1809 OS << SS.str();
1810 return FnName;
1811 }
1812 const Record *SubjectObj = Attr.getValueAsDef("Subjects");
1813 std::vector<Record *> Subjects = SubjectObj->getValueAsListOfDefs("Subjects");
1814 for (const auto *Subject : Subjects) {
1815 auto It = SubjectsToRules.find(Subject);
1816 assert(It != SubjectsToRules.end() &&
1817 "This attribute is unsupported by #pragma clang attribute");
Alex Lorenz24952fb2017-04-19 15:52:11 +00001818 for (const auto &Rule : It->getSecond().getAggregateRuleSet()) {
1819 // The rule might be language specific, so only subtract it from the given
1820 // rules if the specific language options are specified.
1821 std::vector<Record *> LangOpts = Rule.getLangOpts();
1822 SS << " MatchRules.push_back(std::make_pair(" << Rule.getEnumValue()
1823 << ", /*IsSupported=*/";
1824 if (!LangOpts.empty()) {
1825 for (auto I = LangOpts.begin(), E = LangOpts.end(); I != E; ++I) {
1826 std::string Part = (*I)->getValueAsString("Name");
1827 if ((*I)->getValueAsBit("Negated"))
1828 SS << "!";
1829 SS << "LangOpts." + Part;
1830 if (I + 1 != E)
1831 SS << " || ";
1832 }
1833 } else
1834 SS << "true";
1835 SS << "));\n";
1836 }
Alex Lorenz9e7bf162017-04-18 14:33:39 +00001837 }
1838 SS << "}\n\n";
1839 OS << SS.str();
1840 return FnName;
1841}
1842
1843void PragmaClangAttributeSupport::generateParsingHelpers(raw_ostream &OS) {
1844 // Generate routines that check the names of sub-rules.
1845 OS << "Optional<attr::SubjectMatchRule> "
1846 "defaultIsAttributeSubjectMatchSubRuleFor(StringRef, bool) {\n";
1847 OS << " return None;\n";
1848 OS << "}\n\n";
1849
1850 std::map<const Record *, std::vector<AttributeSubjectMatchRule>>
1851 SubMatchRules;
1852 for (const auto &Rule : Rules) {
1853 if (!Rule.isSubRule())
1854 continue;
1855 SubMatchRules[Rule.MetaSubject].push_back(Rule);
1856 }
1857
1858 for (const auto &SubMatchRule : SubMatchRules) {
1859 OS << "Optional<attr::SubjectMatchRule> isAttributeSubjectMatchSubRuleFor_"
1860 << SubMatchRule.first->getValueAsString("Name")
1861 << "(StringRef Name, bool IsUnless) {\n";
1862 OS << " if (IsUnless)\n";
1863 OS << " return "
1864 "llvm::StringSwitch<Optional<attr::SubjectMatchRule>>(Name).\n";
1865 for (const auto &Rule : SubMatchRule.second) {
1866 if (Rule.isNegatedSubRule())
1867 OS << " Case(\"" << Rule.getName() << "\", " << Rule.getEnumValue()
1868 << ").\n";
1869 }
1870 OS << " Default(None);\n";
1871 OS << " return "
1872 "llvm::StringSwitch<Optional<attr::SubjectMatchRule>>(Name).\n";
1873 for (const auto &Rule : SubMatchRule.second) {
1874 if (!Rule.isNegatedSubRule())
1875 OS << " Case(\"" << Rule.getName() << "\", " << Rule.getEnumValue()
1876 << ").\n";
1877 }
1878 OS << " Default(None);\n";
1879 OS << "}\n\n";
1880 }
1881
1882 // Generate the function that checks for the top-level rules.
1883 OS << "std::pair<Optional<attr::SubjectMatchRule>, "
1884 "Optional<attr::SubjectMatchRule> (*)(StringRef, "
1885 "bool)> isAttributeSubjectMatchRule(StringRef Name) {\n";
1886 OS << " return "
1887 "llvm::StringSwitch<std::pair<Optional<attr::SubjectMatchRule>, "
1888 "Optional<attr::SubjectMatchRule> (*) (StringRef, "
1889 "bool)>>(Name).\n";
1890 for (const auto &Rule : Rules) {
1891 if (Rule.isSubRule())
1892 continue;
1893 std::string SubRuleFunction;
1894 if (SubMatchRules.count(Rule.MetaSubject))
1895 SubRuleFunction = "isAttributeSubjectMatchSubRuleFor_" + Rule.getName();
1896 else
1897 SubRuleFunction = "defaultIsAttributeSubjectMatchSubRuleFor";
1898 OS << " Case(\"" << Rule.getName() << "\", std::make_pair("
1899 << Rule.getEnumValue() << ", " << SubRuleFunction << ")).\n";
1900 }
1901 OS << " Default(std::make_pair(None, "
1902 "defaultIsAttributeSubjectMatchSubRuleFor));\n";
1903 OS << "}\n\n";
1904
1905 // Generate the function that checks for the submatch rules.
1906 OS << "const char *validAttributeSubjectMatchSubRules("
1907 << AttributeSubjectMatchRule::EnumName << " Rule) {\n";
1908 OS << " switch (Rule) {\n";
1909 for (const auto &SubMatchRule : SubMatchRules) {
1910 OS << " case "
1911 << AttributeSubjectMatchRule(SubMatchRule.first, nullptr).getEnumValue()
1912 << ":\n";
1913 OS << " return \"'";
1914 bool IsFirst = true;
1915 for (const auto &Rule : SubMatchRule.second) {
1916 if (!IsFirst)
1917 OS << ", '";
1918 IsFirst = false;
1919 if (Rule.isNegatedSubRule())
1920 OS << "unless(";
1921 OS << Rule.getName();
1922 if (Rule.isNegatedSubRule())
1923 OS << ')';
1924 OS << "'";
1925 }
1926 OS << "\";\n";
1927 }
1928 OS << " default: return nullptr;\n";
1929 OS << " }\n";
1930 OS << "}\n\n";
1931}
1932
George Burgess IV1881a572016-12-01 00:13:18 +00001933template <typename Fn>
1934static void forEachUniqueSpelling(const Record &Attr, Fn &&F) {
1935 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attr);
1936 SmallDenseSet<StringRef, 8> Seen;
1937 for (const FlattenedSpelling &S : Spellings) {
1938 if (Seen.insert(S.name()).second)
1939 F(S);
1940 }
1941}
1942
Aaron Ballman35db2b32014-01-29 22:13:45 +00001943/// \brief Emits the first-argument-is-type property for attributes.
1944static void emitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS) {
1945 OS << "#if defined(CLANG_ATTR_TYPE_ARG_LIST)\n";
1946 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
1947
Aaron Ballman2f22b942014-05-20 19:47:14 +00001948 for (const auto *Attr : Attrs) {
Aaron Ballman35db2b32014-01-29 22:13:45 +00001949 // Determine whether the first argument is a type.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001950 std::vector<Record *> Args = Attr->getValueAsListOfDefs("Args");
Aaron Ballman35db2b32014-01-29 22:13:45 +00001951 if (Args.empty())
1952 continue;
1953
Craig Topper25761242016-01-18 19:52:54 +00001954 if (Args[0]->getSuperClasses().back().first->getName() != "TypeArgument")
Aaron Ballman35db2b32014-01-29 22:13:45 +00001955 continue;
1956
1957 // All these spellings take a single type argument.
George Burgess IV1881a572016-12-01 00:13:18 +00001958 forEachUniqueSpelling(*Attr, [&](const FlattenedSpelling &S) {
1959 OS << ".Case(\"" << S.name() << "\", " << "true" << ")\n";
1960 });
Aaron Ballman35db2b32014-01-29 22:13:45 +00001961 }
1962 OS << "#endif // CLANG_ATTR_TYPE_ARG_LIST\n\n";
1963}
1964
1965/// \brief Emits the parse-arguments-in-unevaluated-context property for
1966/// attributes.
1967static void emitClangAttrArgContextList(RecordKeeper &Records, raw_ostream &OS) {
1968 OS << "#if defined(CLANG_ATTR_ARG_CONTEXT_LIST)\n";
1969 ParsedAttrMap Attrs = getParsedAttrList(Records);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00001970 for (const auto &I : Attrs) {
1971 const Record &Attr = *I.second;
Aaron Ballman35db2b32014-01-29 22:13:45 +00001972
1973 if (!Attr.getValueAsBit("ParseArgumentsAsUnevaluated"))
1974 continue;
1975
1976 // All these spellings take are parsed unevaluated.
George Burgess IV1881a572016-12-01 00:13:18 +00001977 forEachUniqueSpelling(Attr, [&](const FlattenedSpelling &S) {
1978 OS << ".Case(\"" << S.name() << "\", " << "true" << ")\n";
1979 });
Aaron Ballman35db2b32014-01-29 22:13:45 +00001980 }
1981 OS << "#endif // CLANG_ATTR_ARG_CONTEXT_LIST\n\n";
1982}
1983
1984static bool isIdentifierArgument(Record *Arg) {
1985 return !Arg->getSuperClasses().empty() &&
Craig Topper25761242016-01-18 19:52:54 +00001986 llvm::StringSwitch<bool>(Arg->getSuperClasses().back().first->getName())
Aaron Ballman35db2b32014-01-29 22:13:45 +00001987 .Case("IdentifierArgument", true)
1988 .Case("EnumArgument", true)
Aaron Ballman55ef1512014-12-19 16:42:04 +00001989 .Case("VariadicEnumArgument", true)
Aaron Ballman35db2b32014-01-29 22:13:45 +00001990 .Default(false);
1991}
1992
1993// Emits the first-argument-is-identifier property for attributes.
1994static void emitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) {
1995 OS << "#if defined(CLANG_ATTR_IDENTIFIER_ARG_LIST)\n";
1996 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
1997
Aaron Ballman2f22b942014-05-20 19:47:14 +00001998 for (const auto *Attr : Attrs) {
Aaron Ballman35db2b32014-01-29 22:13:45 +00001999 // Determine whether the first argument is an identifier.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002000 std::vector<Record *> Args = Attr->getValueAsListOfDefs("Args");
Aaron Ballman35db2b32014-01-29 22:13:45 +00002001 if (Args.empty() || !isIdentifierArgument(Args[0]))
2002 continue;
2003
2004 // All these spellings take an identifier argument.
George Burgess IV1881a572016-12-01 00:13:18 +00002005 forEachUniqueSpelling(*Attr, [&](const FlattenedSpelling &S) {
2006 OS << ".Case(\"" << S.name() << "\", " << "true" << ")\n";
2007 });
Aaron Ballman35db2b32014-01-29 22:13:45 +00002008 }
2009 OS << "#endif // CLANG_ATTR_IDENTIFIER_ARG_LIST\n\n";
2010}
2011
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002012namespace clang {
2013
2014// Emits the class definitions for attributes.
2015void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002016 emitSourceFileHeader("Attribute classes' definitions", OS);
2017
Peter Collingbournebee583f2011-10-06 13:03:08 +00002018 OS << "#ifndef LLVM_CLANG_ATTR_CLASSES_INC\n";
2019 OS << "#define LLVM_CLANG_ATTR_CLASSES_INC\n\n";
2020
2021 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
2022
Aaron Ballman2f22b942014-05-20 19:47:14 +00002023 for (const auto *Attr : Attrs) {
2024 const Record &R = *Attr;
Aaron Ballman06bd44b2014-02-17 18:23:02 +00002025
2026 // FIXME: Currently, documentation is generated as-needed due to the fact
2027 // that there is no way to allow a generated project "reach into" the docs
2028 // directory (for instance, it may be an out-of-tree build). However, we want
2029 // to ensure that every attribute has a Documentation field, and produce an
2030 // error if it has been neglected. Otherwise, the on-demand generation which
2031 // happens server-side will fail. This code is ensuring that functionality,
2032 // even though this Emitter doesn't technically need the documentation.
2033 // When attribute documentation can be generated as part of the build
2034 // itself, this code can be removed.
2035 (void)R.getValueAsListOfDefs("Documentation");
Douglas Gregorb2daf842012-05-02 15:56:52 +00002036
2037 if (!R.getValueAsBit("ASTNode"))
2038 continue;
2039
Craig Topper25761242016-01-18 19:52:54 +00002040 ArrayRef<std::pair<Record *, SMRange>> Supers = R.getSuperClasses();
Aaron Ballman0979e9e2013-07-30 01:44:15 +00002041 assert(!Supers.empty() && "Forgot to specify a superclass for the attr");
Aaron Ballman0979e9e2013-07-30 01:44:15 +00002042 std::string SuperName;
David Majnemerf7e36092016-06-23 00:15:04 +00002043 for (const auto &Super : llvm::reverse(Supers)) {
Craig Topper25761242016-01-18 19:52:54 +00002044 const Record *R = Super.first;
2045 if (R->getName() != "TargetSpecificAttr" && SuperName.empty())
2046 SuperName = R->getName();
Aaron Ballman0979e9e2013-07-30 01:44:15 +00002047 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00002048
2049 OS << "class " << R.getName() << "Attr : public " << SuperName << " {\n";
2050
2051 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002052 std::vector<std::unique_ptr<Argument>> Args;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002053 Args.reserve(ArgRecords.size());
2054
John McCalla62c1a92015-10-28 00:17:34 +00002055 bool HasOptArg = false;
2056 bool HasFakeArg = false;
Aaron Ballman2f22b942014-05-20 19:47:14 +00002057 for (const auto *ArgRecord : ArgRecords) {
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002058 Args.emplace_back(createArgument(*ArgRecord, R.getName()));
2059 Args.back()->writeDeclarations(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002060 OS << "\n\n";
John McCalla62c1a92015-10-28 00:17:34 +00002061
2062 // For these purposes, fake takes priority over optional.
2063 if (Args.back()->isFake()) {
2064 HasFakeArg = true;
2065 } else if (Args.back()->isOptional()) {
2066 HasOptArg = true;
2067 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00002068 }
2069
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002070 OS << "public:\n";
Aaron Ballman36a53502014-01-16 13:03:14 +00002071
Aaron Ballmanc669cc02014-01-27 22:10:04 +00002072 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballman36a53502014-01-16 13:03:14 +00002073
2074 // If there are zero or one spellings, all spelling-related functionality
2075 // can be elided. If all of the spellings share the same name, the spelling
2076 // functionality can also be elided.
2077 bool ElideSpelling = (Spellings.size() <= 1) ||
2078 SpellingNamesAreCommon(Spellings);
2079
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002080 // This maps spelling index values to semantic Spelling enumerants.
2081 SemanticSpellingMap SemanticToSyntacticMap;
Aaron Ballman36a53502014-01-16 13:03:14 +00002082
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002083 if (!ElideSpelling)
2084 OS << CreateSemanticSpellings(Spellings, SemanticToSyntacticMap);
Aaron Ballman36a53502014-01-16 13:03:14 +00002085
John McCalla62c1a92015-10-28 00:17:34 +00002086 // Emit CreateImplicit factory methods.
2087 auto emitCreateImplicit = [&](bool emitFake) {
2088 OS << " static " << R.getName() << "Attr *CreateImplicit(";
2089 OS << "ASTContext &Ctx";
2090 if (!ElideSpelling)
2091 OS << ", Spelling S";
2092 for (auto const &ai : Args) {
2093 if (ai->isFake() && !emitFake) continue;
2094 OS << ", ";
2095 ai->writeCtorParameters(OS);
2096 }
2097 OS << ", SourceRange Loc = SourceRange()";
2098 OS << ") {\n";
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002099 OS << " auto *A = new (Ctx) " << R.getName();
John McCalla62c1a92015-10-28 00:17:34 +00002100 OS << "Attr(Loc, Ctx, ";
2101 for (auto const &ai : Args) {
2102 if (ai->isFake() && !emitFake) continue;
2103 ai->writeImplicitCtorArgs(OS);
2104 OS << ", ";
2105 }
2106 OS << (ElideSpelling ? "0" : "S") << ");\n";
2107 OS << " A->setImplicit(true);\n";
2108 OS << " return A;\n }\n\n";
2109 };
Aaron Ballman36a53502014-01-16 13:03:14 +00002110
John McCalla62c1a92015-10-28 00:17:34 +00002111 // Emit a CreateImplicit that takes all the arguments.
2112 emitCreateImplicit(true);
2113
2114 // Emit a CreateImplicit that takes all the non-fake arguments.
2115 if (HasFakeArg) {
2116 emitCreateImplicit(false);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002117 }
Michael Han99315932013-01-24 16:46:58 +00002118
John McCalla62c1a92015-10-28 00:17:34 +00002119 // Emit constructors.
2120 auto emitCtor = [&](bool emitOpt, bool emitFake) {
2121 auto shouldEmitArg = [=](const std::unique_ptr<Argument> &arg) {
2122 if (arg->isFake()) return emitFake;
2123 if (arg->isOptional()) return emitOpt;
2124 return true;
2125 };
Michael Han99315932013-01-24 16:46:58 +00002126
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002127 OS << " " << R.getName() << "Attr(SourceRange R, ASTContext &Ctx\n";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002128 for (auto const &ai : Args) {
John McCalla62c1a92015-10-28 00:17:34 +00002129 if (!shouldEmitArg(ai)) continue;
2130 OS << " , ";
2131 ai->writeCtorParameters(OS);
2132 OS << "\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002133 }
2134
2135 OS << " , ";
Aaron Ballman36a53502014-01-16 13:03:14 +00002136 OS << "unsigned SI\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002137
2138 OS << " )\n";
Benjamin Kramer845e32c2015-03-19 16:06:49 +00002139 OS << " : " << SuperName << "(attr::" << R.getName() << ", R, SI, "
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002140 << ( R.getValueAsBit("LateParsed") ? "true" : "false" ) << ", "
2141 << ( R.getValueAsBit("DuplicatesAllowedWhileMerging") ? "true" : "false" ) << ")\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002142
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002143 for (auto const &ai : Args) {
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002144 OS << " , ";
John McCalla62c1a92015-10-28 00:17:34 +00002145 if (!shouldEmitArg(ai)) {
2146 ai->writeCtorDefaultInitializers(OS);
2147 } else {
2148 ai->writeCtorInitializers(OS);
2149 }
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002150 OS << "\n";
2151 }
2152
2153 OS << " {\n";
2154
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002155 for (auto const &ai : Args) {
John McCalla62c1a92015-10-28 00:17:34 +00002156 if (!shouldEmitArg(ai)) continue;
2157 ai->writeCtorBody(OS);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002158 }
2159 OS << " }\n\n";
John McCalla62c1a92015-10-28 00:17:34 +00002160 };
2161
2162 // Emit a constructor that includes all the arguments.
2163 // This is necessary for cloning.
2164 emitCtor(true, true);
2165
2166 // Emit a constructor that takes all the non-fake arguments.
2167 if (HasFakeArg) {
2168 emitCtor(true, false);
2169 }
2170
2171 // Emit a constructor that takes all the non-fake, non-optional arguments.
2172 if (HasOptArg) {
2173 emitCtor(false, false);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002174 }
2175
Benjamin Kramer845e32c2015-03-19 16:06:49 +00002176 OS << " " << R.getName() << "Attr *clone(ASTContext &C) const;\n";
Craig Toppercbce6e92014-03-11 06:22:39 +00002177 OS << " void printPretty(raw_ostream &OS,\n"
Benjamin Kramer845e32c2015-03-19 16:06:49 +00002178 << " const PrintingPolicy &Policy) const;\n";
2179 OS << " const char *getSpelling() const;\n";
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00002180
2181 if (!ElideSpelling) {
2182 assert(!SemanticToSyntacticMap.empty() && "Empty semantic mapping list");
2183 OS << " Spelling getSemanticSpelling() const {\n";
2184 WriteSemanticSpellingSwitch("SpellingListIndex", SemanticToSyntacticMap,
2185 OS);
2186 OS << " }\n";
2187 }
Peter Collingbournebee583f2011-10-06 13:03:08 +00002188
Michael Hanaf02bbe2013-02-01 01:19:17 +00002189 writeAttrAccessorDefinition(R, OS);
2190
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002191 for (auto const &ai : Args) {
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002192 ai->writeAccessors(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002193 OS << "\n\n";
Aaron Ballman682ee422013-09-11 19:47:58 +00002194
John McCalla62c1a92015-10-28 00:17:34 +00002195 // Don't write conversion routines for fake arguments.
2196 if (ai->isFake()) continue;
2197
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002198 if (ai->isEnumArg())
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002199 static_cast<const EnumArgument *>(ai.get())->writeConversion(OS);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002200 else if (ai->isVariadicEnumArg())
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002201 static_cast<const VariadicEnumArgument *>(ai.get())
2202 ->writeConversion(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002203 }
2204
Jakob Stoklund Olesen6f2288b62012-01-13 04:57:47 +00002205 OS << R.getValueAsString("AdditionalMembers");
Peter Collingbournebee583f2011-10-06 13:03:08 +00002206 OS << "\n\n";
2207
2208 OS << " static bool classof(const Attr *A) { return A->getKind() == "
2209 << "attr::" << R.getName() << "; }\n";
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00002210
Peter Collingbournebee583f2011-10-06 13:03:08 +00002211 OS << "};\n\n";
2212 }
2213
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002214 OS << "#endif // LLVM_CLANG_ATTR_CLASSES_INC\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002215}
2216
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002217// Emits the class method definitions for attributes.
2218void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002219 emitSourceFileHeader("Attribute classes' member function definitions", OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002220
2221 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
Peter Collingbournebee583f2011-10-06 13:03:08 +00002222
Aaron Ballman2f22b942014-05-20 19:47:14 +00002223 for (auto *Attr : Attrs) {
2224 Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00002225
2226 if (!R.getValueAsBit("ASTNode"))
2227 continue;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002228
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002229 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
2230 std::vector<std::unique_ptr<Argument>> Args;
Aaron Ballman2f22b942014-05-20 19:47:14 +00002231 for (const auto *Arg : ArgRecords)
2232 Args.emplace_back(createArgument(*Arg, R.getName()));
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002233
2234 for (auto const &ai : Args)
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002235 ai->writeAccessorDefinitions(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002236
2237 OS << R.getName() << "Attr *" << R.getName()
2238 << "Attr::clone(ASTContext &C) const {\n";
Hans Wennborg613807b2014-05-31 01:30:30 +00002239 OS << " auto *A = new (C) " << R.getName() << "Attr(getLocation(), C";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002240 for (auto const &ai : Args) {
Peter Collingbournebee583f2011-10-06 13:03:08 +00002241 OS << ", ";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002242 ai->writeCloneArgs(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002243 }
Hans Wennborg613807b2014-05-31 01:30:30 +00002244 OS << ", getSpellingListIndex());\n";
2245 OS << " A->Inherited = Inherited;\n";
2246 OS << " A->IsPackExpansion = IsPackExpansion;\n";
2247 OS << " A->Implicit = Implicit;\n";
2248 OS << " return A;\n}\n\n";
Douglas Gregor49ccfaa2011-11-19 19:22:57 +00002249
Michael Han99315932013-01-24 16:46:58 +00002250 writePrettyPrintFunction(R, Args, OS);
Aaron Ballman3e424b52013-12-26 18:30:57 +00002251 writeGetSpellingFunction(R, OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002252 }
Benjamin Kramer845e32c2015-03-19 16:06:49 +00002253
2254 // Instead of relying on virtual dispatch we just create a huge dispatch
2255 // switch. This is both smaller and faster than virtual functions.
2256 auto EmitFunc = [&](const char *Method) {
2257 OS << " switch (getKind()) {\n";
2258 for (const auto *Attr : Attrs) {
2259 const Record &R = *Attr;
2260 if (!R.getValueAsBit("ASTNode"))
2261 continue;
2262
2263 OS << " case attr::" << R.getName() << ":\n";
2264 OS << " return cast<" << R.getName() << "Attr>(this)->" << Method
2265 << ";\n";
2266 }
Benjamin Kramer845e32c2015-03-19 16:06:49 +00002267 OS << " }\n";
2268 OS << " llvm_unreachable(\"Unexpected attribute kind!\");\n";
2269 OS << "}\n\n";
2270 };
2271
2272 OS << "const char *Attr::getSpelling() const {\n";
2273 EmitFunc("getSpelling()");
2274
2275 OS << "Attr *Attr::clone(ASTContext &C) const {\n";
2276 EmitFunc("clone(C)");
2277
2278 OS << "void Attr::printPretty(raw_ostream &OS, "
2279 "const PrintingPolicy &Policy) const {\n";
2280 EmitFunc("printPretty(OS, Policy)");
Peter Collingbournebee583f2011-10-06 13:03:08 +00002281}
2282
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002283} // end namespace clang
2284
John McCall2225c8b2016-03-01 00:18:05 +00002285static void emitAttrList(raw_ostream &OS, StringRef Class,
Peter Collingbournebee583f2011-10-06 13:03:08 +00002286 const std::vector<Record*> &AttrList) {
John McCall2225c8b2016-03-01 00:18:05 +00002287 for (auto Cur : AttrList) {
2288 OS << Class << "(" << Cur->getName() << ")\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002289 }
2290}
2291
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002292// Determines if an attribute has a Pragma spelling.
2293static bool AttrHasPragmaSpelling(const Record *R) {
2294 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*R);
George Burgess IV1881a572016-12-01 00:13:18 +00002295 return llvm::find_if(Spellings, [](const FlattenedSpelling &S) {
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002296 return S.variety() == "Pragma";
2297 }) != Spellings.end();
2298}
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002299
John McCall2225c8b2016-03-01 00:18:05 +00002300namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002301
John McCall2225c8b2016-03-01 00:18:05 +00002302 struct AttrClassDescriptor {
2303 const char * const MacroName;
2304 const char * const TableGenName;
2305 };
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002306
2307} // end anonymous namespace
John McCall2225c8b2016-03-01 00:18:05 +00002308
2309static const AttrClassDescriptor AttrClassDescriptors[] = {
2310 { "ATTR", "Attr" },
Richard Smith4f902c72016-03-08 00:32:55 +00002311 { "STMT_ATTR", "StmtAttr" },
John McCall2225c8b2016-03-01 00:18:05 +00002312 { "INHERITABLE_ATTR", "InheritableAttr" },
John McCall477f2bb2016-03-03 06:39:32 +00002313 { "INHERITABLE_PARAM_ATTR", "InheritableParamAttr" },
2314 { "PARAMETER_ABI_ATTR", "ParameterABIAttr" }
John McCall2225c8b2016-03-01 00:18:05 +00002315};
2316
2317static void emitDefaultDefine(raw_ostream &OS, StringRef name,
2318 const char *superName) {
2319 OS << "#ifndef " << name << "\n";
2320 OS << "#define " << name << "(NAME) ";
2321 if (superName) OS << superName << "(NAME)";
2322 OS << "\n#endif\n\n";
2323}
2324
2325namespace {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002326
John McCall2225c8b2016-03-01 00:18:05 +00002327 /// A class of attributes.
2328 struct AttrClass {
2329 const AttrClassDescriptor &Descriptor;
2330 Record *TheRecord;
2331 AttrClass *SuperClass = nullptr;
2332 std::vector<AttrClass*> SubClasses;
2333 std::vector<Record*> Attrs;
2334
2335 AttrClass(const AttrClassDescriptor &Descriptor, Record *R)
2336 : Descriptor(Descriptor), TheRecord(R) {}
2337
2338 void emitDefaultDefines(raw_ostream &OS) const {
2339 // Default the macro unless this is a root class (i.e. Attr).
2340 if (SuperClass) {
2341 emitDefaultDefine(OS, Descriptor.MacroName,
2342 SuperClass->Descriptor.MacroName);
2343 }
2344 }
2345
2346 void emitUndefs(raw_ostream &OS) const {
2347 OS << "#undef " << Descriptor.MacroName << "\n";
2348 }
2349
2350 void emitAttrList(raw_ostream &OS) const {
2351 for (auto SubClass : SubClasses) {
2352 SubClass->emitAttrList(OS);
2353 }
2354
2355 ::emitAttrList(OS, Descriptor.MacroName, Attrs);
2356 }
2357
2358 void classifyAttrOnRoot(Record *Attr) {
2359 bool result = classifyAttr(Attr);
2360 assert(result && "failed to classify on root"); (void) result;
2361 }
2362
2363 void emitAttrRange(raw_ostream &OS) const {
2364 OS << "ATTR_RANGE(" << Descriptor.TableGenName
2365 << ", " << getFirstAttr()->getName()
2366 << ", " << getLastAttr()->getName() << ")\n";
2367 }
2368
2369 private:
2370 bool classifyAttr(Record *Attr) {
2371 // Check all the subclasses.
2372 for (auto SubClass : SubClasses) {
2373 if (SubClass->classifyAttr(Attr))
2374 return true;
2375 }
2376
2377 // It's not more specific than this class, but it might still belong here.
2378 if (Attr->isSubClassOf(TheRecord)) {
2379 Attrs.push_back(Attr);
2380 return true;
2381 }
2382
2383 return false;
2384 }
2385
2386 Record *getFirstAttr() const {
2387 if (!SubClasses.empty())
2388 return SubClasses.front()->getFirstAttr();
2389 return Attrs.front();
2390 }
2391
2392 Record *getLastAttr() const {
2393 if (!Attrs.empty())
2394 return Attrs.back();
2395 return SubClasses.back()->getLastAttr();
2396 }
2397 };
2398
2399 /// The entire hierarchy of attribute classes.
2400 class AttrClassHierarchy {
2401 std::vector<std::unique_ptr<AttrClass>> Classes;
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002402
John McCall2225c8b2016-03-01 00:18:05 +00002403 public:
2404 AttrClassHierarchy(RecordKeeper &Records) {
2405 // Find records for all the classes.
2406 for (auto &Descriptor : AttrClassDescriptors) {
2407 Record *ClassRecord = Records.getClass(Descriptor.TableGenName);
2408 AttrClass *Class = new AttrClass(Descriptor, ClassRecord);
2409 Classes.emplace_back(Class);
2410 }
2411
2412 // Link up the hierarchy.
2413 for (auto &Class : Classes) {
2414 if (AttrClass *SuperClass = findSuperClass(Class->TheRecord)) {
2415 Class->SuperClass = SuperClass;
2416 SuperClass->SubClasses.push_back(Class.get());
2417 }
2418 }
2419
2420#ifndef NDEBUG
2421 for (auto i = Classes.begin(), e = Classes.end(); i != e; ++i) {
2422 assert((i == Classes.begin()) == ((*i)->SuperClass == nullptr) &&
2423 "only the first class should be a root class!");
2424 }
2425#endif
2426 }
2427
2428 void emitDefaultDefines(raw_ostream &OS) const {
2429 for (auto &Class : Classes) {
2430 Class->emitDefaultDefines(OS);
2431 }
2432 }
2433
2434 void emitUndefs(raw_ostream &OS) const {
2435 for (auto &Class : Classes) {
2436 Class->emitUndefs(OS);
2437 }
2438 }
2439
2440 void emitAttrLists(raw_ostream &OS) const {
2441 // Just start from the root class.
2442 Classes[0]->emitAttrList(OS);
2443 }
2444
2445 void emitAttrRanges(raw_ostream &OS) const {
2446 for (auto &Class : Classes)
2447 Class->emitAttrRange(OS);
2448 }
2449
2450 void classifyAttr(Record *Attr) {
2451 // Add the attribute to the root class.
2452 Classes[0]->classifyAttrOnRoot(Attr);
2453 }
2454
2455 private:
2456 AttrClass *findClassByRecord(Record *R) const {
2457 for (auto &Class : Classes) {
2458 if (Class->TheRecord == R)
2459 return Class.get();
2460 }
2461 return nullptr;
2462 }
2463
2464 AttrClass *findSuperClass(Record *R) const {
2465 // TableGen flattens the superclass list, so we just need to walk it
2466 // in reverse.
2467 auto SuperClasses = R->getSuperClasses();
2468 for (signed i = 0, e = SuperClasses.size(); i != e; ++i) {
2469 auto SuperClass = findClassByRecord(SuperClasses[e - i - 1].first);
2470 if (SuperClass) return SuperClass;
2471 }
2472 return nullptr;
2473 }
2474 };
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002475
2476} // end anonymous namespace
John McCall2225c8b2016-03-01 00:18:05 +00002477
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002478namespace clang {
Eugene Zelenkoa9f3e902016-05-12 22:27:08 +00002479
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002480// Emits the enumeration list for attributes.
2481void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002482 emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002483
John McCall2225c8b2016-03-01 00:18:05 +00002484 AttrClassHierarchy Hierarchy(Records);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002485
John McCall2225c8b2016-03-01 00:18:05 +00002486 // Add defaulting macro definitions.
2487 Hierarchy.emitDefaultDefines(OS);
2488 emitDefaultDefine(OS, "PRAGMA_SPELLING_ATTR", nullptr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002489
John McCall2225c8b2016-03-01 00:18:05 +00002490 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
2491 std::vector<Record *> PragmaAttrs;
Aaron Ballman2f22b942014-05-20 19:47:14 +00002492 for (auto *Attr : Attrs) {
2493 if (!Attr->getValueAsBit("ASTNode"))
Douglas Gregorb2daf842012-05-02 15:56:52 +00002494 continue;
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002495
John McCall2225c8b2016-03-01 00:18:05 +00002496 // Add the attribute to the ad-hoc groups.
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002497 if (AttrHasPragmaSpelling(Attr))
2498 PragmaAttrs.push_back(Attr);
2499
John McCall2225c8b2016-03-01 00:18:05 +00002500 // Place it in the hierarchy.
2501 Hierarchy.classifyAttr(Attr);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002502 }
2503
John McCall2225c8b2016-03-01 00:18:05 +00002504 // Emit the main attribute list.
2505 Hierarchy.emitAttrLists(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002506
John McCall2225c8b2016-03-01 00:18:05 +00002507 // Emit the ad hoc groups.
2508 emitAttrList(OS, "PRAGMA_SPELLING_ATTR", PragmaAttrs);
2509
2510 // Emit the attribute ranges.
2511 OS << "#ifdef ATTR_RANGE\n";
2512 Hierarchy.emitAttrRanges(OS);
2513 OS << "#undef ATTR_RANGE\n";
2514 OS << "#endif\n";
2515
2516 Hierarchy.emitUndefs(OS);
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002517 OS << "#undef PRAGMA_SPELLING_ATTR\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002518}
2519
Alex Lorenz9e7bf162017-04-18 14:33:39 +00002520// Emits the enumeration list for attributes.
2521void EmitClangAttrSubjectMatchRuleList(RecordKeeper &Records, raw_ostream &OS) {
2522 emitSourceFileHeader(
2523 "List of all attribute subject matching rules that Clang recognizes", OS);
2524 PragmaClangAttributeSupport &PragmaAttributeSupport =
2525 getPragmaAttributeSupport(Records);
2526 emitDefaultDefine(OS, "ATTR_MATCH_RULE", nullptr);
2527 PragmaAttributeSupport.emitMatchRuleList(OS);
2528 OS << "#undef ATTR_MATCH_RULE\n";
2529}
2530
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002531// Emits the code to read an attribute from a precompiled header.
2532void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002533 emitSourceFileHeader("Attribute deserialization code", OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002534
2535 Record *InhClass = Records.getClass("InheritableAttr");
2536 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"),
2537 ArgRecords;
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002538 std::vector<std::unique_ptr<Argument>> Args;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002539
2540 OS << " switch (Kind) {\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00002541 for (const auto *Attr : Attrs) {
2542 const Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00002543 if (!R.getValueAsBit("ASTNode"))
2544 continue;
2545
Peter Collingbournebee583f2011-10-06 13:03:08 +00002546 OS << " case attr::" << R.getName() << ": {\n";
2547 if (R.isSubClassOf(InhClass))
David L. Jones267b8842017-01-24 01:04:30 +00002548 OS << " bool isInherited = Record.readInt();\n";
2549 OS << " bool isImplicit = Record.readInt();\n";
2550 OS << " unsigned Spelling = Record.readInt();\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002551 ArgRecords = R.getValueAsListOfDefs("Args");
2552 Args.clear();
Aaron Ballman2f22b942014-05-20 19:47:14 +00002553 for (const auto *Arg : ArgRecords) {
2554 Args.emplace_back(createArgument(*Arg, R.getName()));
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002555 Args.back()->writePCHReadDecls(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002556 }
2557 OS << " New = new (Context) " << R.getName() << "Attr(Range, Context";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002558 for (auto const &ri : Args) {
Peter Collingbournebee583f2011-10-06 13:03:08 +00002559 OS << ", ";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002560 ri->writePCHReadArgs(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002561 }
Aaron Ballman36a53502014-01-16 13:03:14 +00002562 OS << ", Spelling);\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002563 if (R.isSubClassOf(InhClass))
2564 OS << " cast<InheritableAttr>(New)->setInherited(isInherited);\n";
Aaron Ballman36a53502014-01-16 13:03:14 +00002565 OS << " New->setImplicit(isImplicit);\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002566 OS << " break;\n";
2567 OS << " }\n";
2568 }
2569 OS << " }\n";
2570}
2571
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00002572// Emits the code to write an attribute to a precompiled header.
2573void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002574 emitSourceFileHeader("Attribute serialization code", OS);
2575
Peter Collingbournebee583f2011-10-06 13:03:08 +00002576 Record *InhClass = Records.getClass("InheritableAttr");
2577 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), Args;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002578
2579 OS << " switch (A->getKind()) {\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00002580 for (const auto *Attr : Attrs) {
2581 const Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00002582 if (!R.getValueAsBit("ASTNode"))
2583 continue;
Peter Collingbournebee583f2011-10-06 13:03:08 +00002584 OS << " case attr::" << R.getName() << ": {\n";
2585 Args = R.getValueAsListOfDefs("Args");
2586 if (R.isSubClassOf(InhClass) || !Args.empty())
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002587 OS << " const auto *SA = cast<" << R.getName()
Peter Collingbournebee583f2011-10-06 13:03:08 +00002588 << "Attr>(A);\n";
2589 if (R.isSubClassOf(InhClass))
2590 OS << " Record.push_back(SA->isInherited());\n";
Aaron Ballman36a53502014-01-16 13:03:14 +00002591 OS << " Record.push_back(A->isImplicit());\n";
2592 OS << " Record.push_back(A->getSpellingListIndex());\n";
2593
Aaron Ballman2f22b942014-05-20 19:47:14 +00002594 for (const auto *Arg : Args)
2595 createArgument(*Arg, R.getName())->writePCHWrite(OS);
Peter Collingbournebee583f2011-10-06 13:03:08 +00002596 OS << " break;\n";
2597 OS << " }\n";
2598 }
2599 OS << " }\n";
2600}
2601
Bob Wilson0058b822015-07-20 22:57:36 +00002602// Generate a conditional expression to check if the current target satisfies
2603// the conditions for a TargetSpecificAttr record, and append the code for
2604// those checks to the Test string. If the FnName string pointer is non-null,
2605// append a unique suffix to distinguish this set of target checks from other
2606// TargetSpecificAttr records.
2607static void GenerateTargetSpecificAttrChecks(const Record *R,
Craig Topper00648582017-05-31 19:01:22 +00002608 std::vector<StringRef> &Arches,
Bob Wilson0058b822015-07-20 22:57:36 +00002609 std::string &Test,
2610 std::string *FnName) {
2611 // It is assumed that there will be an llvm::Triple object
2612 // named "T" and a TargetInfo object named "Target" within
2613 // scope that can be used to determine whether the attribute exists in
2614 // a given target.
2615 Test += "(";
2616
2617 for (auto I = Arches.begin(), E = Arches.end(); I != E; ++I) {
Craig Topper00648582017-05-31 19:01:22 +00002618 StringRef Part = *I;
2619 Test += "T.getArch() == llvm::Triple::";
2620 Test += Part;
Bob Wilson0058b822015-07-20 22:57:36 +00002621 if (I + 1 != E)
2622 Test += " || ";
2623 if (FnName)
2624 *FnName += Part;
2625 }
2626 Test += ")";
2627
2628 // If the attribute is specific to particular OSes, check those.
2629 if (!R->isValueUnset("OSes")) {
2630 // We know that there was at least one arch test, so we need to and in the
2631 // OS tests.
2632 Test += " && (";
Craig Topper00648582017-05-31 19:01:22 +00002633 std::vector<StringRef> OSes = R->getValueAsListOfStrings("OSes");
Bob Wilson0058b822015-07-20 22:57:36 +00002634 for (auto I = OSes.begin(), E = OSes.end(); I != E; ++I) {
Craig Topper00648582017-05-31 19:01:22 +00002635 StringRef Part = *I;
Bob Wilson0058b822015-07-20 22:57:36 +00002636
Craig Topper00648582017-05-31 19:01:22 +00002637 Test += "T.getOS() == llvm::Triple::";
2638 Test += Part;
Bob Wilson0058b822015-07-20 22:57:36 +00002639 if (I + 1 != E)
2640 Test += " || ";
2641 if (FnName)
2642 *FnName += Part;
2643 }
2644 Test += ")";
2645 }
2646
2647 // If one or more CXX ABIs are specified, check those as well.
2648 if (!R->isValueUnset("CXXABIs")) {
2649 Test += " && (";
Craig Topper00648582017-05-31 19:01:22 +00002650 std::vector<StringRef> CXXABIs = R->getValueAsListOfStrings("CXXABIs");
Bob Wilson0058b822015-07-20 22:57:36 +00002651 for (auto I = CXXABIs.begin(), E = CXXABIs.end(); I != E; ++I) {
Craig Topper00648582017-05-31 19:01:22 +00002652 StringRef Part = *I;
2653 Test += "Target.getCXXABI().getKind() == TargetCXXABI::";
2654 Test += Part;
Bob Wilson0058b822015-07-20 22:57:36 +00002655 if (I + 1 != E)
2656 Test += " || ";
2657 if (FnName)
2658 *FnName += Part;
2659 }
2660 Test += ")";
2661 }
2662}
2663
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002664static void GenerateHasAttrSpellingStringSwitch(
2665 const std::vector<Record *> &Attrs, raw_ostream &OS,
2666 const std::string &Variety = "", const std::string &Scope = "") {
2667 for (const auto *Attr : Attrs) {
Aaron Ballmana0344c52014-11-14 13:44:02 +00002668 // C++11-style attributes have specific version information associated with
2669 // them. If the attribute has no scope, the version information must not
2670 // have the default value (1), as that's incorrect. Instead, the unscoped
2671 // attribute version information should be taken from the SD-6 standing
2672 // document, which can be found at:
2673 // https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations
2674 int Version = 1;
2675
2676 if (Variety == "CXX11") {
2677 std::vector<Record *> Spellings = Attr->getValueAsListOfDefs("Spellings");
2678 for (const auto &Spelling : Spellings) {
2679 if (Spelling->getValueAsString("Variety") == "CXX11") {
2680 Version = static_cast<int>(Spelling->getValueAsInt("Version"));
2681 if (Scope.empty() && Version == 1)
2682 PrintError(Spelling->getLoc(), "C++ standard attributes must "
2683 "have valid version information.");
2684 break;
2685 }
2686 }
2687 }
2688
Aaron Ballman0fa06d82014-01-09 22:57:44 +00002689 std::string Test;
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002690 if (Attr->isSubClassOf("TargetSpecificAttr")) {
2691 const Record *R = Attr->getValueAsDef("Target");
Craig Topper00648582017-05-31 19:01:22 +00002692 std::vector<StringRef> Arches = R->getValueAsListOfStrings("Arches");
Hans Wennborgdcfba332015-10-06 23:40:43 +00002693 GenerateTargetSpecificAttrChecks(R, Arches, Test, nullptr);
Bob Wilson7c730832015-07-20 22:57:31 +00002694
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002695 // If this is the C++11 variety, also add in the LangOpts test.
2696 if (Variety == "CXX11")
2697 Test += " && LangOpts.CPlusPlus11";
2698 } else if (Variety == "CXX11")
2699 // C++11 mode should be checked against LangOpts, which is presumed to be
2700 // present in the caller.
2701 Test = "LangOpts.CPlusPlus11";
Aaron Ballman0fa06d82014-01-09 22:57:44 +00002702
Aaron Ballmana0344c52014-11-14 13:44:02 +00002703 std::string TestStr =
Aaron Ballman28afa182014-11-17 18:17:19 +00002704 !Test.empty() ? Test + " ? " + llvm::itostr(Version) + " : 0" : "1";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002705 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Attr);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002706 for (const auto &S : Spellings)
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002707 if (Variety.empty() || (Variety == S.variety() &&
2708 (Scope.empty() || Scope == S.nameSpace())))
Aaron Ballmana0344c52014-11-14 13:44:02 +00002709 OS << " .Case(\"" << S.name() << "\", " << TestStr << ")\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002710 }
Aaron Ballmana0344c52014-11-14 13:44:02 +00002711 OS << " .Default(0);\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002712}
2713
2714// Emits the list of spellings for attributes.
2715void EmitClangAttrHasAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
2716 emitSourceFileHeader("Code to implement the __has_attribute logic", OS);
2717
2718 // Separate all of the attributes out into four group: generic, C++11, GNU,
2719 // and declspecs. Then generate a big switch statement for each of them.
2720 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Nico Weber20e08042016-09-03 02:55:10 +00002721 std::vector<Record *> Declspec, Microsoft, GNU, Pragma;
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002722 std::map<std::string, std::vector<Record *>> CXX;
2723
2724 // Walk over the list of all attributes, and split them out based on the
2725 // spelling variety.
2726 for (auto *R : Attrs) {
2727 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*R);
2728 for (const auto &SI : Spellings) {
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00002729 const std::string &Variety = SI.variety();
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002730 if (Variety == "GNU")
2731 GNU.push_back(R);
2732 else if (Variety == "Declspec")
2733 Declspec.push_back(R);
Nico Weber20e08042016-09-03 02:55:10 +00002734 else if (Variety == "Microsoft")
2735 Microsoft.push_back(R);
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002736 else if (Variety == "CXX11")
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002737 CXX[SI.nameSpace()].push_back(R);
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002738 else if (Variety == "Pragma")
2739 Pragma.push_back(R);
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002740 }
2741 }
2742
Bob Wilson7c730832015-07-20 22:57:31 +00002743 OS << "const llvm::Triple &T = Target.getTriple();\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002744 OS << "switch (Syntax) {\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002745 OS << "case AttrSyntax::GNU:\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002746 OS << " return llvm::StringSwitch<int>(Name)\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002747 GenerateHasAttrSpellingStringSwitch(GNU, OS, "GNU");
2748 OS << "case AttrSyntax::Declspec:\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002749 OS << " return llvm::StringSwitch<int>(Name)\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002750 GenerateHasAttrSpellingStringSwitch(Declspec, OS, "Declspec");
Nico Weber20e08042016-09-03 02:55:10 +00002751 OS << "case AttrSyntax::Microsoft:\n";
2752 OS << " return llvm::StringSwitch<int>(Name)\n";
2753 GenerateHasAttrSpellingStringSwitch(Microsoft, OS, "Microsoft");
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002754 OS << "case AttrSyntax::Pragma:\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002755 OS << " return llvm::StringSwitch<int>(Name)\n";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002756 GenerateHasAttrSpellingStringSwitch(Pragma, OS, "Pragma");
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002757 OS << "case AttrSyntax::CXX: {\n";
2758 // C++11-style attributes are further split out based on the Scope.
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002759 for (auto I = CXX.cbegin(), E = CXX.cend(); I != E; ++I) {
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002760 if (I != CXX.begin())
2761 OS << " else ";
2762 if (I->first.empty())
2763 OS << "if (!Scope || Scope->getName() == \"\") {\n";
2764 else
2765 OS << "if (Scope->getName() == \"" << I->first << "\") {\n";
Aaron Ballmana0344c52014-11-14 13:44:02 +00002766 OS << " return llvm::StringSwitch<int>(Name)\n";
Aaron Ballman2fbf9942014-03-31 13:14:44 +00002767 GenerateHasAttrSpellingStringSwitch(I->second, OS, "CXX11", I->first);
2768 OS << "}";
2769 }
2770 OS << "\n}\n";
2771 OS << "}\n";
Peter Collingbournebee583f2011-10-06 13:03:08 +00002772}
2773
Michael Han99315932013-01-24 16:46:58 +00002774void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00002775 emitSourceFileHeader("Code to translate different attribute spellings "
2776 "into internal identifiers", OS);
Michael Han99315932013-01-24 16:46:58 +00002777
John McCall2225c8b2016-03-01 00:18:05 +00002778 OS << " switch (AttrKind) {\n";
Michael Han99315932013-01-24 16:46:58 +00002779
Aaron Ballman64e69862013-12-15 13:05:48 +00002780 ParsedAttrMap Attrs = getParsedAttrList(Records);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002781 for (const auto &I : Attrs) {
Aaron Ballman2f22b942014-05-20 19:47:14 +00002782 const Record &R = *I.second;
Aaron Ballmanc669cc02014-01-27 22:10:04 +00002783 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002784 OS << " case AT_" << I.first << ": {\n";
Richard Smith852e9ce2013-11-27 01:46:48 +00002785 for (unsigned I = 0; I < Spellings.size(); ++ I) {
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002786 OS << " if (Name == \"" << Spellings[I].name() << "\" && "
2787 << "SyntaxUsed == "
2788 << StringSwitch<unsigned>(Spellings[I].variety())
2789 .Case("GNU", 0)
2790 .Case("CXX11", 1)
2791 .Case("Declspec", 2)
Nico Weber20e08042016-09-03 02:55:10 +00002792 .Case("Microsoft", 3)
2793 .Case("Keyword", 4)
2794 .Case("Pragma", 5)
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00002795 .Default(0)
2796 << " && Scope == \"" << Spellings[I].nameSpace() << "\")\n"
2797 << " return " << I << ";\n";
Michael Han99315932013-01-24 16:46:58 +00002798 }
Richard Smith852e9ce2013-11-27 01:46:48 +00002799
2800 OS << " break;\n";
2801 OS << " }\n";
Michael Han99315932013-01-24 16:46:58 +00002802 }
2803
2804 OS << " }\n";
Aaron Ballman64e69862013-12-15 13:05:48 +00002805 OS << " return 0;\n";
Michael Han99315932013-01-24 16:46:58 +00002806}
2807
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002808// Emits code used by RecursiveASTVisitor to visit attributes
2809void EmitClangAttrASTVisitor(RecordKeeper &Records, raw_ostream &OS) {
2810 emitSourceFileHeader("Used by RecursiveASTVisitor to visit attributes.", OS);
2811
2812 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
2813
2814 // Write method declarations for Traverse* methods.
2815 // We emit this here because we only generate methods for attributes that
2816 // are declared as ASTNodes.
2817 OS << "#ifdef ATTR_VISITOR_DECLS_ONLY\n\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00002818 for (const auto *Attr : Attrs) {
2819 const Record &R = *Attr;
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002820 if (!R.getValueAsBit("ASTNode"))
2821 continue;
2822 OS << " bool Traverse"
2823 << R.getName() << "Attr(" << R.getName() << "Attr *A);\n";
2824 OS << " bool Visit"
2825 << R.getName() << "Attr(" << R.getName() << "Attr *A) {\n"
2826 << " return true; \n"
Hans Wennborg4afe5042015-07-22 20:46:26 +00002827 << " }\n";
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002828 }
2829 OS << "\n#else // ATTR_VISITOR_DECLS_ONLY\n\n";
2830
2831 // Write individual Traverse* methods for each attribute class.
Aaron Ballman2f22b942014-05-20 19:47:14 +00002832 for (const auto *Attr : Attrs) {
2833 const Record &R = *Attr;
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002834 if (!R.getValueAsBit("ASTNode"))
2835 continue;
2836
2837 OS << "template <typename Derived>\n"
DeLesley Hutchinsbb79c332013-12-30 21:03:02 +00002838 << "bool VISITORCLASS<Derived>::Traverse"
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002839 << R.getName() << "Attr(" << R.getName() << "Attr *A) {\n"
2840 << " if (!getDerived().VisitAttr(A))\n"
2841 << " return false;\n"
2842 << " if (!getDerived().Visit" << R.getName() << "Attr(A))\n"
2843 << " return false;\n";
2844
2845 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
Aaron Ballman2f22b942014-05-20 19:47:14 +00002846 for (const auto *Arg : ArgRecords)
2847 createArgument(*Arg, R.getName())->writeASTVisitorTraversal(OS);
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002848
2849 OS << " return true;\n";
2850 OS << "}\n\n";
2851 }
2852
2853 // Write generic Traverse routine
2854 OS << "template <typename Derived>\n"
DeLesley Hutchinsbb79c332013-12-30 21:03:02 +00002855 << "bool VISITORCLASS<Derived>::TraverseAttr(Attr *A) {\n"
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002856 << " if (!A)\n"
2857 << " return true;\n"
2858 << "\n"
John McCall2225c8b2016-03-01 00:18:05 +00002859 << " switch (A->getKind()) {\n";
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002860
Aaron Ballman2f22b942014-05-20 19:47:14 +00002861 for (const auto *Attr : Attrs) {
2862 const Record &R = *Attr;
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002863 if (!R.getValueAsBit("ASTNode"))
2864 continue;
2865
2866 OS << " case attr::" << R.getName() << ":\n"
2867 << " return getDerived().Traverse" << R.getName() << "Attr("
2868 << "cast<" << R.getName() << "Attr>(A));\n";
2869 }
John McCall5d7cf772016-03-01 02:09:20 +00002870 OS << " }\n"; // end switch
2871 OS << " llvm_unreachable(\"bad attribute kind\");\n";
DeLesley Hutchinsc4a82432013-12-30 17:24:36 +00002872 OS << "}\n"; // end function
2873 OS << "#endif // ATTR_VISITOR_DECLS_ONLY\n";
2874}
2875
Erich Keanea32910d2017-03-23 18:51:54 +00002876void EmitClangAttrTemplateInstantiateHelper(const std::vector<Record *> &Attrs,
2877 raw_ostream &OS,
2878 bool AppliesToDecl) {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002879
Erich Keanea32910d2017-03-23 18:51:54 +00002880 OS << " switch (At->getKind()) {\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00002881 for (const auto *Attr : Attrs) {
2882 const Record &R = *Attr;
Douglas Gregorb2daf842012-05-02 15:56:52 +00002883 if (!R.getValueAsBit("ASTNode"))
2884 continue;
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002885 OS << " case attr::" << R.getName() << ": {\n";
Erich Keanea32910d2017-03-23 18:51:54 +00002886 bool ShouldClone = R.getValueAsBit("Clone") &&
2887 (!AppliesToDecl ||
2888 R.getValueAsBit("MeaningfulToClassTemplateDefinition"));
Rafael Espindola7f90b7d2012-05-15 14:09:55 +00002889
2890 if (!ShouldClone) {
Hans Wennborg59dbe862015-09-29 20:56:43 +00002891 OS << " return nullptr;\n";
Rafael Espindola7f90b7d2012-05-15 14:09:55 +00002892 OS << " }\n";
2893 continue;
2894 }
2895
Eugene Zelenko5f02b772015-12-08 18:49:01 +00002896 OS << " const auto *A = cast<"
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002897 << R.getName() << "Attr>(At);\n";
2898 bool TDependent = R.getValueAsBit("TemplateDependent");
2899
2900 if (!TDependent) {
2901 OS << " return A->clone(C);\n";
2902 OS << " }\n";
2903 continue;
2904 }
2905
2906 std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002907 std::vector<std::unique_ptr<Argument>> Args;
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002908 Args.reserve(ArgRecords.size());
2909
Aaron Ballman2f22b942014-05-20 19:47:14 +00002910 for (const auto *ArgRecord : ArgRecords)
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002911 Args.emplace_back(createArgument(*ArgRecord, R.getName()));
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002912
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002913 for (auto const &ai : Args)
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002914 ai->writeTemplateInstantiation(OS);
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002915
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002916 OS << " return new (C) " << R.getName() << "Attr(A->getLocation(), C";
Aaron Ballman8f1439b2014-03-05 16:49:55 +00002917 for (auto const &ai : Args) {
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002918 OS << ", ";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002919 ai->writeTemplateInstantiationArgs(OS);
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002920 }
Aaron Ballman36a53502014-01-16 13:03:14 +00002921 OS << ", A->getSpellingListIndex());\n }\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002922 }
2923 OS << " } // end switch\n"
2924 << " llvm_unreachable(\"Unknown attribute!\");\n"
Erich Keanea32910d2017-03-23 18:51:54 +00002925 << " return nullptr;\n";
2926}
2927
2928// Emits code to instantiate dependent attributes on templates.
2929void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS) {
2930 emitSourceFileHeader("Template instantiation code for attributes", OS);
2931
2932 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
2933
2934 OS << "namespace clang {\n"
2935 << "namespace sema {\n\n"
2936 << "Attr *instantiateTemplateAttribute(const Attr *At, ASTContext &C, "
2937 << "Sema &S,\n"
2938 << " const MultiLevelTemplateArgumentList &TemplateArgs) {\n";
2939 EmitClangAttrTemplateInstantiateHelper(Attrs, OS, /*AppliesToDecl*/false);
2940 OS << "}\n\n"
2941 << "Attr *instantiateTemplateAttributeForDecl(const Attr *At,\n"
2942 << " ASTContext &C, Sema &S,\n"
2943 << " const MultiLevelTemplateArgumentList &TemplateArgs) {\n";
2944 EmitClangAttrTemplateInstantiateHelper(Attrs, OS, /*AppliesToDecl*/true);
2945 OS << "}\n\n"
Benjamin Kramerbf8da9d2012-02-06 11:13:08 +00002946 << "} // end namespace sema\n"
2947 << "} // end namespace clang\n";
DeLesley Hutchinsceec3062012-01-20 22:37:06 +00002948}
2949
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002950// Emits the list of parsed attributes.
2951void EmitClangAttrParsedAttrList(RecordKeeper &Records, raw_ostream &OS) {
2952 emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
2953
2954 OS << "#ifndef PARSED_ATTR\n";
2955 OS << "#define PARSED_ATTR(NAME) NAME\n";
2956 OS << "#endif\n\n";
2957
2958 ParsedAttrMap Names = getParsedAttrList(Records);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002959 for (const auto &I : Names) {
2960 OS << "PARSED_ATTR(" << I.first << ")\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002961 }
2962}
2963
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002964static bool isArgVariadic(const Record &R, StringRef AttrName) {
2965 return createArgument(R, AttrName)->isVariadic();
2966}
2967
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002968static void emitArgInfo(const Record &R, std::stringstream &OS) {
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002969 // This function will count the number of arguments specified for the
2970 // attribute and emit the number of required arguments followed by the
2971 // number of optional arguments.
2972 std::vector<Record *> Args = R.getValueAsListOfDefs("Args");
2973 unsigned ArgCount = 0, OptCount = 0;
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002974 bool HasVariadic = false;
Aaron Ballman2f22b942014-05-20 19:47:14 +00002975 for (const auto *Arg : Args) {
George Burgess IV8a36ace2016-12-01 17:52:39 +00002976 // If the arg is fake, it's the user's job to supply it: general parsing
2977 // logic shouldn't need to know anything about it.
2978 if (Arg->getValueAsBit("Fake"))
2979 continue;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00002980 Arg->getValueAsBit("Optional") ? ++OptCount : ++ArgCount;
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002981 if (!HasVariadic && isArgVariadic(*Arg, R.getName()))
2982 HasVariadic = true;
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002983 }
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002984
2985 // If there is a variadic argument, we will set the optional argument count
2986 // to its largest value. Since it's currently a 4-bit number, we set it to 15.
2987 OS << ArgCount << ", " << (HasVariadic ? 15 : OptCount);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00002988}
2989
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002990static void GenerateDefaultAppertainsTo(raw_ostream &OS) {
Aaron Ballman93b5cc62013-12-02 19:36:42 +00002991 OS << "static bool defaultAppertainsTo(Sema &, const AttributeList &,";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002992 OS << "const Decl *) {\n";
2993 OS << " return true;\n";
2994 OS << "}\n\n";
2995}
2996
2997static std::string CalculateDiagnostic(const Record &S) {
2998 // If the SubjectList object has a custom diagnostic associated with it,
2999 // return that directly.
3000 std::string CustomDiag = S.getValueAsString("CustomDiag");
3001 if (!CustomDiag.empty())
3002 return CustomDiag;
3003
3004 // Given the list of subjects, determine what diagnostic best fits.
3005 enum {
3006 Func = 1U << 0,
3007 Var = 1U << 1,
3008 ObjCMethod = 1U << 2,
3009 Param = 1U << 3,
3010 Class = 1U << 4,
Aaron Ballmanc1494bd2013-11-27 20:14:30 +00003011 GenericRecord = 1U << 5,
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003012 Type = 1U << 6,
3013 ObjCIVar = 1U << 7,
3014 ObjCProp = 1U << 8,
3015 ObjCInterface = 1U << 9,
3016 Block = 1U << 10,
3017 Namespace = 1U << 11,
Aaron Ballman981ba242014-05-20 14:10:53 +00003018 Field = 1U << 12,
3019 CXXMethod = 1U << 13,
Alexis Hunt724f14e2014-11-28 00:53:20 +00003020 ObjCProtocol = 1U << 14,
Alex Lorenz24952fb2017-04-19 15:52:11 +00003021 Enum = 1U << 15,
3022 Named = 1U << 16,
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003023 };
3024 uint32_t SubMask = 0;
3025
3026 std::vector<Record *> Subjects = S.getValueAsListOfDefs("Subjects");
Aaron Ballman2f22b942014-05-20 19:47:14 +00003027 for (const auto *Subject : Subjects) {
3028 const Record &R = *Subject;
Aaron Ballman80469032013-11-29 14:57:58 +00003029 std::string Name;
3030
3031 if (R.isSubClassOf("SubsetSubject")) {
3032 PrintError(R.getLoc(), "SubsetSubjects should use a custom diagnostic");
3033 // As a fallback, look through the SubsetSubject to see what its base
3034 // type is, and use that. This needs to be updated if SubsetSubjects
3035 // are allowed within other SubsetSubjects.
3036 Name = R.getValueAsDef("Base")->getName();
3037 } else
3038 Name = R.getName();
3039
3040 uint32_t V = StringSwitch<uint32_t>(Name)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003041 .Case("Function", Func)
3042 .Case("Var", Var)
3043 .Case("ObjCMethod", ObjCMethod)
3044 .Case("ParmVar", Param)
3045 .Case("TypedefName", Type)
3046 .Case("ObjCIvar", ObjCIVar)
3047 .Case("ObjCProperty", ObjCProp)
Aaron Ballmanc1494bd2013-11-27 20:14:30 +00003048 .Case("Record", GenericRecord)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003049 .Case("ObjCInterface", ObjCInterface)
Ted Kremenekd980da22013-12-10 19:43:42 +00003050 .Case("ObjCProtocol", ObjCProtocol)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003051 .Case("Block", Block)
3052 .Case("CXXRecord", Class)
3053 .Case("Namespace", Namespace)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003054 .Case("Field", Field)
3055 .Case("CXXMethod", CXXMethod)
Alexis Hunt724f14e2014-11-28 00:53:20 +00003056 .Case("Enum", Enum)
Alex Lorenz24952fb2017-04-19 15:52:11 +00003057 .Case("Named", Named)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003058 .Default(0);
3059 if (!V) {
3060 // Something wasn't in our mapping, so be helpful and let the developer
3061 // know about it.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003062 PrintFatalError(R.getLoc(), "Unknown subject type: " + R.getName());
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003063 return "";
3064 }
3065
3066 SubMask |= V;
3067 }
3068
3069 switch (SubMask) {
3070 // For the simple cases where there's only a single entry in the mask, we
3071 // don't have to resort to bit fiddling.
3072 case Func: return "ExpectedFunction";
3073 case Var: return "ExpectedVariable";
3074 case Param: return "ExpectedParameter";
3075 case Class: return "ExpectedClass";
Alexis Hunt724f14e2014-11-28 00:53:20 +00003076 case Enum: return "ExpectedEnum";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003077 case CXXMethod:
3078 // FIXME: Currently, this maps to ExpectedMethod based on existing code,
3079 // but should map to something a bit more accurate at some point.
3080 case ObjCMethod: return "ExpectedMethod";
3081 case Type: return "ExpectedType";
3082 case ObjCInterface: return "ExpectedObjectiveCInterface";
Ted Kremenekd980da22013-12-10 19:43:42 +00003083 case ObjCProtocol: return "ExpectedObjectiveCProtocol";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003084
Aaron Ballmanc1494bd2013-11-27 20:14:30 +00003085 // "GenericRecord" means struct, union or class; check the language options
3086 // and if not compiling for C++, strip off the class part. Note that this
3087 // relies on the fact that the context for this declares "Sema &S".
3088 case GenericRecord:
Aaron Ballman17046b82013-11-27 19:16:55 +00003089 return "(S.getLangOpts().CPlusPlus ? ExpectedStructOrUnionOrClass : "
3090 "ExpectedStructOrUnion)";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003091 case Func | ObjCMethod | Block: return "ExpectedFunctionMethodOrBlock";
3092 case Func | ObjCMethod | Class: return "ExpectedFunctionMethodOrClass";
3093 case Func | Param:
3094 case Func | ObjCMethod | Param: return "ExpectedFunctionMethodOrParameter";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003095 case Func | ObjCMethod: return "ExpectedFunctionOrMethod";
3096 case Func | Var: return "ExpectedVariableOrFunction";
Aaron Ballman604dfec2013-12-02 17:07:07 +00003097
3098 // If not compiling for C++, the class portion does not apply.
3099 case Func | Var | Class:
3100 return "(S.getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass : "
3101 "ExpectedVariableOrFunction)";
3102
Saleem Abdulrasool511f2e52016-07-15 20:41:10 +00003103 case Func | Var | Class | ObjCInterface:
3104 return "(S.getLangOpts().CPlusPlus"
3105 " ? ((S.getLangOpts().ObjC1 || S.getLangOpts().ObjC2)"
3106 " ? ExpectedFunctionVariableClassOrObjCInterface"
3107 " : ExpectedFunctionVariableOrClass)"
3108 " : ((S.getLangOpts().ObjC1 || S.getLangOpts().ObjC2)"
3109 " ? ExpectedFunctionVariableOrObjCInterface"
3110 " : ExpectedVariableOrFunction))";
3111
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003112 case ObjCMethod | ObjCProp: return "ExpectedMethodOrProperty";
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00003113 case Func | ObjCMethod | ObjCProp:
3114 return "ExpectedFunctionOrMethodOrProperty";
Aaron Ballman173361e2014-07-16 20:28:10 +00003115 case ObjCProtocol | ObjCInterface:
3116 return "ExpectedObjectiveCInterfaceOrProtocol";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003117 case Field | Var: return "ExpectedFieldOrGlobalVar";
Alex Lorenz24952fb2017-04-19 15:52:11 +00003118
3119 case Named:
3120 return "ExpectedNamedDecl";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003121 }
3122
3123 PrintFatalError(S.getLoc(),
3124 "Could not deduce diagnostic argument for Attr subjects");
3125
3126 return "";
3127}
3128
Aaron Ballman12b9f652014-01-16 13:55:42 +00003129static std::string GetSubjectWithSuffix(const Record *R) {
George Burgess IV1881a572016-12-01 00:13:18 +00003130 const std::string &B = R->getName();
Aaron Ballman12b9f652014-01-16 13:55:42 +00003131 if (B == "DeclBase")
3132 return "Decl";
3133 return B + "Decl";
3134}
Hans Wennborgdcfba332015-10-06 23:40:43 +00003135
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003136static std::string functionNameForCustomAppertainsTo(const Record &Subject) {
3137 return "is" + Subject.getName().str();
3138}
3139
Aaron Ballman80469032013-11-29 14:57:58 +00003140static std::string GenerateCustomAppertainsTo(const Record &Subject,
3141 raw_ostream &OS) {
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003142 std::string FnName = functionNameForCustomAppertainsTo(Subject);
Aaron Ballmana358c902013-12-02 14:58:17 +00003143
Aaron Ballman80469032013-11-29 14:57:58 +00003144 // If this code has already been generated, simply return the previous
3145 // instance of it.
3146 static std::set<std::string> CustomSubjectSet;
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003147 auto I = CustomSubjectSet.find(FnName);
Aaron Ballman80469032013-11-29 14:57:58 +00003148 if (I != CustomSubjectSet.end())
3149 return *I;
3150
3151 Record *Base = Subject.getValueAsDef("Base");
3152
3153 // Not currently support custom subjects within custom subjects.
3154 if (Base->isSubClassOf("SubsetSubject")) {
3155 PrintFatalError(Subject.getLoc(),
3156 "SubsetSubjects within SubsetSubjects is not supported");
3157 return "";
3158 }
3159
Aaron Ballman80469032013-11-29 14:57:58 +00003160 OS << "static bool " << FnName << "(const Decl *D) {\n";
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003161 OS << " if (const auto *S = dyn_cast<";
Aaron Ballman12b9f652014-01-16 13:55:42 +00003162 OS << GetSubjectWithSuffix(Base);
Aaron Ballman47553042014-01-16 14:32:03 +00003163 OS << ">(D))\n";
3164 OS << " return " << Subject.getValueAsString("CheckCode") << ";\n";
3165 OS << " return false;\n";
Aaron Ballman80469032013-11-29 14:57:58 +00003166 OS << "}\n\n";
3167
3168 CustomSubjectSet.insert(FnName);
3169 return FnName;
3170}
3171
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003172static std::string GenerateAppertainsTo(const Record &Attr, raw_ostream &OS) {
3173 // If the attribute does not contain a Subjects definition, then use the
3174 // default appertainsTo logic.
3175 if (Attr.isValueUnset("Subjects"))
Aaron Ballman93b5cc62013-12-02 19:36:42 +00003176 return "defaultAppertainsTo";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003177
3178 const Record *SubjectObj = Attr.getValueAsDef("Subjects");
3179 std::vector<Record*> Subjects = SubjectObj->getValueAsListOfDefs("Subjects");
3180
3181 // If the list of subjects is empty, it is assumed that the attribute
3182 // appertains to everything.
3183 if (Subjects.empty())
Aaron Ballman93b5cc62013-12-02 19:36:42 +00003184 return "defaultAppertainsTo";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003185
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003186 bool Warn = SubjectObj->getValueAsDef("Diag")->getValueAsBit("Warn");
3187
3188 // Otherwise, generate an appertainsTo check specific to this attribute which
3189 // checks all of the given subjects against the Decl passed in. Return the
3190 // name of that check to the caller.
Matthias Braunbbbf5d42016-12-04 05:55:09 +00003191 std::string FnName = "check" + Attr.getName().str() + "AppertainsTo";
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003192 std::stringstream SS;
3193 SS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr, ";
3194 SS << "const Decl *D) {\n";
3195 SS << " if (";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003196 for (auto I = Subjects.begin(), E = Subjects.end(); I != E; ++I) {
Aaron Ballman80469032013-11-29 14:57:58 +00003197 // If the subject has custom code associated with it, generate a function
3198 // for it. The function cannot be inlined into this check (yet) because it
3199 // requires the subject to be of a specific type, and were that information
3200 // inlined here, it would not support an attribute with multiple custom
3201 // subjects.
3202 if ((*I)->isSubClassOf("SubsetSubject")) {
3203 SS << "!" << GenerateCustomAppertainsTo(**I, OS) << "(D)";
3204 } else {
Aaron Ballman12b9f652014-01-16 13:55:42 +00003205 SS << "!isa<" << GetSubjectWithSuffix(*I) << ">(D)";
Aaron Ballman80469032013-11-29 14:57:58 +00003206 }
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003207
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003208 if (I + 1 != E)
3209 SS << " && ";
3210 }
3211 SS << ") {\n";
3212 SS << " S.Diag(Attr.getLoc(), diag::";
3213 SS << (Warn ? "warn_attribute_wrong_decl_type" :
3214 "err_attribute_wrong_decl_type");
3215 SS << ")\n";
3216 SS << " << Attr.getName() << ";
3217 SS << CalculateDiagnostic(*SubjectObj) << ";\n";
3218 SS << " return false;\n";
3219 SS << " }\n";
3220 SS << " return true;\n";
3221 SS << "}\n\n";
3222
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003223 OS << SS.str();
3224 return FnName;
3225}
3226
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003227static void
3228emitAttributeMatchRules(PragmaClangAttributeSupport &PragmaAttributeSupport,
3229 raw_ostream &OS) {
3230 OS << "static bool checkAttributeMatchRuleAppliesTo(const Decl *D, "
3231 << AttributeSubjectMatchRule::EnumName << " rule) {\n";
3232 OS << " switch (rule) {\n";
3233 for (const auto &Rule : PragmaAttributeSupport.Rules) {
3234 if (Rule.isAbstractRule()) {
3235 OS << " case " << Rule.getEnumValue() << ":\n";
3236 OS << " assert(false && \"Abstract matcher rule isn't allowed\");\n";
3237 OS << " return false;\n";
3238 continue;
3239 }
3240 std::vector<Record *> Subjects = Rule.getSubjects();
3241 assert(!Subjects.empty() && "Missing subjects");
3242 OS << " case " << Rule.getEnumValue() << ":\n";
3243 OS << " return ";
3244 for (auto I = Subjects.begin(), E = Subjects.end(); I != E; ++I) {
3245 // If the subject has custom code associated with it, use the function
3246 // that was generated for GenerateAppertainsTo to check if the declaration
3247 // is valid.
3248 if ((*I)->isSubClassOf("SubsetSubject"))
3249 OS << functionNameForCustomAppertainsTo(**I) << "(D)";
3250 else
3251 OS << "isa<" << GetSubjectWithSuffix(*I) << ">(D)";
3252
3253 if (I + 1 != E)
3254 OS << " || ";
3255 }
3256 OS << ";\n";
3257 }
3258 OS << " }\n";
3259 OS << " llvm_unreachable(\"Invalid match rule\");\nreturn false;\n";
3260 OS << "}\n\n";
3261}
3262
Aaron Ballman3aff6332013-12-02 19:30:36 +00003263static void GenerateDefaultLangOptRequirements(raw_ostream &OS) {
3264 OS << "static bool defaultDiagnoseLangOpts(Sema &, ";
3265 OS << "const AttributeList &) {\n";
3266 OS << " return true;\n";
3267 OS << "}\n\n";
3268}
3269
3270static std::string GenerateLangOptRequirements(const Record &R,
3271 raw_ostream &OS) {
3272 // If the attribute has an empty or unset list of language requirements,
3273 // return the default handler.
3274 std::vector<Record *> LangOpts = R.getValueAsListOfDefs("LangOpts");
3275 if (LangOpts.empty())
3276 return "defaultDiagnoseLangOpts";
3277
3278 // Generate the test condition, as well as a unique function name for the
3279 // diagnostic test. The list of options should usually be short (one or two
3280 // options), and the uniqueness isn't strictly necessary (it is just for
3281 // codegen efficiency).
3282 std::string FnName = "check", Test;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003283 for (auto I = LangOpts.begin(), E = LangOpts.end(); I != E; ++I) {
Aaron Ballman3aff6332013-12-02 19:30:36 +00003284 std::string Part = (*I)->getValueAsString("Name");
Eric Fiselier341e8252016-09-02 18:53:31 +00003285 if ((*I)->getValueAsBit("Negated")) {
3286 FnName += "Not";
Alexis Hunt724f14e2014-11-28 00:53:20 +00003287 Test += "!";
Eric Fiselier341e8252016-09-02 18:53:31 +00003288 }
Aaron Ballman3aff6332013-12-02 19:30:36 +00003289 Test += "S.LangOpts." + Part;
3290 if (I + 1 != E)
3291 Test += " || ";
3292 FnName += Part;
3293 }
3294 FnName += "LangOpts";
3295
3296 // If this code has already been generated, simply return the previous
3297 // instance of it.
3298 static std::set<std::string> CustomLangOptsSet;
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003299 auto I = CustomLangOptsSet.find(FnName);
Aaron Ballman3aff6332013-12-02 19:30:36 +00003300 if (I != CustomLangOptsSet.end())
3301 return *I;
3302
3303 OS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr) {\n";
3304 OS << " if (" << Test << ")\n";
3305 OS << " return true;\n\n";
3306 OS << " S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) ";
3307 OS << "<< Attr.getName();\n";
3308 OS << " return false;\n";
3309 OS << "}\n\n";
3310
3311 CustomLangOptsSet.insert(FnName);
3312 return FnName;
3313}
3314
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003315static void GenerateDefaultTargetRequirements(raw_ostream &OS) {
Bob Wilson7c730832015-07-20 22:57:31 +00003316 OS << "static bool defaultTargetRequirements(const TargetInfo &) {\n";
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003317 OS << " return true;\n";
3318 OS << "}\n\n";
3319}
3320
3321static std::string GenerateTargetRequirements(const Record &Attr,
3322 const ParsedAttrMap &Dupes,
3323 raw_ostream &OS) {
3324 // If the attribute is not a target specific attribute, return the default
3325 // target handler.
3326 if (!Attr.isSubClassOf("TargetSpecificAttr"))
3327 return "defaultTargetRequirements";
3328
3329 // Get the list of architectures to be tested for.
3330 const Record *R = Attr.getValueAsDef("Target");
Craig Topper00648582017-05-31 19:01:22 +00003331 std::vector<StringRef> Arches = R->getValueAsListOfStrings("Arches");
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003332 if (Arches.empty()) {
3333 PrintError(Attr.getLoc(), "Empty list of target architectures for a "
3334 "target-specific attr");
3335 return "defaultTargetRequirements";
3336 }
3337
3338 // If there are other attributes which share the same parsed attribute kind,
3339 // such as target-specific attributes with a shared spelling, collapse the
3340 // duplicate architectures. This is required because a shared target-specific
3341 // attribute has only one AttributeList::Kind enumeration value, but it
3342 // applies to multiple target architectures. In order for the attribute to be
3343 // considered valid, all of its architectures need to be included.
3344 if (!Attr.isValueUnset("ParseKind")) {
3345 std::string APK = Attr.getValueAsString("ParseKind");
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003346 for (const auto &I : Dupes) {
3347 if (I.first == APK) {
Craig Topper00648582017-05-31 19:01:22 +00003348 std::vector<StringRef> DA =
3349 I.second->getValueAsDef("Target")->getValueAsListOfStrings(
3350 "Arches");
3351 Arches.insert(Arches.end(), DA.begin(), DA.end());
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003352 }
3353 }
3354 }
3355
Bob Wilson0058b822015-07-20 22:57:36 +00003356 std::string FnName = "isTarget";
3357 std::string Test;
3358 GenerateTargetSpecificAttrChecks(R, Arches, Test, &FnName);
Bob Wilson7c730832015-07-20 22:57:31 +00003359
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003360 // If this code has already been generated, simply return the previous
3361 // instance of it.
3362 static std::set<std::string> CustomTargetSet;
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003363 auto I = CustomTargetSet.find(FnName);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003364 if (I != CustomTargetSet.end())
3365 return *I;
3366
Bob Wilson7c730832015-07-20 22:57:31 +00003367 OS << "static bool " << FnName << "(const TargetInfo &Target) {\n";
3368 OS << " const llvm::Triple &T = Target.getTriple();\n";
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003369 OS << " return " << Test << ";\n";
3370 OS << "}\n\n";
3371
3372 CustomTargetSet.insert(FnName);
3373 return FnName;
3374}
3375
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00003376static void GenerateDefaultSpellingIndexToSemanticSpelling(raw_ostream &OS) {
3377 OS << "static unsigned defaultSpellingIndexToSemanticSpelling("
3378 << "const AttributeList &Attr) {\n";
3379 OS << " return UINT_MAX;\n";
3380 OS << "}\n\n";
3381}
3382
3383static std::string GenerateSpellingIndexToSemanticSpelling(const Record &Attr,
3384 raw_ostream &OS) {
3385 // If the attribute does not have a semantic form, we can bail out early.
3386 if (!Attr.getValueAsBit("ASTNode"))
3387 return "defaultSpellingIndexToSemanticSpelling";
3388
Aaron Ballmanc669cc02014-01-27 22:10:04 +00003389 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attr);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00003390
3391 // If there are zero or one spellings, or all of the spellings share the same
3392 // name, we can also bail out early.
3393 if (Spellings.size() <= 1 || SpellingNamesAreCommon(Spellings))
3394 return "defaultSpellingIndexToSemanticSpelling";
3395
3396 // Generate the enumeration we will use for the mapping.
3397 SemanticSpellingMap SemanticToSyntacticMap;
3398 std::string Enum = CreateSemanticSpellings(Spellings, SemanticToSyntacticMap);
Matthias Braunbbbf5d42016-12-04 05:55:09 +00003399 std::string Name = Attr.getName().str() + "AttrSpellingMap";
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00003400
3401 OS << "static unsigned " << Name << "(const AttributeList &Attr) {\n";
3402 OS << Enum;
3403 OS << " unsigned Idx = Attr.getAttributeSpellingListIndex();\n";
3404 WriteSemanticSpellingSwitch("Idx", SemanticToSyntacticMap, OS);
3405 OS << "}\n\n";
3406
3407 return Name;
3408}
3409
Aaron Ballmanc669cc02014-01-27 22:10:04 +00003410static bool IsKnownToGCC(const Record &Attr) {
3411 // Look at the spellings for this subject; if there are any spellings which
3412 // claim to be known to GCC, the attribute is known to GCC.
George Burgess IV1881a572016-12-01 00:13:18 +00003413 return llvm::any_of(
3414 GetFlattenedSpellings(Attr),
3415 [](const FlattenedSpelling &S) { return S.knownToGCC(); });
Aaron Ballman9a99e0d2014-01-20 17:18:35 +00003416}
3417
Aaron Ballman8ee40b72013-09-09 23:33:17 +00003418/// Emits the parsed attribute helpers
3419void EmitClangAttrParsedAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
3420 emitSourceFileHeader("Parsed attribute helpers", OS);
3421
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003422 PragmaClangAttributeSupport &PragmaAttributeSupport =
3423 getPragmaAttributeSupport(Records);
3424
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003425 // Get the list of parsed attributes, and accept the optional list of
3426 // duplicates due to the ParseKind.
3427 ParsedAttrMap Dupes;
3428 ParsedAttrMap Attrs = getParsedAttrList(Records, &Dupes);
Aaron Ballman8ee40b72013-09-09 23:33:17 +00003429
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00003430 // Generate the default appertainsTo, target and language option diagnostic,
3431 // and spelling list index mapping methods.
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003432 GenerateDefaultAppertainsTo(OS);
Aaron Ballman3aff6332013-12-02 19:30:36 +00003433 GenerateDefaultLangOptRequirements(OS);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003434 GenerateDefaultTargetRequirements(OS);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00003435 GenerateDefaultSpellingIndexToSemanticSpelling(OS);
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003436
3437 // Generate the appertainsTo diagnostic methods and write their names into
3438 // another mapping. At the same time, generate the AttrInfoMap object
3439 // contents. Due to the reliance on generated code, use separate streams so
3440 // that code will not be interleaved.
3441 std::stringstream SS;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003442 for (auto I = Attrs.begin(), E = Attrs.end(); I != E; ++I) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003443 // TODO: If the attribute's kind appears in the list of duplicates, that is
3444 // because it is a target-specific attribute that appears multiple times.
3445 // It would be beneficial to test whether the duplicates are "similar
3446 // enough" to each other to not cause problems. For instance, check that
Alp Toker96cf7582014-01-18 21:49:37 +00003447 // the spellings are identical, and custom parsing rules match, etc.
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003448
Aaron Ballman8ee40b72013-09-09 23:33:17 +00003449 // We need to generate struct instances based off ParsedAttrInfo from
3450 // AttributeList.cpp.
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003451 SS << " { ";
3452 emitArgInfo(*I->second, SS);
3453 SS << ", " << I->second->getValueAsBit("HasCustomParsing");
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003454 SS << ", " << I->second->isSubClassOf("TargetSpecificAttr");
3455 SS << ", " << I->second->isSubClassOf("TypeAttr");
Richard Smith4f902c72016-03-08 00:32:55 +00003456 SS << ", " << I->second->isSubClassOf("StmtAttr");
Aaron Ballmanc669cc02014-01-27 22:10:04 +00003457 SS << ", " << IsKnownToGCC(*I->second);
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003458 SS << ", " << PragmaAttributeSupport.isAttributedSupported(*I->second);
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003459 SS << ", " << GenerateAppertainsTo(*I->second, OS);
Aaron Ballman3aff6332013-12-02 19:30:36 +00003460 SS << ", " << GenerateLangOptRequirements(*I->second, OS);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00003461 SS << ", " << GenerateTargetRequirements(*I->second, Dupes, OS);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +00003462 SS << ", " << GenerateSpellingIndexToSemanticSpelling(*I->second, OS);
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003463 SS << ", "
3464 << PragmaAttributeSupport.generateStrictConformsTo(*I->second, OS);
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003465 SS << " }";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00003466
3467 if (I + 1 != E)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003468 SS << ",";
3469
3470 SS << " // AT_" << I->first << "\n";
Aaron Ballman8ee40b72013-09-09 23:33:17 +00003471 }
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003472
3473 OS << "static const ParsedAttrInfo AttrInfoMap[AttributeList::UnknownAttribute + 1] = {\n";
3474 OS << SS.str();
Aaron Ballman8ee40b72013-09-09 23:33:17 +00003475 OS << "};\n\n";
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003476
3477 // Generate the attribute match rules.
3478 emitAttributeMatchRules(PragmaAttributeSupport, OS);
Michael Han4a045172012-03-07 00:12:16 +00003479}
3480
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00003481// Emits the kind list of parsed attributes
3482void EmitClangAttrParsedAttrKinds(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00003483 emitSourceFileHeader("Attribute name matcher", OS);
3484
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003485 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Nico Weber20e08042016-09-03 02:55:10 +00003486 std::vector<StringMatcher::StringPair> GNU, Declspec, Microsoft, CXX11,
3487 Keywords, Pragma;
Aaron Ballman64e69862013-12-15 13:05:48 +00003488 std::set<std::string> Seen;
Aaron Ballman2f22b942014-05-20 19:47:14 +00003489 for (const auto *A : Attrs) {
3490 const Record &Attr = *A;
Richard Smith852e9ce2013-11-27 01:46:48 +00003491
Michael Han4a045172012-03-07 00:12:16 +00003492 bool SemaHandler = Attr.getValueAsBit("SemaHandler");
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00003493 bool Ignored = Attr.getValueAsBit("Ignored");
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00003494 if (SemaHandler || Ignored) {
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003495 // Attribute spellings can be shared between target-specific attributes,
3496 // and can be shared between syntaxes for the same attribute. For
3497 // instance, an attribute can be spelled GNU<"interrupt"> for an ARM-
3498 // specific attribute, or MSP430-specific attribute. Additionally, an
3499 // attribute can be spelled GNU<"dllexport"> and Declspec<"dllexport">
3500 // for the same semantic attribute. Ultimately, we need to map each of
3501 // these to a single AttributeList::Kind value, but the StringMatcher
3502 // class cannot handle duplicate match strings. So we generate a list of
3503 // string to match based on the syntax, and emit multiple string matchers
3504 // depending on the syntax used.
Aaron Ballman64e69862013-12-15 13:05:48 +00003505 std::string AttrName;
3506 if (Attr.isSubClassOf("TargetSpecificAttr") &&
3507 !Attr.isValueUnset("ParseKind")) {
3508 AttrName = Attr.getValueAsString("ParseKind");
3509 if (Seen.find(AttrName) != Seen.end())
3510 continue;
3511 Seen.insert(AttrName);
3512 } else
3513 AttrName = NormalizeAttrName(StringRef(Attr.getName())).str();
3514
Aaron Ballmanc669cc02014-01-27 22:10:04 +00003515 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(Attr);
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003516 for (const auto &S : Spellings) {
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00003517 const std::string &RawSpelling = S.name();
Craig Topper8ae12032014-05-07 06:21:57 +00003518 std::vector<StringMatcher::StringPair> *Matches = nullptr;
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00003519 std::string Spelling;
3520 const std::string &Variety = S.variety();
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003521 if (Variety == "CXX11") {
3522 Matches = &CXX11;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003523 Spelling += S.nameSpace();
Alexis Hunt3bc72c12012-06-19 23:57:03 +00003524 Spelling += "::";
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003525 } else if (Variety == "GNU")
3526 Matches = &GNU;
3527 else if (Variety == "Declspec")
3528 Matches = &Declspec;
Nico Weber20e08042016-09-03 02:55:10 +00003529 else if (Variety == "Microsoft")
3530 Matches = &Microsoft;
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003531 else if (Variety == "Keyword")
3532 Matches = &Keywords;
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003533 else if (Variety == "Pragma")
3534 Matches = &Pragma;
Alexis Hunta0e54d42012-06-18 16:13:52 +00003535
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003536 assert(Matches && "Unsupported spelling variety found");
3537
Justin Lebar4086fe52017-01-05 16:51:54 +00003538 if (Variety == "GNU")
3539 Spelling += NormalizeGNUAttrSpelling(RawSpelling);
3540 else
3541 Spelling += RawSpelling;
3542
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00003543 if (SemaHandler)
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003544 Matches->push_back(StringMatcher::StringPair(Spelling,
3545 "return AttributeList::AT_" + AttrName + ";"));
Douglas Gregor19fbb8f2012-05-02 16:18:45 +00003546 else
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003547 Matches->push_back(StringMatcher::StringPair(Spelling,
3548 "return AttributeList::IgnoredAttribute;"));
Michael Han4a045172012-03-07 00:12:16 +00003549 }
3550 }
3551 }
Douglas Gregor377f99b2012-05-02 17:33:51 +00003552
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003553 OS << "static AttributeList::Kind getAttrKind(StringRef Name, ";
3554 OS << "AttributeList::Syntax Syntax) {\n";
3555 OS << " if (AttributeList::AS_GNU == Syntax) {\n";
3556 StringMatcher("Name", GNU, OS).Emit();
3557 OS << " } else if (AttributeList::AS_Declspec == Syntax) {\n";
3558 StringMatcher("Name", Declspec, OS).Emit();
Nico Weber20e08042016-09-03 02:55:10 +00003559 OS << " } else if (AttributeList::AS_Microsoft == Syntax) {\n";
3560 StringMatcher("Name", Microsoft, OS).Emit();
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003561 OS << " } else if (AttributeList::AS_CXX11 == Syntax) {\n";
3562 StringMatcher("Name", CXX11, OS).Emit();
Douglas Gregorbec595a2015-06-19 18:27:45 +00003563 OS << " } else if (AttributeList::AS_Keyword == Syntax || ";
3564 OS << "AttributeList::AS_ContextSensitiveKeyword == Syntax) {\n";
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003565 StringMatcher("Name", Keywords, OS).Emit();
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003566 OS << " } else if (AttributeList::AS_Pragma == Syntax) {\n";
3567 StringMatcher("Name", Pragma, OS).Emit();
Aaron Ballman09e98ff2014-01-13 21:42:39 +00003568 OS << " }\n";
3569 OS << " return AttributeList::UnknownAttribute;\n"
Douglas Gregor377f99b2012-05-02 17:33:51 +00003570 << "}\n";
Michael Han4a045172012-03-07 00:12:16 +00003571}
3572
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003573// Emits the code to dump an attribute.
3574void EmitClangAttrDump(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko6b11fca2013-01-30 21:54:20 +00003575 emitSourceFileHeader("Attribute dumper", OS);
3576
John McCall2225c8b2016-03-01 00:18:05 +00003577 OS << " switch (A->getKind()) {\n";
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003578 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), Args;
Aaron Ballman2f22b942014-05-20 19:47:14 +00003579 for (const auto *Attr : Attrs) {
3580 const Record &R = *Attr;
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003581 if (!R.getValueAsBit("ASTNode"))
3582 continue;
3583 OS << " case attr::" << R.getName() << ": {\n";
Aaron Ballmanbc909612014-01-22 21:51:20 +00003584
3585 // If the attribute has a semantically-meaningful name (which is determined
3586 // by whether there is a Spelling enumeration for it), then write out the
3587 // spelling used for the attribute.
Aaron Ballmanc669cc02014-01-27 22:10:04 +00003588 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R);
Aaron Ballmanbc909612014-01-22 21:51:20 +00003589 if (Spellings.size() > 1 && !SpellingNamesAreCommon(Spellings))
3590 OS << " OS << \" \" << A->getSpelling();\n";
3591
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003592 Args = R.getValueAsListOfDefs("Args");
3593 if (!Args.empty()) {
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003594 OS << " const auto *SA = cast<" << R.getName()
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003595 << "Attr>(A);\n";
Aaron Ballman2f22b942014-05-20 19:47:14 +00003596 for (const auto *Arg : Args)
3597 createArgument(*Arg, R.getName())->writeDump(OS);
Richard Trieude5cc7d2013-01-31 01:44:26 +00003598
Eugene Zelenko5f02b772015-12-08 18:49:01 +00003599 for (const auto *AI : Args)
3600 createArgument(*AI, R.getName())->writeDumpChildren(OS);
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00003601 }
3602 OS <<
3603 " break;\n"
3604 " }\n";
3605 }
3606 OS << " }\n";
3607}
3608
Aaron Ballman35db2b32014-01-29 22:13:45 +00003609void EmitClangAttrParserStringSwitches(RecordKeeper &Records,
3610 raw_ostream &OS) {
3611 emitSourceFileHeader("Parser-related llvm::StringSwitch cases", OS);
3612 emitClangAttrArgContextList(Records, OS);
3613 emitClangAttrIdentifierArgList(Records, OS);
3614 emitClangAttrTypeArgList(Records, OS);
3615 emitClangAttrLateParsedList(Records, OS);
3616}
3617
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003618void EmitClangAttrSubjectMatchRulesParserStringSwitches(RecordKeeper &Records,
3619 raw_ostream &OS) {
3620 getPragmaAttributeSupport(Records).generateParsingHelpers(OS);
3621}
3622
Aaron Ballman97dba042014-02-17 15:27:10 +00003623class DocumentationData {
3624public:
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003625 const Record *Documentation;
3626 const Record *Attribute;
Aaron Ballman97dba042014-02-17 15:27:10 +00003627
Aaron Ballman4de1b582014-02-19 22:59:32 +00003628 DocumentationData(const Record &Documentation, const Record &Attribute)
3629 : Documentation(&Documentation), Attribute(&Attribute) {}
Aaron Ballman97dba042014-02-17 15:27:10 +00003630};
3631
Aaron Ballman4de1b582014-02-19 22:59:32 +00003632static void WriteCategoryHeader(const Record *DocCategory,
Aaron Ballman97dba042014-02-17 15:27:10 +00003633 raw_ostream &OS) {
Aaron Ballman4de1b582014-02-19 22:59:32 +00003634 const std::string &Name = DocCategory->getValueAsString("Name");
3635 OS << Name << "\n" << std::string(Name.length(), '=') << "\n";
3636
3637 // If there is content, print that as well.
3638 std::string ContentStr = DocCategory->getValueAsString("Content");
Benjamin Kramer5c404072015-04-10 21:37:21 +00003639 // Trim leading and trailing newlines and spaces.
3640 OS << StringRef(ContentStr).trim();
3641
Aaron Ballman4de1b582014-02-19 22:59:32 +00003642 OS << "\n\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003643}
3644
Aaron Ballmana66b5742014-02-17 15:36:08 +00003645enum SpellingKind {
3646 GNU = 1 << 0,
3647 CXX11 = 1 << 1,
3648 Declspec = 1 << 2,
Nico Weber20e08042016-09-03 02:55:10 +00003649 Microsoft = 1 << 3,
3650 Keyword = 1 << 4,
3651 Pragma = 1 << 5
Aaron Ballmana66b5742014-02-17 15:36:08 +00003652};
3653
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003654static void WriteDocumentation(RecordKeeper &Records,
3655 const DocumentationData &Doc, raw_ostream &OS) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003656 // FIXME: there is no way to have a per-spelling category for the attribute
3657 // documentation. This may not be a limiting factor since the spellings
3658 // should generally be consistently applied across the category.
3659
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003660 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Doc.Attribute);
Aaron Ballman97dba042014-02-17 15:27:10 +00003661
3662 // Determine the heading to be used for this attribute.
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003663 std::string Heading = Doc.Documentation->getValueAsString("Heading");
Aaron Ballmanea6668c2014-02-21 14:14:04 +00003664 bool CustomHeading = !Heading.empty();
Aaron Ballman97dba042014-02-17 15:27:10 +00003665 if (Heading.empty()) {
3666 // If there's only one spelling, we can simply use that.
3667 if (Spellings.size() == 1)
3668 Heading = Spellings.begin()->name();
3669 else {
3670 std::set<std::string> Uniques;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003671 for (auto I = Spellings.begin(), E = Spellings.end();
3672 I != E && Uniques.size() <= 1; ++I) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003673 std::string Spelling = NormalizeNameForSpellingComparison(I->name());
3674 Uniques.insert(Spelling);
3675 }
3676 // If the semantic map has only one spelling, that is sufficient for our
3677 // needs.
3678 if (Uniques.size() == 1)
3679 Heading = *Uniques.begin();
3680 }
3681 }
3682
3683 // If the heading is still empty, it is an error.
3684 if (Heading.empty())
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003685 PrintFatalError(Doc.Attribute->getLoc(),
Aaron Ballman97dba042014-02-17 15:27:10 +00003686 "This attribute requires a heading to be specified");
3687
3688 // Gather a list of unique spellings; this is not the same as the semantic
3689 // spelling for the attribute. Variations in underscores and other non-
3690 // semantic characters are still acceptable.
3691 std::vector<std::string> Names;
3692
Aaron Ballman97dba042014-02-17 15:27:10 +00003693 unsigned SupportedSpellings = 0;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003694 for (const auto &I : Spellings) {
3695 SpellingKind Kind = StringSwitch<SpellingKind>(I.variety())
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003696 .Case("GNU", GNU)
3697 .Case("CXX11", CXX11)
3698 .Case("Declspec", Declspec)
Nico Weber20e08042016-09-03 02:55:10 +00003699 .Case("Microsoft", Microsoft)
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003700 .Case("Keyword", Keyword)
3701 .Case("Pragma", Pragma);
Aaron Ballman97dba042014-02-17 15:27:10 +00003702
3703 // Mask in the supported spelling.
3704 SupportedSpellings |= Kind;
3705
3706 std::string Name;
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003707 if (Kind == CXX11 && !I.nameSpace().empty())
3708 Name = I.nameSpace() + "::";
3709 Name += I.name();
Aaron Ballman97dba042014-02-17 15:27:10 +00003710
3711 // If this name is the same as the heading, do not add it.
3712 if (Name != Heading)
3713 Names.push_back(Name);
3714 }
3715
3716 // Print out the heading for the attribute. If there are alternate spellings,
3717 // then display those after the heading.
Aaron Ballmanea6668c2014-02-21 14:14:04 +00003718 if (!CustomHeading && !Names.empty()) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003719 Heading += " (";
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003720 for (auto I = Names.begin(), E = Names.end(); I != E; ++I) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003721 if (I != Names.begin())
3722 Heading += ", ";
3723 Heading += *I;
3724 }
3725 Heading += ")";
3726 }
3727 OS << Heading << "\n" << std::string(Heading.length(), '-') << "\n";
3728
3729 if (!SupportedSpellings)
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003730 PrintFatalError(Doc.Attribute->getLoc(),
Aaron Ballman97dba042014-02-17 15:27:10 +00003731 "Attribute has no supported spellings; cannot be "
3732 "documented");
3733
3734 // List what spelling syntaxes the attribute supports.
3735 OS << ".. csv-table:: Supported Syntaxes\n";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003736 OS << " :header: \"GNU\", \"C++11\", \"__declspec\", \"Keyword\",";
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003737 OS << " \"Pragma\", \"Pragma clang attribute\"\n\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003738 OS << " \"";
3739 if (SupportedSpellings & GNU) OS << "X";
3740 OS << "\",\"";
3741 if (SupportedSpellings & CXX11) OS << "X";
3742 OS << "\",\"";
3743 if (SupportedSpellings & Declspec) OS << "X";
3744 OS << "\",\"";
3745 if (SupportedSpellings & Keyword) OS << "X";
Aaron Ballman120c79f2014-06-25 12:48:06 +00003746 OS << "\", \"";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003747 if (SupportedSpellings & Pragma) OS << "X";
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003748 OS << "\", \"";
3749 if (getPragmaAttributeSupport(Records).isAttributedSupported(*Doc.Attribute))
3750 OS << "X";
Tyler Nowickie8b07ed2014-06-13 17:57:25 +00003751 OS << "\"\n\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003752
3753 // If the attribute is deprecated, print a message about it, and possibly
3754 // provide a replacement attribute.
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003755 if (!Doc.Documentation->isValueUnset("Deprecated")) {
Aaron Ballman97dba042014-02-17 15:27:10 +00003756 OS << "This attribute has been deprecated, and may be removed in a future "
3757 << "version of Clang.";
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003758 const Record &Deprecated = *Doc.Documentation->getValueAsDef("Deprecated");
Aaron Ballman97dba042014-02-17 15:27:10 +00003759 std::string Replacement = Deprecated.getValueAsString("Replacement");
3760 if (!Replacement.empty())
3761 OS << " This attribute has been superseded by ``"
3762 << Replacement << "``.";
3763 OS << "\n\n";
3764 }
3765
Aaron Ballman1a3e5852014-02-17 16:18:32 +00003766 std::string ContentStr = Doc.Documentation->getValueAsString("Content");
Aaron Ballman97dba042014-02-17 15:27:10 +00003767 // Trim leading and trailing newlines and spaces.
Benjamin Kramer5c404072015-04-10 21:37:21 +00003768 OS << StringRef(ContentStr).trim();
Aaron Ballman97dba042014-02-17 15:27:10 +00003769
3770 OS << "\n\n\n";
3771}
3772
3773void EmitClangAttrDocs(RecordKeeper &Records, raw_ostream &OS) {
3774 // Get the documentation introduction paragraph.
3775 const Record *Documentation = Records.getDef("GlobalDocumentation");
3776 if (!Documentation) {
3777 PrintFatalError("The Documentation top-level definition is missing, "
3778 "no documentation will be generated.");
3779 return;
3780 }
3781
Aaron Ballman4de1b582014-02-19 22:59:32 +00003782 OS << Documentation->getValueAsString("Intro") << "\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003783
Aaron Ballman97dba042014-02-17 15:27:10 +00003784 // Gather the Documentation lists from each of the attributes, based on the
3785 // category provided.
3786 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003787 std::map<const Record *, std::vector<DocumentationData>> SplitDocs;
Aaron Ballman2f22b942014-05-20 19:47:14 +00003788 for (const auto *A : Attrs) {
3789 const Record &Attr = *A;
Aaron Ballman97dba042014-02-17 15:27:10 +00003790 std::vector<Record *> Docs = Attr.getValueAsListOfDefs("Documentation");
Aaron Ballman2f22b942014-05-20 19:47:14 +00003791 for (const auto *D : Docs) {
3792 const Record &Doc = *D;
Aaron Ballman4de1b582014-02-19 22:59:32 +00003793 const Record *Category = Doc.getValueAsDef("Category");
Aaron Ballman97dba042014-02-17 15:27:10 +00003794 // If the category is "undocumented", then there cannot be any other
3795 // documentation categories (otherwise, the attribute would become
3796 // documented).
Aaron Ballman4de1b582014-02-19 22:59:32 +00003797 std::string Cat = Category->getValueAsString("Name");
3798 bool Undocumented = Cat == "Undocumented";
Aaron Ballman97dba042014-02-17 15:27:10 +00003799 if (Undocumented && Docs.size() > 1)
3800 PrintFatalError(Doc.getLoc(),
3801 "Attribute is \"Undocumented\", but has multiple "
3802 "documentation categories");
3803
3804 if (!Undocumented)
Aaron Ballman4de1b582014-02-19 22:59:32 +00003805 SplitDocs[Category].push_back(DocumentationData(Doc, Attr));
Aaron Ballman97dba042014-02-17 15:27:10 +00003806 }
3807 }
3808
3809 // Having split the attributes out based on what documentation goes where,
3810 // we can begin to generate sections of documentation.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003811 for (const auto &I : SplitDocs) {
3812 WriteCategoryHeader(I.first, OS);
Aaron Ballman97dba042014-02-17 15:27:10 +00003813
3814 // Walk over each of the attributes in the category and write out their
3815 // documentation.
Aaron Ballmanb097f7fe2014-03-02 17:38:37 +00003816 for (const auto &Doc : I.second)
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003817 WriteDocumentation(Records, Doc, OS);
3818 }
3819}
3820
3821void EmitTestPragmaAttributeSupportedAttributes(RecordKeeper &Records,
3822 raw_ostream &OS) {
3823 PragmaClangAttributeSupport Support = getPragmaAttributeSupport(Records);
3824 ParsedAttrMap Attrs = getParsedAttrList(Records);
3825 unsigned NumAttrs = 0;
3826 for (const auto &I : Attrs) {
3827 if (Support.isAttributedSupported(*I.second))
3828 ++NumAttrs;
3829 }
3830 OS << "#pragma clang attribute supports " << NumAttrs << " attributes:\n";
3831 for (const auto &I : Attrs) {
3832 if (!Support.isAttributedSupported(*I.second))
3833 continue;
3834 OS << I.first;
3835 if (I.second->isValueUnset("Subjects")) {
3836 OS << " ()\n";
3837 continue;
3838 }
3839 const Record *SubjectObj = I.second->getValueAsDef("Subjects");
3840 std::vector<Record *> Subjects =
3841 SubjectObj->getValueAsListOfDefs("Subjects");
3842 OS << " (";
3843 for (const auto &Subject : llvm::enumerate(Subjects)) {
3844 if (Subject.index())
3845 OS << ", ";
Alex Lorenz24952fb2017-04-19 15:52:11 +00003846 PragmaClangAttributeSupport::RuleOrAggregateRuleSet &RuleSet =
3847 Support.SubjectsToRules.find(Subject.value())->getSecond();
3848 if (RuleSet.isRule()) {
3849 OS << RuleSet.getRule().getEnumValueName();
3850 continue;
3851 }
3852 OS << "(";
3853 for (const auto &Rule : llvm::enumerate(RuleSet.getAggregateRuleSet())) {
3854 if (Rule.index())
3855 OS << ", ";
3856 OS << Rule.value().getEnumValueName();
3857 }
3858 OS << ")";
Alex Lorenz9e7bf162017-04-18 14:33:39 +00003859 }
3860 OS << ")\n";
Aaron Ballman97dba042014-02-17 15:27:10 +00003861 }
3862}
3863
Jakob Stoklund Olesen995e0e12012-06-13 05:12:41 +00003864} // end namespace clang