2011-10-06 21:03:08 +08:00
|
|
|
//===- ClangAttrEmitter.cpp - Generate Clang attribute handling =-*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// These tablegen backends emit Clang attribute processing code
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-06-19 00:13:52 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2011-10-06 21:03:08 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2013-09-10 07:33:17 +08:00
|
|
|
#include "llvm/ADT/SmallSet.h"
|
2011-10-06 21:03:08 +08:00
|
|
|
#include "llvm/TableGen/Record.h"
|
2012-05-03 01:33:51 +08:00
|
|
|
#include "llvm/TableGen/StringMatcher.h"
|
2012-06-13 13:12:41 +08:00
|
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
2013-11-27 21:27:02 +08:00
|
|
|
#include "llvm/TableGen/Error.h"
|
2011-10-06 21:03:08 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cctype>
|
2013-11-27 21:27:02 +08:00
|
|
|
#include <sstream>
|
2013-11-29 22:57:58 +08:00
|
|
|
#include <set>
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static const std::vector<StringRef>
|
|
|
|
getValueAsListOfStrings(Record &R, StringRef FieldName) {
|
|
|
|
ListInit *List = R.getValueAsListInit(FieldName);
|
|
|
|
assert (List && "Got a null ListInit");
|
|
|
|
|
|
|
|
std::vector<StringRef> Strings;
|
|
|
|
Strings.reserve(List->getSize());
|
|
|
|
|
|
|
|
for (ListInit::const_iterator i = List->begin(), e = List->end();
|
|
|
|
i != e;
|
|
|
|
++i) {
|
|
|
|
assert(*i && "Got a null element in a ListInit");
|
2012-10-11 04:25:43 +08:00
|
|
|
if (StringInit *S = dyn_cast<StringInit>(*i))
|
2011-10-06 21:03:08 +08:00
|
|
|
Strings.push_back(S->getValue());
|
|
|
|
else
|
|
|
|
assert(false && "Got a non-string, non-code element in a ListInit");
|
|
|
|
}
|
|
|
|
|
|
|
|
return Strings;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string ReadPCHRecord(StringRef type) {
|
|
|
|
return StringSwitch<std::string>(type)
|
|
|
|
.EndsWith("Decl *", "GetLocalDeclAs<"
|
|
|
|
+ std::string(type, 0, type.size()-1) + ">(F, Record[Idx++])")
|
2013-11-01 05:23:20 +08:00
|
|
|
.Case("TypeSourceInfo *", "GetTypeSourceInfo(F, Record, Idx)")
|
2012-11-15 09:31:39 +08:00
|
|
|
.Case("Expr *", "ReadExpr(F)")
|
2011-10-06 21:03:08 +08:00
|
|
|
.Case("IdentifierInfo *", "GetIdentifierInfo(F, Record, Idx)")
|
|
|
|
.Case("SourceLocation", "ReadSourceLocation(F, Record, Idx)")
|
|
|
|
.Default("Record[Idx++]");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assumes that the way to get the value is SA->getname()
|
|
|
|
static std::string WritePCHRecord(StringRef type, StringRef name) {
|
|
|
|
return StringSwitch<std::string>(type)
|
|
|
|
.EndsWith("Decl *", "AddDeclRef(" + std::string(name) +
|
|
|
|
", Record);\n")
|
2013-11-01 05:23:20 +08:00
|
|
|
.Case("TypeSourceInfo *",
|
|
|
|
"AddTypeSourceInfo(" + std::string(name) + ", Record);\n")
|
2011-10-06 21:03:08 +08:00
|
|
|
.Case("Expr *", "AddStmt(" + std::string(name) + ");\n")
|
|
|
|
.Case("IdentifierInfo *",
|
|
|
|
"AddIdentifierRef(" + std::string(name) + ", Record);\n")
|
|
|
|
.Case("SourceLocation",
|
|
|
|
"AddSourceLocation(" + std::string(name) + ", Record);\n")
|
|
|
|
.Default("Record.push_back(" + std::string(name) + ");\n");
|
|
|
|
}
|
|
|
|
|
2012-03-07 08:12:16 +08:00
|
|
|
// Normalize attribute name by removing leading and trailing
|
|
|
|
// underscores. For example, __foo, foo__, __foo__ would
|
|
|
|
// become foo.
|
|
|
|
static StringRef NormalizeAttrName(StringRef AttrName) {
|
|
|
|
if (AttrName.startswith("__"))
|
|
|
|
AttrName = AttrName.substr(2, AttrName.size());
|
|
|
|
|
|
|
|
if (AttrName.endswith("__"))
|
|
|
|
AttrName = AttrName.substr(0, AttrName.size() - 2);
|
|
|
|
|
|
|
|
return AttrName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normalize attribute spelling only if the spelling has both leading
|
|
|
|
// and trailing underscores. For example, __ms_struct__ will be
|
|
|
|
// normalized to "ms_struct"; __cdecl will remain intact.
|
|
|
|
static StringRef NormalizeAttrSpelling(StringRef AttrSpelling) {
|
|
|
|
if (AttrSpelling.startswith("__") && AttrSpelling.endswith("__")) {
|
|
|
|
AttrSpelling = AttrSpelling.substr(2, AttrSpelling.size() - 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
return AttrSpelling;
|
|
|
|
}
|
|
|
|
|
2013-12-15 21:05:48 +08:00
|
|
|
typedef std::vector<std::pair<std::string, Record *> > ParsedAttrMap;
|
|
|
|
|
|
|
|
static ParsedAttrMap getParsedAttrList(const RecordKeeper &Records) {
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
std::set<std::string> Seen;
|
|
|
|
ParsedAttrMap R;
|
|
|
|
for (std::vector<Record*>::iterator I = Attrs.begin(), E = Attrs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Record &Attr = **I;
|
|
|
|
if (Attr.getValueAsBit("SemaHandler")) {
|
|
|
|
std::string AN;
|
|
|
|
if (Attr.isSubClassOf("TargetSpecificAttr") &&
|
|
|
|
!Attr.isValueUnset("ParseKind")) {
|
|
|
|
AN = Attr.getValueAsString("ParseKind");
|
|
|
|
|
|
|
|
// If this attribute has already been handled, it does not need to be
|
|
|
|
// handled again.
|
|
|
|
if (Seen.find(AN) != Seen.end())
|
|
|
|
continue;
|
|
|
|
Seen.insert(AN);
|
|
|
|
} else
|
|
|
|
AN = NormalizeAttrName(Attr.getName()).str();
|
|
|
|
|
|
|
|
R.push_back(std::make_pair(AN, *I));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return R;
|
|
|
|
}
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
namespace {
|
|
|
|
class Argument {
|
|
|
|
std::string lowerName, upperName;
|
|
|
|
StringRef attrName;
|
2013-09-10 07:33:17 +08:00
|
|
|
bool isOpt;
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
Argument(Record &Arg, StringRef Attr)
|
|
|
|
: lowerName(Arg.getValueAsString("Name")), upperName(lowerName),
|
2013-09-10 07:33:17 +08:00
|
|
|
attrName(Attr), isOpt(false) {
|
2011-10-06 21:03:08 +08:00
|
|
|
if (!lowerName.empty()) {
|
|
|
|
lowerName[0] = std::tolower(lowerName[0]);
|
|
|
|
upperName[0] = std::toupper(upperName[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virtual ~Argument() {}
|
|
|
|
|
|
|
|
StringRef getLowerName() const { return lowerName; }
|
|
|
|
StringRef getUpperName() const { return upperName; }
|
|
|
|
StringRef getAttrName() const { return attrName; }
|
|
|
|
|
2013-09-10 07:33:17 +08:00
|
|
|
bool isOptional() const { return isOpt; }
|
|
|
|
void setOptional(bool set) { isOpt = set; }
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
// These functions print the argument contents formatted in different ways.
|
|
|
|
virtual void writeAccessors(raw_ostream &OS) const = 0;
|
|
|
|
virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
|
|
|
|
virtual void writeCloneArgs(raw_ostream &OS) const = 0;
|
2012-01-21 06:37:06 +08:00
|
|
|
virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
|
2012-02-10 14:00:29 +08:00
|
|
|
virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
|
2011-10-06 21:03:08 +08:00
|
|
|
virtual void writeCtorBody(raw_ostream &OS) const {}
|
|
|
|
virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
|
2013-09-10 07:33:17 +08:00
|
|
|
virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
|
2011-10-06 21:03:08 +08:00
|
|
|
virtual void writeCtorParameters(raw_ostream &OS) const = 0;
|
|
|
|
virtual void writeDeclarations(raw_ostream &OS) const = 0;
|
|
|
|
virtual void writePCHReadArgs(raw_ostream &OS) const = 0;
|
|
|
|
virtual void writePCHReadDecls(raw_ostream &OS) const = 0;
|
|
|
|
virtual void writePCHWrite(raw_ostream &OS) const = 0;
|
2011-11-20 03:22:57 +08:00
|
|
|
virtual void writeValue(raw_ostream &OS) const = 0;
|
2013-01-08 01:53:08 +08:00
|
|
|
virtual void writeDump(raw_ostream &OS) const = 0;
|
|
|
|
virtual void writeDumpChildren(raw_ostream &OS) const {}
|
2013-01-31 09:44:26 +08:00
|
|
|
virtual void writeHasChildren(raw_ostream &OS) const { OS << "false"; }
|
2013-09-12 03:47:58 +08:00
|
|
|
|
|
|
|
virtual bool isEnumArg() const { return false; }
|
2013-10-05 05:28:06 +08:00
|
|
|
virtual bool isVariadicEnumArg() const { return false; }
|
2011-10-06 21:03:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class SimpleArgument : public Argument {
|
|
|
|
std::string type;
|
|
|
|
|
|
|
|
public:
|
|
|
|
SimpleArgument(Record &Arg, StringRef Attr, std::string T)
|
|
|
|
: Argument(Arg, Attr), type(T)
|
|
|
|
{}
|
|
|
|
|
2012-01-21 06:37:06 +08:00
|
|
|
std::string getType() const { return type; }
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
OS << " " << type << " get" << getUpperName() << "() const {\n";
|
|
|
|
OS << " return " << getLowerName() << ";\n";
|
|
|
|
OS << " }";
|
|
|
|
}
|
|
|
|
void writeCloneArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName();
|
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
OS << "A->get" << getUpperName() << "()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "(" << getUpperName() << ")";
|
|
|
|
}
|
2013-09-10 07:33:17 +08:00
|
|
|
void writeCtorDefaultInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorParameters(raw_ostream &OS) const {
|
|
|
|
OS << type << " " << getUpperName();
|
|
|
|
}
|
|
|
|
void writeDeclarations(raw_ostream &OS) const {
|
|
|
|
OS << type << " " << getLowerName() << ";";
|
|
|
|
}
|
|
|
|
void writePCHReadDecls(raw_ostream &OS) const {
|
|
|
|
std::string read = ReadPCHRecord(type);
|
|
|
|
OS << " " << type << " " << getLowerName() << " = " << read << ";\n";
|
|
|
|
}
|
|
|
|
void writePCHReadArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName();
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const {
|
|
|
|
OS << " " << WritePCHRecord(type, "SA->get" +
|
|
|
|
std::string(getUpperName()) + "()");
|
|
|
|
}
|
2011-11-20 03:22:57 +08:00
|
|
|
void writeValue(raw_ostream &OS) const {
|
|
|
|
if (type == "FunctionDecl *") {
|
2013-11-01 05:23:20 +08:00
|
|
|
OS << "\" << get" << getUpperName()
|
|
|
|
<< "()->getNameInfo().getAsString() << \"";
|
2011-11-20 03:22:57 +08:00
|
|
|
} else if (type == "IdentifierInfo *") {
|
|
|
|
OS << "\" << get" << getUpperName() << "()->getName() << \"";
|
2013-11-01 05:23:20 +08:00
|
|
|
} else if (type == "TypeSourceInfo *") {
|
2011-11-20 03:22:57 +08:00
|
|
|
OS << "\" << get" << getUpperName() << "().getAsString() << \"";
|
|
|
|
} else if (type == "SourceLocation") {
|
|
|
|
OS << "\" << get" << getUpperName() << "().getRawEncoding() << \"";
|
|
|
|
} else {
|
|
|
|
OS << "\" << get" << getUpperName() << "() << \"";
|
|
|
|
}
|
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
if (type == "FunctionDecl *") {
|
|
|
|
OS << " OS << \" \";\n";
|
|
|
|
OS << " dumpBareDeclRef(SA->get" << getUpperName() << "());\n";
|
|
|
|
} else if (type == "IdentifierInfo *") {
|
|
|
|
OS << " OS << \" \" << SA->get" << getUpperName()
|
|
|
|
<< "()->getName();\n";
|
2013-11-01 05:23:20 +08:00
|
|
|
} else if (type == "TypeSourceInfo *") {
|
2013-01-08 01:53:08 +08:00
|
|
|
OS << " OS << \" \" << SA->get" << getUpperName()
|
|
|
|
<< "().getAsString();\n";
|
|
|
|
} else if (type == "SourceLocation") {
|
|
|
|
OS << " OS << \" \";\n";
|
|
|
|
OS << " SA->get" << getUpperName() << "().print(OS, *SM);\n";
|
|
|
|
} else if (type == "bool") {
|
|
|
|
OS << " if (SA->get" << getUpperName() << "()) OS << \" "
|
|
|
|
<< getUpperName() << "\";\n";
|
|
|
|
} else if (type == "int" || type == "unsigned") {
|
|
|
|
OS << " OS << \" \" << SA->get" << getUpperName() << "();\n";
|
|
|
|
} else {
|
|
|
|
llvm_unreachable("Unknown SimpleArgument type!");
|
|
|
|
}
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
};
|
|
|
|
|
2013-11-21 08:28:23 +08:00
|
|
|
class DefaultSimpleArgument : public SimpleArgument {
|
|
|
|
int64_t Default;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DefaultSimpleArgument(Record &Arg, StringRef Attr,
|
|
|
|
std::string T, int64_t Default)
|
|
|
|
: SimpleArgument(Arg, Attr, T), Default(Default) {}
|
|
|
|
|
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
SimpleArgument::writeAccessors(OS);
|
|
|
|
|
|
|
|
OS << "\n\n static const " << getType() << " Default" << getUpperName()
|
|
|
|
<< " = " << Default << ";";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
class StringArgument : public Argument {
|
|
|
|
public:
|
|
|
|
StringArgument(Record &Arg, StringRef Attr)
|
|
|
|
: Argument(Arg, Attr)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
OS << " llvm::StringRef get" << getUpperName() << "() const {\n";
|
|
|
|
OS << " return llvm::StringRef(" << getLowerName() << ", "
|
|
|
|
<< getLowerName() << "Length);\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << " unsigned get" << getUpperName() << "Length() const {\n";
|
|
|
|
OS << " return " << getLowerName() << "Length;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << " void set" << getUpperName()
|
|
|
|
<< "(ASTContext &C, llvm::StringRef S) {\n";
|
|
|
|
OS << " " << getLowerName() << "Length = S.size();\n";
|
|
|
|
OS << " this->" << getLowerName() << " = new (C, 1) char ["
|
|
|
|
<< getLowerName() << "Length];\n";
|
|
|
|
OS << " std::memcpy(this->" << getLowerName() << ", S.data(), "
|
|
|
|
<< getLowerName() << "Length);\n";
|
|
|
|
OS << " }";
|
|
|
|
}
|
|
|
|
void writeCloneArgs(raw_ostream &OS) const {
|
|
|
|
OS << "get" << getUpperName() << "()";
|
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
OS << "A->get" << getUpperName() << "()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorBody(raw_ostream &OS) const {
|
|
|
|
OS << " std::memcpy(" << getLowerName() << ", " << getUpperName()
|
|
|
|
<< ".data(), " << getLowerName() << "Length);";
|
|
|
|
}
|
|
|
|
void writeCtorInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "Length(" << getUpperName() << ".size()),"
|
|
|
|
<< getLowerName() << "(new (Ctx, 1) char[" << getLowerName()
|
|
|
|
<< "Length])";
|
|
|
|
}
|
2013-09-10 07:33:17 +08:00
|
|
|
void writeCtorDefaultInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "Length(0)," << getLowerName() << "(0)";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorParameters(raw_ostream &OS) const {
|
|
|
|
OS << "llvm::StringRef " << getUpperName();
|
|
|
|
}
|
|
|
|
void writeDeclarations(raw_ostream &OS) const {
|
|
|
|
OS << "unsigned " << getLowerName() << "Length;\n";
|
|
|
|
OS << "char *" << getLowerName() << ";";
|
|
|
|
}
|
|
|
|
void writePCHReadDecls(raw_ostream &OS) const {
|
|
|
|
OS << " std::string " << getLowerName()
|
|
|
|
<< "= ReadString(Record, Idx);\n";
|
|
|
|
}
|
|
|
|
void writePCHReadArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName();
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const {
|
|
|
|
OS << " AddString(SA->get" << getUpperName() << "(), Record);\n";
|
|
|
|
}
|
2011-11-20 03:22:57 +08:00
|
|
|
void writeValue(raw_ostream &OS) const {
|
|
|
|
OS << "\\\"\" << get" << getUpperName() << "() << \"\\\"";
|
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
OS << " OS << \" \\\"\" << SA->get" << getUpperName()
|
|
|
|
<< "() << \"\\\"\";\n";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class AlignedArgument : public Argument {
|
|
|
|
public:
|
|
|
|
AlignedArgument(Record &Arg, StringRef Attr)
|
|
|
|
: Argument(Arg, Attr)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
OS << " bool is" << getUpperName() << "Dependent() const;\n";
|
|
|
|
|
|
|
|
OS << " unsigned get" << getUpperName() << "(ASTContext &Ctx) const;\n";
|
|
|
|
|
|
|
|
OS << " bool is" << getUpperName() << "Expr() const {\n";
|
|
|
|
OS << " return is" << getLowerName() << "Expr;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
|
|
|
|
OS << " Expr *get" << getUpperName() << "Expr() const {\n";
|
|
|
|
OS << " assert(is" << getLowerName() << "Expr);\n";
|
|
|
|
OS << " return " << getLowerName() << "Expr;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
|
|
|
|
OS << " TypeSourceInfo *get" << getUpperName() << "Type() const {\n";
|
|
|
|
OS << " assert(!is" << getLowerName() << "Expr);\n";
|
|
|
|
OS << " return " << getLowerName() << "Type;\n";
|
|
|
|
OS << " }";
|
|
|
|
}
|
|
|
|
void writeAccessorDefinitions(raw_ostream &OS) const {
|
|
|
|
OS << "bool " << getAttrName() << "Attr::is" << getUpperName()
|
|
|
|
<< "Dependent() const {\n";
|
|
|
|
OS << " if (is" << getLowerName() << "Expr)\n";
|
|
|
|
OS << " return " << getLowerName() << "Expr && (" << getLowerName()
|
|
|
|
<< "Expr->isValueDependent() || " << getLowerName()
|
|
|
|
<< "Expr->isTypeDependent());\n";
|
|
|
|
OS << " else\n";
|
|
|
|
OS << " return " << getLowerName()
|
|
|
|
<< "Type->getType()->isDependentType();\n";
|
|
|
|
OS << "}\n";
|
|
|
|
|
|
|
|
// FIXME: Do not do the calculation here
|
|
|
|
// FIXME: Handle types correctly
|
|
|
|
// A null pointer means maximum alignment
|
|
|
|
// FIXME: Load the platform-specific maximum alignment, rather than
|
|
|
|
// 16, the x86 max.
|
|
|
|
OS << "unsigned " << getAttrName() << "Attr::get" << getUpperName()
|
|
|
|
<< "(ASTContext &Ctx) const {\n";
|
|
|
|
OS << " assert(!is" << getUpperName() << "Dependent());\n";
|
|
|
|
OS << " if (is" << getLowerName() << "Expr)\n";
|
|
|
|
OS << " return (" << getLowerName() << "Expr ? " << getLowerName()
|
2011-10-11 02:28:20 +08:00
|
|
|
<< "Expr->EvaluateKnownConstInt(Ctx).getZExtValue() : 16)"
|
2011-10-06 21:03:08 +08:00
|
|
|
<< "* Ctx.getCharWidth();\n";
|
|
|
|
OS << " else\n";
|
|
|
|
OS << " return 0; // FIXME\n";
|
|
|
|
OS << "}\n";
|
|
|
|
}
|
|
|
|
void writeCloneArgs(raw_ostream &OS) const {
|
|
|
|
OS << "is" << getLowerName() << "Expr, is" << getLowerName()
|
|
|
|
<< "Expr ? static_cast<void*>(" << getLowerName()
|
|
|
|
<< "Expr) : " << getLowerName()
|
|
|
|
<< "Type";
|
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
// FIXME: move the definition in Sema::InstantiateAttrs to here.
|
|
|
|
// In the meantime, aligned attributes are cloned.
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorBody(raw_ostream &OS) const {
|
|
|
|
OS << " if (is" << getLowerName() << "Expr)\n";
|
|
|
|
OS << " " << getLowerName() << "Expr = reinterpret_cast<Expr *>("
|
|
|
|
<< getUpperName() << ");\n";
|
|
|
|
OS << " else\n";
|
|
|
|
OS << " " << getLowerName()
|
|
|
|
<< "Type = reinterpret_cast<TypeSourceInfo *>(" << getUpperName()
|
|
|
|
<< ");";
|
|
|
|
}
|
|
|
|
void writeCtorInitializers(raw_ostream &OS) const {
|
|
|
|
OS << "is" << getLowerName() << "Expr(Is" << getUpperName() << "Expr)";
|
|
|
|
}
|
2013-09-10 07:33:17 +08:00
|
|
|
void writeCtorDefaultInitializers(raw_ostream &OS) const {
|
|
|
|
OS << "is" << getLowerName() << "Expr(false)";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorParameters(raw_ostream &OS) const {
|
|
|
|
OS << "bool Is" << getUpperName() << "Expr, void *" << getUpperName();
|
|
|
|
}
|
|
|
|
void writeDeclarations(raw_ostream &OS) const {
|
|
|
|
OS << "bool is" << getLowerName() << "Expr;\n";
|
|
|
|
OS << "union {\n";
|
|
|
|
OS << "Expr *" << getLowerName() << "Expr;\n";
|
|
|
|
OS << "TypeSourceInfo *" << getLowerName() << "Type;\n";
|
|
|
|
OS << "};";
|
|
|
|
}
|
|
|
|
void writePCHReadArgs(raw_ostream &OS) const {
|
|
|
|
OS << "is" << getLowerName() << "Expr, " << getLowerName() << "Ptr";
|
|
|
|
}
|
|
|
|
void writePCHReadDecls(raw_ostream &OS) const {
|
|
|
|
OS << " bool is" << getLowerName() << "Expr = Record[Idx++];\n";
|
|
|
|
OS << " void *" << getLowerName() << "Ptr;\n";
|
|
|
|
OS << " if (is" << getLowerName() << "Expr)\n";
|
|
|
|
OS << " " << getLowerName() << "Ptr = ReadExpr(F);\n";
|
|
|
|
OS << " else\n";
|
|
|
|
OS << " " << getLowerName()
|
|
|
|
<< "Ptr = GetTypeSourceInfo(F, Record, Idx);\n";
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const {
|
|
|
|
OS << " Record.push_back(SA->is" << getUpperName() << "Expr());\n";
|
|
|
|
OS << " if (SA->is" << getUpperName() << "Expr())\n";
|
|
|
|
OS << " AddStmt(SA->get" << getUpperName() << "Expr());\n";
|
|
|
|
OS << " else\n";
|
|
|
|
OS << " AddTypeSourceInfo(SA->get" << getUpperName()
|
|
|
|
<< "Type(), Record);\n";
|
|
|
|
}
|
2011-11-20 03:22:57 +08:00
|
|
|
void writeValue(raw_ostream &OS) const {
|
2012-08-16 10:43:29 +08:00
|
|
|
OS << "\";\n"
|
|
|
|
<< " " << getLowerName() << "Expr->printPretty(OS, 0, Policy);\n"
|
|
|
|
<< " OS << \"";
|
2011-11-20 03:22:57 +08:00
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
}
|
|
|
|
void writeDumpChildren(raw_ostream &OS) const {
|
2013-01-31 09:44:26 +08:00
|
|
|
OS << " if (SA->is" << getUpperName() << "Expr()) {\n";
|
|
|
|
OS << " lastChild();\n";
|
2013-01-08 01:53:08 +08:00
|
|
|
OS << " dumpStmt(SA->get" << getUpperName() << "Expr());\n";
|
2013-01-31 09:44:26 +08:00
|
|
|
OS << " } else\n";
|
2013-01-08 01:53:08 +08:00
|
|
|
OS << " dumpType(SA->get" << getUpperName()
|
|
|
|
<< "Type()->getType());\n";
|
|
|
|
}
|
2013-01-31 09:44:26 +08:00
|
|
|
void writeHasChildren(raw_ostream &OS) const {
|
|
|
|
OS << "SA->is" << getUpperName() << "Expr()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class VariadicArgument : public Argument {
|
|
|
|
std::string type;
|
|
|
|
|
|
|
|
public:
|
|
|
|
VariadicArgument(Record &Arg, StringRef Attr, std::string T)
|
|
|
|
: Argument(Arg, Attr), type(T)
|
|
|
|
{}
|
|
|
|
|
|
|
|
std::string getType() const { return type; }
|
|
|
|
|
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
OS << " typedef " << type << "* " << getLowerName() << "_iterator;\n";
|
|
|
|
OS << " " << getLowerName() << "_iterator " << getLowerName()
|
|
|
|
<< "_begin() const {\n";
|
|
|
|
OS << " return " << getLowerName() << ";\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << " " << getLowerName() << "_iterator " << getLowerName()
|
|
|
|
<< "_end() const {\n";
|
|
|
|
OS << " return " << getLowerName() << " + " << getLowerName()
|
|
|
|
<< "Size;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << " unsigned " << getLowerName() << "_size() const {\n"
|
2012-01-21 06:50:54 +08:00
|
|
|
<< " return " << getLowerName() << "Size;\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << " }";
|
|
|
|
}
|
|
|
|
void writeCloneArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << ", " << getLowerName() << "Size";
|
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
// This isn't elegant, but we have to go through public methods...
|
|
|
|
OS << "A->" << getLowerName() << "_begin(), "
|
|
|
|
<< "A->" << getLowerName() << "_size()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorBody(raw_ostream &OS) const {
|
|
|
|
// FIXME: memcpy is not safe on non-trivial types.
|
|
|
|
OS << " std::memcpy(" << getLowerName() << ", " << getUpperName()
|
|
|
|
<< ", " << getLowerName() << "Size * sizeof(" << getType() << "));\n";
|
|
|
|
}
|
|
|
|
void writeCtorInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "Size(" << getUpperName() << "Size), "
|
|
|
|
<< getLowerName() << "(new (Ctx, 16) " << getType() << "["
|
|
|
|
<< getLowerName() << "Size])";
|
|
|
|
}
|
2013-09-10 07:33:17 +08:00
|
|
|
void writeCtorDefaultInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "Size(0), " << getLowerName() << "(0)";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorParameters(raw_ostream &OS) const {
|
|
|
|
OS << getType() << " *" << getUpperName() << ", unsigned "
|
|
|
|
<< getUpperName() << "Size";
|
|
|
|
}
|
|
|
|
void writeDeclarations(raw_ostream &OS) const {
|
|
|
|
OS << " unsigned " << getLowerName() << "Size;\n";
|
|
|
|
OS << " " << getType() << " *" << getLowerName() << ";";
|
|
|
|
}
|
|
|
|
void writePCHReadDecls(raw_ostream &OS) const {
|
|
|
|
OS << " unsigned " << getLowerName() << "Size = Record[Idx++];\n";
|
2013-01-13 03:30:44 +08:00
|
|
|
OS << " SmallVector<" << type << ", 4> " << getLowerName()
|
2011-10-06 21:03:08 +08:00
|
|
|
<< ";\n";
|
|
|
|
OS << " " << getLowerName() << ".reserve(" << getLowerName()
|
|
|
|
<< "Size);\n";
|
2013-10-05 05:28:06 +08:00
|
|
|
OS << " for (unsigned i = " << getLowerName() << "Size; i; --i)\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
std::string read = ReadPCHRecord(type);
|
|
|
|
OS << " " << getLowerName() << ".push_back(" << read << ");\n";
|
|
|
|
}
|
|
|
|
void writePCHReadArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << ".data(), " << getLowerName() << "Size";
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const{
|
|
|
|
OS << " Record.push_back(SA->" << getLowerName() << "_size());\n";
|
|
|
|
OS << " for (" << getAttrName() << "Attr::" << getLowerName()
|
|
|
|
<< "_iterator i = SA->" << getLowerName() << "_begin(), e = SA->"
|
|
|
|
<< getLowerName() << "_end(); i != e; ++i)\n";
|
|
|
|
OS << " " << WritePCHRecord(type, "(*i)");
|
|
|
|
}
|
2011-11-20 03:22:57 +08:00
|
|
|
void writeValue(raw_ostream &OS) const {
|
|
|
|
OS << "\";\n";
|
|
|
|
OS << " bool isFirst = true;\n"
|
|
|
|
<< " for (" << getAttrName() << "Attr::" << getLowerName()
|
|
|
|
<< "_iterator i = " << getLowerName() << "_begin(), e = "
|
|
|
|
<< getLowerName() << "_end(); i != e; ++i) {\n"
|
|
|
|
<< " if (isFirst) isFirst = false;\n"
|
|
|
|
<< " else OS << \", \";\n"
|
|
|
|
<< " OS << *i;\n"
|
|
|
|
<< " }\n";
|
|
|
|
OS << " OS << \"";
|
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
OS << " for (" << getAttrName() << "Attr::" << getLowerName()
|
|
|
|
<< "_iterator I = SA->" << getLowerName() << "_begin(), E = SA->"
|
|
|
|
<< getLowerName() << "_end(); I != E; ++I)\n";
|
|
|
|
OS << " OS << \" \" << *I;\n";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class EnumArgument : public Argument {
|
|
|
|
std::string type;
|
2013-01-08 01:53:08 +08:00
|
|
|
std::vector<StringRef> values, enums, uniques;
|
2011-10-06 21:03:08 +08:00
|
|
|
public:
|
|
|
|
EnumArgument(Record &Arg, StringRef Attr)
|
|
|
|
: Argument(Arg, Attr), type(Arg.getValueAsString("Type")),
|
|
|
|
values(getValueAsListOfStrings(Arg, "Values")),
|
2013-01-08 01:53:08 +08:00
|
|
|
enums(getValueAsListOfStrings(Arg, "Enums")),
|
|
|
|
uniques(enums)
|
|
|
|
{
|
|
|
|
// Calculate the various enum values
|
|
|
|
std::sort(uniques.begin(), uniques.end());
|
|
|
|
uniques.erase(std::unique(uniques.begin(), uniques.end()), uniques.end());
|
|
|
|
// FIXME: Emit a proper error
|
|
|
|
assert(!uniques.empty());
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
|
2013-09-12 03:47:58 +08:00
|
|
|
bool isEnumArg() const { return true; }
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
OS << " " << type << " get" << getUpperName() << "() const {\n";
|
|
|
|
OS << " return " << getLowerName() << ";\n";
|
|
|
|
OS << " }";
|
|
|
|
}
|
|
|
|
void writeCloneArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName();
|
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
OS << "A->get" << getUpperName() << "()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "(" << getUpperName() << ")";
|
|
|
|
}
|
2013-09-10 07:33:17 +08:00
|
|
|
void writeCtorDefaultInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "(" << type << "(0))";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorParameters(raw_ostream &OS) const {
|
|
|
|
OS << type << " " << getUpperName();
|
|
|
|
}
|
|
|
|
void writeDeclarations(raw_ostream &OS) const {
|
2013-01-08 01:53:08 +08:00
|
|
|
std::vector<StringRef>::const_iterator i = uniques.begin(),
|
|
|
|
e = uniques.end();
|
2011-10-06 21:03:08 +08:00
|
|
|
// The last one needs to not have a comma.
|
|
|
|
--e;
|
|
|
|
|
|
|
|
OS << "public:\n";
|
|
|
|
OS << " enum " << type << " {\n";
|
|
|
|
for (; i != e; ++i)
|
|
|
|
OS << " " << *i << ",\n";
|
|
|
|
OS << " " << *e << "\n";
|
|
|
|
OS << " };\n";
|
|
|
|
OS << "private:\n";
|
|
|
|
OS << " " << type << " " << getLowerName() << ";";
|
|
|
|
}
|
|
|
|
void writePCHReadDecls(raw_ostream &OS) const {
|
|
|
|
OS << " " << getAttrName() << "Attr::" << type << " " << getLowerName()
|
|
|
|
<< "(static_cast<" << getAttrName() << "Attr::" << type
|
|
|
|
<< ">(Record[Idx++]));\n";
|
|
|
|
}
|
|
|
|
void writePCHReadArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName();
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const {
|
|
|
|
OS << "Record.push_back(SA->get" << getUpperName() << "());\n";
|
|
|
|
}
|
2011-11-20 03:22:57 +08:00
|
|
|
void writeValue(raw_ostream &OS) const {
|
|
|
|
OS << "\" << get" << getUpperName() << "() << \"";
|
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
OS << " switch(SA->get" << getUpperName() << "()) {\n";
|
|
|
|
for (std::vector<StringRef>::const_iterator I = uniques.begin(),
|
|
|
|
E = uniques.end(); I != E; ++I) {
|
|
|
|
OS << " case " << getAttrName() << "Attr::" << *I << ":\n";
|
|
|
|
OS << " OS << \" " << *I << "\";\n";
|
|
|
|
OS << " break;\n";
|
|
|
|
}
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
2013-09-12 03:47:58 +08:00
|
|
|
|
|
|
|
void writeConversion(raw_ostream &OS) const {
|
|
|
|
OS << " static bool ConvertStrTo" << type << "(StringRef Val, ";
|
|
|
|
OS << type << " &Out) {\n";
|
|
|
|
OS << " Optional<" << type << "> R = llvm::StringSwitch<Optional<";
|
|
|
|
OS << type << "> >(Val)\n";
|
|
|
|
for (size_t I = 0; I < enums.size(); ++I) {
|
|
|
|
OS << " .Case(\"" << values[I] << "\", ";
|
|
|
|
OS << getAttrName() << "Attr::" << enums[I] << ")\n";
|
|
|
|
}
|
|
|
|
OS << " .Default(Optional<" << type << ">());\n";
|
|
|
|
OS << " if (R) {\n";
|
|
|
|
OS << " Out = *R;\n return true;\n }\n";
|
|
|
|
OS << " return false;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
};
|
2013-10-05 05:28:06 +08:00
|
|
|
|
|
|
|
class VariadicEnumArgument: public VariadicArgument {
|
|
|
|
std::string type, QualifiedTypeName;
|
|
|
|
std::vector<StringRef> values, enums, uniques;
|
|
|
|
public:
|
|
|
|
VariadicEnumArgument(Record &Arg, StringRef Attr)
|
|
|
|
: VariadicArgument(Arg, Attr, Arg.getValueAsString("Type")),
|
|
|
|
type(Arg.getValueAsString("Type")),
|
|
|
|
values(getValueAsListOfStrings(Arg, "Values")),
|
|
|
|
enums(getValueAsListOfStrings(Arg, "Enums")),
|
|
|
|
uniques(enums)
|
|
|
|
{
|
|
|
|
// Calculate the various enum values
|
|
|
|
std::sort(uniques.begin(), uniques.end());
|
|
|
|
uniques.erase(std::unique(uniques.begin(), uniques.end()), uniques.end());
|
|
|
|
|
|
|
|
QualifiedTypeName = getAttrName().str() + "Attr::" + type;
|
|
|
|
|
|
|
|
// FIXME: Emit a proper error
|
|
|
|
assert(!uniques.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isVariadicEnumArg() const { return true; }
|
|
|
|
|
|
|
|
void writeDeclarations(raw_ostream &OS) const {
|
|
|
|
std::vector<StringRef>::const_iterator i = uniques.begin(),
|
|
|
|
e = uniques.end();
|
|
|
|
// The last one needs to not have a comma.
|
|
|
|
--e;
|
|
|
|
|
|
|
|
OS << "public:\n";
|
|
|
|
OS << " enum " << type << " {\n";
|
|
|
|
for (; i != e; ++i)
|
|
|
|
OS << " " << *i << ",\n";
|
|
|
|
OS << " " << *e << "\n";
|
|
|
|
OS << " };\n";
|
|
|
|
OS << "private:\n";
|
|
|
|
|
|
|
|
VariadicArgument::writeDeclarations(OS);
|
|
|
|
}
|
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
OS << " for (" << getAttrName() << "Attr::" << getLowerName()
|
|
|
|
<< "_iterator I = SA->" << getLowerName() << "_begin(), E = SA->"
|
|
|
|
<< getLowerName() << "_end(); I != E; ++I) {\n";
|
|
|
|
OS << " switch(*I) {\n";
|
|
|
|
for (std::vector<StringRef>::const_iterator UI = uniques.begin(),
|
|
|
|
UE = uniques.end(); UI != UE; ++UI) {
|
|
|
|
OS << " case " << getAttrName() << "Attr::" << *UI << ":\n";
|
|
|
|
OS << " OS << \" " << *UI << "\";\n";
|
|
|
|
OS << " break;\n";
|
|
|
|
}
|
|
|
|
OS << " }\n";
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
void writePCHReadDecls(raw_ostream &OS) const {
|
|
|
|
OS << " unsigned " << getLowerName() << "Size = Record[Idx++];\n";
|
|
|
|
OS << " SmallVector<" << QualifiedTypeName << ", 4> " << getLowerName()
|
|
|
|
<< ";\n";
|
|
|
|
OS << " " << getLowerName() << ".reserve(" << getLowerName()
|
|
|
|
<< "Size);\n";
|
|
|
|
OS << " for (unsigned i = " << getLowerName() << "Size; i; --i)\n";
|
|
|
|
OS << " " << getLowerName() << ".push_back(" << "static_cast<"
|
|
|
|
<< QualifiedTypeName << ">(Record[Idx++]));\n";
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const{
|
|
|
|
OS << " Record.push_back(SA->" << getLowerName() << "_size());\n";
|
|
|
|
OS << " for (" << getAttrName() << "Attr::" << getLowerName()
|
|
|
|
<< "_iterator i = SA->" << getLowerName() << "_begin(), e = SA->"
|
|
|
|
<< getLowerName() << "_end(); i != e; ++i)\n";
|
|
|
|
OS << " " << WritePCHRecord(QualifiedTypeName, "(*i)");
|
|
|
|
}
|
|
|
|
void writeConversion(raw_ostream &OS) const {
|
|
|
|
OS << " static bool ConvertStrTo" << type << "(StringRef Val, ";
|
|
|
|
OS << type << " &Out) {\n";
|
|
|
|
OS << " Optional<" << type << "> R = llvm::StringSwitch<Optional<";
|
|
|
|
OS << type << "> >(Val)\n";
|
|
|
|
for (size_t I = 0; I < enums.size(); ++I) {
|
|
|
|
OS << " .Case(\"" << values[I] << "\", ";
|
|
|
|
OS << getAttrName() << "Attr::" << enums[I] << ")\n";
|
|
|
|
}
|
|
|
|
OS << " .Default(Optional<" << type << ">());\n";
|
|
|
|
OS << " if (R) {\n";
|
|
|
|
OS << " Out = *R;\n return true;\n }\n";
|
|
|
|
OS << " return false;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
};
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
class VersionArgument : public Argument {
|
|
|
|
public:
|
|
|
|
VersionArgument(Record &Arg, StringRef Attr)
|
|
|
|
: Argument(Arg, Attr)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
OS << " VersionTuple get" << getUpperName() << "() const {\n";
|
|
|
|
OS << " return " << getLowerName() << ";\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << " void set" << getUpperName()
|
|
|
|
<< "(ASTContext &C, VersionTuple V) {\n";
|
|
|
|
OS << " " << getLowerName() << " = V;\n";
|
|
|
|
OS << " }";
|
|
|
|
}
|
|
|
|
void writeCloneArgs(raw_ostream &OS) const {
|
|
|
|
OS << "get" << getUpperName() << "()";
|
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
OS << "A->get" << getUpperName() << "()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorBody(raw_ostream &OS) const {
|
|
|
|
}
|
|
|
|
void writeCtorInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "(" << getUpperName() << ")";
|
|
|
|
}
|
2013-09-10 07:33:17 +08:00
|
|
|
void writeCtorDefaultInitializers(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "()";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
void writeCtorParameters(raw_ostream &OS) const {
|
|
|
|
OS << "VersionTuple " << getUpperName();
|
|
|
|
}
|
|
|
|
void writeDeclarations(raw_ostream &OS) const {
|
|
|
|
OS << "VersionTuple " << getLowerName() << ";\n";
|
|
|
|
}
|
|
|
|
void writePCHReadDecls(raw_ostream &OS) const {
|
|
|
|
OS << " VersionTuple " << getLowerName()
|
|
|
|
<< "= ReadVersionTuple(Record, Idx);\n";
|
|
|
|
}
|
|
|
|
void writePCHReadArgs(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName();
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const {
|
|
|
|
OS << " AddVersionTuple(SA->get" << getUpperName() << "(), Record);\n";
|
|
|
|
}
|
2011-11-20 03:22:57 +08:00
|
|
|
void writeValue(raw_ostream &OS) const {
|
|
|
|
OS << getLowerName() << "=\" << get" << getUpperName() << "() << \"";
|
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
OS << " OS << \" \" << SA->get" << getUpperName() << "();\n";
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
};
|
2012-01-21 06:37:06 +08:00
|
|
|
|
|
|
|
class ExprArgument : public SimpleArgument {
|
|
|
|
public:
|
|
|
|
ExprArgument(Record &Arg, StringRef Attr)
|
|
|
|
: SimpleArgument(Arg, Attr, "Expr *")
|
|
|
|
{}
|
|
|
|
|
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
OS << "tempInst" << getUpperName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeTemplateInstantiation(raw_ostream &OS) const {
|
|
|
|
OS << " " << getType() << " tempInst" << getUpperName() << ";\n";
|
|
|
|
OS << " {\n";
|
|
|
|
OS << " EnterExpressionEvaluationContext "
|
|
|
|
<< "Unevaluated(S, Sema::Unevaluated);\n";
|
|
|
|
OS << " ExprResult " << "Result = S.SubstExpr("
|
|
|
|
<< "A->get" << getUpperName() << "(), TemplateArgs);\n";
|
|
|
|
OS << " tempInst" << getUpperName() << " = "
|
|
|
|
<< "Result.takeAs<Expr>();\n";
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
|
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeDumpChildren(raw_ostream &OS) const {
|
2013-01-31 09:44:26 +08:00
|
|
|
OS << " lastChild();\n";
|
2013-01-08 01:53:08 +08:00
|
|
|
OS << " dumpStmt(SA->get" << getUpperName() << "());\n";
|
|
|
|
}
|
2013-01-31 09:44:26 +08:00
|
|
|
void writeHasChildren(raw_ostream &OS) const { OS << "true"; }
|
2012-01-21 06:37:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class VariadicExprArgument : public VariadicArgument {
|
|
|
|
public:
|
|
|
|
VariadicExprArgument(Record &Arg, StringRef Attr)
|
|
|
|
: VariadicArgument(Arg, Attr, "Expr *")
|
|
|
|
{}
|
|
|
|
|
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
OS << "tempInst" << getUpperName() << ", "
|
|
|
|
<< "A->" << getLowerName() << "_size()";
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeTemplateInstantiation(raw_ostream &OS) const {
|
|
|
|
OS << " " << getType() << " *tempInst" << getUpperName()
|
|
|
|
<< " = new (C, 16) " << getType()
|
|
|
|
<< "[A->" << getLowerName() << "_size()];\n";
|
|
|
|
OS << " {\n";
|
|
|
|
OS << " EnterExpressionEvaluationContext "
|
|
|
|
<< "Unevaluated(S, Sema::Unevaluated);\n";
|
|
|
|
OS << " " << getType() << " *TI = tempInst" << getUpperName()
|
|
|
|
<< ";\n";
|
|
|
|
OS << " " << getType() << " *I = A->" << getLowerName()
|
|
|
|
<< "_begin();\n";
|
|
|
|
OS << " " << getType() << " *E = A->" << getLowerName()
|
|
|
|
<< "_end();\n";
|
|
|
|
OS << " for (; I != E; ++I, ++TI) {\n";
|
|
|
|
OS << " ExprResult Result = S.SubstExpr(*I, TemplateArgs);\n";
|
|
|
|
OS << " *TI = Result.takeAs<Expr>();\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
2013-01-08 01:53:08 +08:00
|
|
|
|
|
|
|
void writeDump(raw_ostream &OS) const {
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeDumpChildren(raw_ostream &OS) const {
|
|
|
|
OS << " for (" << getAttrName() << "Attr::" << getLowerName()
|
|
|
|
<< "_iterator I = SA->" << getLowerName() << "_begin(), E = SA->"
|
2013-01-31 09:44:26 +08:00
|
|
|
<< getLowerName() << "_end(); I != E; ++I) {\n";
|
|
|
|
OS << " if (I + 1 == E)\n";
|
|
|
|
OS << " lastChild();\n";
|
2013-01-08 01:53:08 +08:00
|
|
|
OS << " dumpStmt(*I);\n";
|
2013-01-31 09:44:26 +08:00
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeHasChildren(raw_ostream &OS) const {
|
|
|
|
OS << "SA->" << getLowerName() << "_begin() != "
|
|
|
|
<< "SA->" << getLowerName() << "_end()";
|
2013-01-08 01:53:08 +08:00
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
};
|
2013-11-01 05:23:20 +08:00
|
|
|
|
|
|
|
class TypeArgument : public SimpleArgument {
|
|
|
|
public:
|
|
|
|
TypeArgument(Record &Arg, StringRef Attr)
|
|
|
|
: SimpleArgument(Arg, Attr, "TypeSourceInfo *")
|
|
|
|
{}
|
|
|
|
|
|
|
|
void writeAccessors(raw_ostream &OS) const {
|
|
|
|
OS << " QualType get" << getUpperName() << "() const {\n";
|
|
|
|
OS << " return " << getLowerName() << "->getType();\n";
|
|
|
|
OS << " }";
|
|
|
|
OS << " " << getType() << " get" << getUpperName() << "Loc() const {\n";
|
|
|
|
OS << " return " << getLowerName() << ";\n";
|
|
|
|
OS << " }";
|
|
|
|
}
|
|
|
|
void writeTemplateInstantiationArgs(raw_ostream &OS) const {
|
|
|
|
OS << "A->get" << getUpperName() << "Loc()";
|
|
|
|
}
|
|
|
|
void writePCHWrite(raw_ostream &OS) const {
|
|
|
|
OS << " " << WritePCHRecord(
|
|
|
|
getType(), "SA->get" + std::string(getUpperName()) + "Loc()");
|
|
|
|
}
|
|
|
|
};
|
2011-10-06 21:03:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static Argument *createArgument(Record &Arg, StringRef Attr,
|
|
|
|
Record *Search = 0) {
|
|
|
|
if (!Search)
|
|
|
|
Search = &Arg;
|
|
|
|
|
|
|
|
Argument *Ptr = 0;
|
|
|
|
llvm::StringRef ArgName = Search->getName();
|
|
|
|
|
|
|
|
if (ArgName == "AlignedArgument") Ptr = new AlignedArgument(Arg, Attr);
|
|
|
|
else if (ArgName == "EnumArgument") Ptr = new EnumArgument(Arg, Attr);
|
2012-01-21 06:37:06 +08:00
|
|
|
else if (ArgName == "ExprArgument") Ptr = new ExprArgument(Arg, Attr);
|
2011-10-06 21:03:08 +08:00
|
|
|
else if (ArgName == "FunctionArgument")
|
|
|
|
Ptr = new SimpleArgument(Arg, Attr, "FunctionDecl *");
|
|
|
|
else if (ArgName == "IdentifierArgument")
|
|
|
|
Ptr = new SimpleArgument(Arg, Attr, "IdentifierInfo *");
|
|
|
|
else if (ArgName == "BoolArgument") Ptr = new SimpleArgument(Arg, Attr,
|
|
|
|
"bool");
|
2013-11-21 08:28:23 +08:00
|
|
|
else if (ArgName == "DefaultIntArgument")
|
|
|
|
Ptr = new DefaultSimpleArgument(Arg, Attr, "int",
|
|
|
|
Arg.getValueAsInt("Default"));
|
2011-10-06 21:03:08 +08:00
|
|
|
else if (ArgName == "IntArgument") Ptr = new SimpleArgument(Arg, Attr, "int");
|
|
|
|
else if (ArgName == "StringArgument") Ptr = new StringArgument(Arg, Attr);
|
2013-11-01 05:23:20 +08:00
|
|
|
else if (ArgName == "TypeArgument") Ptr = new TypeArgument(Arg, Attr);
|
2011-10-06 21:03:08 +08:00
|
|
|
else if (ArgName == "UnsignedArgument")
|
|
|
|
Ptr = new SimpleArgument(Arg, Attr, "unsigned");
|
|
|
|
else if (ArgName == "SourceLocArgument")
|
|
|
|
Ptr = new SimpleArgument(Arg, Attr, "SourceLocation");
|
|
|
|
else if (ArgName == "VariadicUnsignedArgument")
|
|
|
|
Ptr = new VariadicArgument(Arg, Attr, "unsigned");
|
2013-10-05 05:28:06 +08:00
|
|
|
else if (ArgName == "VariadicEnumArgument")
|
|
|
|
Ptr = new VariadicEnumArgument(Arg, Attr);
|
2011-10-06 21:03:08 +08:00
|
|
|
else if (ArgName == "VariadicExprArgument")
|
2012-01-21 06:37:06 +08:00
|
|
|
Ptr = new VariadicExprArgument(Arg, Attr);
|
2011-10-06 21:03:08 +08:00
|
|
|
else if (ArgName == "VersionArgument")
|
|
|
|
Ptr = new VersionArgument(Arg, Attr);
|
|
|
|
|
|
|
|
if (!Ptr) {
|
2013-11-21 08:28:23 +08:00
|
|
|
// Search in reverse order so that the most-derived type is handled first.
|
2011-10-06 21:03:08 +08:00
|
|
|
std::vector<Record*> Bases = Search->getSuperClasses();
|
2013-11-21 08:28:23 +08:00
|
|
|
for (std::vector<Record*>::reverse_iterator i = Bases.rbegin(),
|
|
|
|
e = Bases.rend(); i != e; ++i) {
|
2011-10-06 21:03:08 +08:00
|
|
|
Ptr = createArgument(Arg, Attr, *i);
|
|
|
|
if (Ptr)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-09-10 07:33:17 +08:00
|
|
|
|
|
|
|
if (Ptr && Arg.getValueAsBit("Optional"))
|
|
|
|
Ptr->setOptional(true);
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
return Ptr;
|
|
|
|
}
|
|
|
|
|
2011-11-20 03:22:57 +08:00
|
|
|
static void writeAvailabilityValue(raw_ostream &OS) {
|
|
|
|
OS << "\" << getPlatform()->getName();\n"
|
|
|
|
<< " if (!getIntroduced().empty()) OS << \", introduced=\" << getIntroduced();\n"
|
|
|
|
<< " if (!getDeprecated().empty()) OS << \", deprecated=\" << getDeprecated();\n"
|
|
|
|
<< " if (!getObsoleted().empty()) OS << \", obsoleted=\" << getObsoleted();\n"
|
|
|
|
<< " if (getUnavailable()) OS << \", unavailable\";\n"
|
|
|
|
<< " OS << \"";
|
|
|
|
}
|
|
|
|
|
2013-01-25 00:46:58 +08:00
|
|
|
static void writePrettyPrintFunction(Record &R, std::vector<Argument*> &Args,
|
|
|
|
raw_ostream &OS) {
|
|
|
|
std::vector<Record*> Spellings = R.getValueAsListOfDefs("Spellings");
|
|
|
|
|
|
|
|
OS << "void " << R.getName() << "Attr::printPretty("
|
|
|
|
<< "raw_ostream &OS, const PrintingPolicy &Policy) const {\n";
|
|
|
|
|
|
|
|
if (Spellings.size() == 0) {
|
|
|
|
OS << "}\n\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
OS <<
|
|
|
|
" switch (SpellingListIndex) {\n"
|
|
|
|
" default:\n"
|
|
|
|
" llvm_unreachable(\"Unknown attribute spelling!\");\n"
|
|
|
|
" break;\n";
|
|
|
|
|
|
|
|
for (unsigned I = 0; I < Spellings.size(); ++ I) {
|
|
|
|
llvm::SmallString<16> Prefix;
|
|
|
|
llvm::SmallString<8> Suffix;
|
|
|
|
// The actual spelling of the name and namespace (if applicable)
|
|
|
|
// of an attribute without considering prefix and suffix.
|
|
|
|
llvm::SmallString<64> Spelling;
|
|
|
|
std::string Name = Spellings[I]->getValueAsString("Name");
|
|
|
|
std::string Variety = Spellings[I]->getValueAsString("Variety");
|
|
|
|
|
|
|
|
if (Variety == "GNU") {
|
|
|
|
Prefix = " __attribute__((";
|
|
|
|
Suffix = "))";
|
|
|
|
} else if (Variety == "CXX11") {
|
|
|
|
Prefix = " [[";
|
|
|
|
Suffix = "]]";
|
|
|
|
std::string Namespace = Spellings[I]->getValueAsString("Namespace");
|
|
|
|
if (Namespace != "") {
|
|
|
|
Spelling += Namespace;
|
|
|
|
Spelling += "::";
|
|
|
|
}
|
|
|
|
} else if (Variety == "Declspec") {
|
|
|
|
Prefix = " __declspec(";
|
|
|
|
Suffix = ")";
|
2013-01-29 09:24:26 +08:00
|
|
|
} else if (Variety == "Keyword") {
|
|
|
|
Prefix = " ";
|
|
|
|
Suffix = "";
|
2013-01-25 00:46:58 +08:00
|
|
|
} else {
|
2013-01-29 09:24:26 +08:00
|
|
|
llvm_unreachable("Unknown attribute syntax variety!");
|
2013-01-25 00:46:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Spelling += Name;
|
|
|
|
|
|
|
|
OS <<
|
|
|
|
" case " << I << " : {\n"
|
|
|
|
" OS << \"" + Prefix.str() + Spelling.str();
|
|
|
|
|
|
|
|
if (Args.size()) OS << "(";
|
|
|
|
if (Spelling == "availability") {
|
|
|
|
writeAvailabilityValue(OS);
|
|
|
|
} else {
|
|
|
|
for (std::vector<Argument*>::const_iterator I = Args.begin(),
|
|
|
|
E = Args.end(); I != E; ++ I) {
|
|
|
|
if (I != Args.begin()) OS << ", ";
|
|
|
|
(*I)->writeValue(OS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Args.size()) OS << ")";
|
|
|
|
OS << Suffix.str() + "\";\n";
|
|
|
|
|
|
|
|
OS <<
|
|
|
|
" break;\n"
|
|
|
|
" }\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// End of the switch statement.
|
|
|
|
OS << "}\n";
|
|
|
|
// End of the print function.
|
|
|
|
OS << "}\n\n";
|
|
|
|
}
|
|
|
|
|
2013-02-01 09:19:17 +08:00
|
|
|
/// \brief Return the index of a spelling in a spelling list.
|
|
|
|
static unsigned getSpellingListIndex(const std::vector<Record*> &SpellingList,
|
|
|
|
const Record &Spelling) {
|
|
|
|
assert(SpellingList.size() && "Spelling list is empty!");
|
|
|
|
|
|
|
|
for (unsigned Index = 0; Index < SpellingList.size(); ++Index) {
|
|
|
|
Record *S = SpellingList[Index];
|
|
|
|
if (S->getValueAsString("Variety") != Spelling.getValueAsString("Variety"))
|
|
|
|
continue;
|
|
|
|
if (S->getValueAsString("Variety") == "CXX11" &&
|
|
|
|
S->getValueAsString("Namespace") !=
|
|
|
|
Spelling.getValueAsString("Namespace"))
|
|
|
|
continue;
|
|
|
|
if (S->getValueAsString("Name") != Spelling.getValueAsString("Name"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return Index;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm_unreachable("Unknown spelling!");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void writeAttrAccessorDefinition(Record &R, raw_ostream &OS) {
|
|
|
|
std::vector<Record*> Accessors = R.getValueAsListOfDefs("Accessors");
|
|
|
|
for (std::vector<Record*>::const_iterator I = Accessors.begin(),
|
|
|
|
E = Accessors.end(); I != E; ++I) {
|
|
|
|
Record *Accessor = *I;
|
|
|
|
std::string Name = Accessor->getValueAsString("Name");
|
|
|
|
std::vector<Record*> Spellings = Accessor->getValueAsListOfDefs(
|
|
|
|
"Spellings");
|
|
|
|
std::vector<Record*> SpellingList = R.getValueAsListOfDefs("Spellings");
|
|
|
|
assert(SpellingList.size() &&
|
|
|
|
"Attribute with empty spelling list can't have accessors!");
|
|
|
|
|
|
|
|
OS << " bool " << Name << "() const { return SpellingListIndex == ";
|
|
|
|
for (unsigned Index = 0; Index < Spellings.size(); ++Index) {
|
|
|
|
OS << getSpellingListIndex(SpellingList, *Spellings[Index]);
|
|
|
|
if (Index != Spellings.size() -1)
|
|
|
|
OS << " ||\n SpellingListIndex == ";
|
|
|
|
else
|
|
|
|
OS << "; }\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
namespace clang {
|
|
|
|
|
|
|
|
// Emits the class definitions for attributes.
|
|
|
|
void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Attribute classes' definitions", OS);
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << "#ifndef LLVM_CLANG_ATTR_CLASSES_INC\n";
|
|
|
|
OS << "#define LLVM_CLANG_ATTR_CLASSES_INC\n\n";
|
|
|
|
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
|
|
|
|
for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
Record &R = **i;
|
2012-05-02 23:56:52 +08:00
|
|
|
|
|
|
|
if (!R.getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
|
|
|
|
2013-07-30 09:44:15 +08:00
|
|
|
const std::vector<Record *> Supers = R.getSuperClasses();
|
|
|
|
assert(!Supers.empty() && "Forgot to specify a superclass for the attr");
|
|
|
|
std::string SuperName;
|
|
|
|
for (std::vector<Record *>::const_reverse_iterator I = Supers.rbegin(),
|
|
|
|
E = Supers.rend(); I != E; ++I) {
|
|
|
|
const Record &R = **I;
|
2013-07-31 10:20:22 +08:00
|
|
|
if (R.getName() != "TargetSpecificAttr" && SuperName.empty())
|
2013-07-30 09:44:15 +08:00
|
|
|
SuperName = R.getName();
|
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
OS << "class " << R.getName() << "Attr : public " << SuperName << " {\n";
|
|
|
|
|
|
|
|
std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
|
|
|
|
std::vector<Argument*> Args;
|
|
|
|
std::vector<Argument*>::iterator ai, ae;
|
|
|
|
Args.reserve(ArgRecords.size());
|
|
|
|
|
|
|
|
for (std::vector<Record*>::iterator ri = ArgRecords.begin(),
|
|
|
|
re = ArgRecords.end();
|
|
|
|
ri != re; ++ri) {
|
|
|
|
Record &ArgRecord = **ri;
|
|
|
|
Argument *Arg = createArgument(ArgRecord, R.getName());
|
|
|
|
assert(Arg);
|
|
|
|
Args.push_back(Arg);
|
|
|
|
|
|
|
|
Arg->writeDeclarations(OS);
|
|
|
|
OS << "\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
ae = Args.end();
|
|
|
|
|
|
|
|
OS << "\n public:\n";
|
|
|
|
OS << " " << R.getName() << "Attr(SourceRange R, ASTContext &Ctx\n";
|
|
|
|
|
2013-09-10 07:33:17 +08:00
|
|
|
bool HasOpt = false;
|
2011-10-06 21:03:08 +08:00
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
OS << " , ";
|
|
|
|
(*ai)->writeCtorParameters(OS);
|
|
|
|
OS << "\n";
|
2013-09-10 07:33:17 +08:00
|
|
|
if ((*ai)->isOptional())
|
|
|
|
HasOpt = true;
|
2011-10-06 21:03:08 +08:00
|
|
|
}
|
2013-01-25 00:46:58 +08:00
|
|
|
|
|
|
|
OS << " , ";
|
|
|
|
OS << "unsigned SI = 0\n";
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << " )\n";
|
2013-01-25 00:46:58 +08:00
|
|
|
OS << " : " << SuperName << "(attr::" << R.getName() << ", R, SI)\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
OS << " , ";
|
|
|
|
(*ai)->writeCtorInitializers(OS);
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << " {\n";
|
|
|
|
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
(*ai)->writeCtorBody(OS);
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
OS << " }\n\n";
|
|
|
|
|
2013-09-10 07:33:17 +08:00
|
|
|
// If there are optional arguments, write out a constructor that elides the
|
|
|
|
// optional arguments as well.
|
|
|
|
if (HasOpt) {
|
|
|
|
OS << " " << R.getName() << "Attr(SourceRange R, ASTContext &Ctx\n";
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
if (!(*ai)->isOptional()) {
|
|
|
|
OS << " , ";
|
|
|
|
(*ai)->writeCtorParameters(OS);
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << " , ";
|
|
|
|
OS << "unsigned SI = 0\n";
|
|
|
|
|
|
|
|
OS << " )\n";
|
|
|
|
OS << " : " << SuperName << "(attr::" << R.getName() << ", R, SI)\n";
|
|
|
|
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
OS << " , ";
|
|
|
|
(*ai)->writeCtorDefaultInitializers(OS);
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << " {\n";
|
|
|
|
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
if (!(*ai)->isOptional()) {
|
|
|
|
(*ai)->writeCtorBody(OS);
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
OS << " }\n\n";
|
|
|
|
}
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << " virtual " << R.getName() << "Attr *clone (ASTContext &C) const;\n";
|
2013-01-27 08:06:24 +08:00
|
|
|
OS << " virtual void printPretty(raw_ostream &OS,\n"
|
2012-08-16 10:43:29 +08:00
|
|
|
<< " const PrintingPolicy &Policy) const;\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
|
2013-02-01 09:19:17 +08:00
|
|
|
writeAttrAccessorDefinition(R, OS);
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
(*ai)->writeAccessors(OS);
|
|
|
|
OS << "\n\n";
|
2013-09-12 03:47:58 +08:00
|
|
|
|
|
|
|
if ((*ai)->isEnumArg()) {
|
|
|
|
EnumArgument *EA = (EnumArgument *)*ai;
|
|
|
|
EA->writeConversion(OS);
|
2013-10-05 05:28:06 +08:00
|
|
|
} else if ((*ai)->isVariadicEnumArg()) {
|
|
|
|
VariadicEnumArgument *VEA = (VariadicEnumArgument *)*ai;
|
|
|
|
VEA->writeConversion(OS);
|
2013-09-12 03:47:58 +08:00
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
}
|
|
|
|
|
2012-01-13 12:57:47 +08:00
|
|
|
OS << R.getValueAsString("AdditionalMembers");
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << "\n\n";
|
|
|
|
|
|
|
|
OS << " static bool classof(const Attr *A) { return A->getKind() == "
|
|
|
|
<< "attr::" << R.getName() << "; }\n";
|
2012-01-21 06:50:54 +08:00
|
|
|
|
|
|
|
bool LateParsed = R.getValueAsBit("LateParsed");
|
|
|
|
OS << " virtual bool isLateParsed() const { return "
|
|
|
|
<< LateParsed << "; }\n";
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << "};\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << "#endif\n";
|
|
|
|
}
|
|
|
|
|
2013-10-24 09:07:54 +08:00
|
|
|
static bool isIdentifierArgument(Record *Arg) {
|
|
|
|
return !Arg->getSuperClasses().empty() &&
|
|
|
|
llvm::StringSwitch<bool>(Arg->getSuperClasses().back()->getName())
|
|
|
|
.Case("IdentifierArgument", true)
|
|
|
|
.Case("EnumArgument", true)
|
|
|
|
.Default(false);
|
|
|
|
}
|
|
|
|
|
2013-11-04 20:55:56 +08:00
|
|
|
/// \brief Emits the first-argument-is-type property for attributes.
|
|
|
|
void EmitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS) {
|
|
|
|
emitSourceFileHeader("llvm::StringSwitch code to match attributes with a "
|
|
|
|
"type argument", OS);
|
|
|
|
|
|
|
|
std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
|
|
|
|
for (std::vector<Record *>::iterator I = Attrs.begin(), E = Attrs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Record &Attr = **I;
|
|
|
|
|
|
|
|
// Determine whether the first argument is a type.
|
|
|
|
std::vector<Record *> Args = Attr.getValueAsListOfDefs("Args");
|
|
|
|
if (Args.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (Args[0]->getSuperClasses().back()->getName() != "TypeArgument")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// All these spellings take a single type argument.
|
|
|
|
std::vector<Record*> Spellings = Attr.getValueAsListOfDefs("Spellings");
|
|
|
|
std::set<std::string> Emitted;
|
|
|
|
for (std::vector<Record*>::const_iterator I = Spellings.begin(),
|
|
|
|
E = Spellings.end(); I != E; ++I) {
|
|
|
|
if (Emitted.insert((*I)->getValueAsString("Name")).second)
|
|
|
|
OS << ".Case(\"" << (*I)->getValueAsString("Name") << "\", "
|
|
|
|
<< "true" << ")\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-24 09:07:54 +08:00
|
|
|
// Emits the first-argument-is-identifier property for attributes.
|
|
|
|
void EmitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) {
|
2013-05-03 07:25:32 +08:00
|
|
|
emitSourceFileHeader("llvm::StringSwitch code to match attributes with "
|
2013-10-24 09:07:54 +08:00
|
|
|
"an identifier argument", OS);
|
2013-05-03 07:25:32 +08:00
|
|
|
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
|
|
|
|
for (std::vector<Record*>::iterator I = Attrs.begin(), E = Attrs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Record &Attr = **I;
|
|
|
|
|
2013-10-24 09:07:54 +08:00
|
|
|
// Determine whether the first argument is an identifier.
|
2013-05-03 07:25:32 +08:00
|
|
|
std::vector<Record *> Args = Attr.getValueAsListOfDefs("Args");
|
2013-10-24 09:07:54 +08:00
|
|
|
if (Args.empty() || !isIdentifierArgument(Args[0]))
|
2013-05-03 07:25:32 +08:00
|
|
|
continue;
|
|
|
|
|
2013-10-24 09:07:54 +08:00
|
|
|
// All these spellings take an identifier argument.
|
2013-05-03 07:25:32 +08:00
|
|
|
std::vector<Record*> Spellings = Attr.getValueAsListOfDefs("Spellings");
|
2013-10-24 09:07:54 +08:00
|
|
|
std::set<std::string> Emitted;
|
2013-05-03 07:25:32 +08:00
|
|
|
for (std::vector<Record*>::const_iterator I = Spellings.begin(),
|
|
|
|
E = Spellings.end(); I != E; ++I) {
|
2013-10-24 09:07:54 +08:00
|
|
|
if (Emitted.insert((*I)->getValueAsString("Name")).second)
|
|
|
|
OS << ".Case(\"" << (*I)->getValueAsString("Name") << "\", "
|
|
|
|
<< "true" << ")\n";
|
2013-05-03 07:25:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
// Emits the class method definitions for attributes.
|
|
|
|
void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Attribute classes' member function definitions", OS);
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ri, re;
|
|
|
|
std::vector<Argument*>::iterator ai, ae;
|
|
|
|
|
|
|
|
for (; i != e; ++i) {
|
|
|
|
Record &R = **i;
|
2012-05-02 23:56:52 +08:00
|
|
|
|
|
|
|
if (!R.getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
|
|
|
|
std::vector<Argument*> Args;
|
|
|
|
for (ri = ArgRecords.begin(), re = ArgRecords.end(); ri != re; ++ri)
|
|
|
|
Args.push_back(createArgument(**ri, R.getName()));
|
|
|
|
|
|
|
|
for (ai = Args.begin(), ae = Args.end(); ai != ae; ++ai)
|
|
|
|
(*ai)->writeAccessorDefinitions(OS);
|
|
|
|
|
|
|
|
OS << R.getName() << "Attr *" << R.getName()
|
|
|
|
<< "Attr::clone(ASTContext &C) const {\n";
|
|
|
|
OS << " return new (C) " << R.getName() << "Attr(getLocation(), C";
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
OS << ", ";
|
|
|
|
(*ai)->writeCloneArgs(OS);
|
|
|
|
}
|
2013-01-29 12:21:28 +08:00
|
|
|
OS << ", getSpellingListIndex());\n}\n\n";
|
2011-11-20 03:22:57 +08:00
|
|
|
|
2013-01-25 00:46:58 +08:00
|
|
|
writePrettyPrintFunction(R, Args, OS);
|
2011-10-06 21:03:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
} // end namespace clang
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
static void EmitAttrList(raw_ostream &OS, StringRef Class,
|
|
|
|
const std::vector<Record*> &AttrList) {
|
|
|
|
std::vector<Record*>::const_iterator i = AttrList.begin(), e = AttrList.end();
|
|
|
|
|
|
|
|
if (i != e) {
|
|
|
|
// Move the end iterator back to emit the last attribute.
|
2012-05-02 23:56:52 +08:00
|
|
|
for(--e; i != e; ++i) {
|
|
|
|
if (!(*i)->getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << Class << "(" << (*i)->getName() << ")\n";
|
2012-05-02 23:56:52 +08:00
|
|
|
}
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
OS << "LAST_" << Class << "(" << (*i)->getName() << ")\n\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
namespace clang {
|
|
|
|
|
|
|
|
// Emits the enumeration list for attributes.
|
|
|
|
void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
OS << "#ifndef LAST_ATTR\n";
|
|
|
|
OS << "#define LAST_ATTR(NAME) ATTR(NAME)\n";
|
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
|
|
|
OS << "#ifndef INHERITABLE_ATTR\n";
|
|
|
|
OS << "#define INHERITABLE_ATTR(NAME) ATTR(NAME)\n";
|
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
|
|
|
OS << "#ifndef LAST_INHERITABLE_ATTR\n";
|
|
|
|
OS << "#define LAST_INHERITABLE_ATTR(NAME) INHERITABLE_ATTR(NAME)\n";
|
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
|
|
|
OS << "#ifndef INHERITABLE_PARAM_ATTR\n";
|
|
|
|
OS << "#define INHERITABLE_PARAM_ATTR(NAME) ATTR(NAME)\n";
|
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
|
|
|
OS << "#ifndef LAST_INHERITABLE_PARAM_ATTR\n";
|
|
|
|
OS << "#define LAST_INHERITABLE_PARAM_ATTR(NAME)"
|
|
|
|
" INHERITABLE_PARAM_ATTR(NAME)\n";
|
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
2013-05-15 04:55:49 +08:00
|
|
|
OS << "#ifndef MS_INHERITANCE_ATTR\n";
|
|
|
|
OS << "#define MS_INHERITANCE_ATTR(NAME) INHERITABLE_ATTR(NAME)\n";
|
2013-03-27 02:30:28 +08:00
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
2013-05-15 04:55:49 +08:00
|
|
|
OS << "#ifndef LAST_MS_INHERITANCE_ATTR\n";
|
|
|
|
OS << "#define LAST_MS_INHERITANCE_ATTR(NAME)"
|
|
|
|
" MS_INHERITANCE_ATTR(NAME)\n";
|
2013-03-27 02:30:28 +08:00
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
Record *InhClass = Records.getClass("InheritableAttr");
|
|
|
|
Record *InhParamClass = Records.getClass("InheritableParamAttr");
|
2013-03-27 02:30:28 +08:00
|
|
|
Record *MSInheritanceClass = Records.getClass("MSInheritanceAttr");
|
2011-10-06 21:03:08 +08:00
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"),
|
2013-03-27 02:30:28 +08:00
|
|
|
NonInhAttrs, InhAttrs, InhParamAttrs, MSInhAttrs;
|
2011-10-06 21:03:08 +08:00
|
|
|
for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
|
|
|
|
i != e; ++i) {
|
2012-05-02 23:56:52 +08:00
|
|
|
if (!(*i)->getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
if ((*i)->isSubClassOf(InhParamClass))
|
|
|
|
InhParamAttrs.push_back(*i);
|
2013-03-27 02:30:28 +08:00
|
|
|
else if ((*i)->isSubClassOf(MSInheritanceClass))
|
|
|
|
MSInhAttrs.push_back(*i);
|
2011-10-06 21:03:08 +08:00
|
|
|
else if ((*i)->isSubClassOf(InhClass))
|
|
|
|
InhAttrs.push_back(*i);
|
|
|
|
else
|
|
|
|
NonInhAttrs.push_back(*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
EmitAttrList(OS, "INHERITABLE_PARAM_ATTR", InhParamAttrs);
|
2013-05-15 04:55:49 +08:00
|
|
|
EmitAttrList(OS, "MS_INHERITANCE_ATTR", MSInhAttrs);
|
2011-10-06 21:03:08 +08:00
|
|
|
EmitAttrList(OS, "INHERITABLE_ATTR", InhAttrs);
|
|
|
|
EmitAttrList(OS, "ATTR", NonInhAttrs);
|
|
|
|
|
|
|
|
OS << "#undef LAST_ATTR\n";
|
|
|
|
OS << "#undef INHERITABLE_ATTR\n";
|
2013-05-15 04:55:49 +08:00
|
|
|
OS << "#undef MS_INHERITANCE_ATTR\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << "#undef LAST_INHERITABLE_ATTR\n";
|
|
|
|
OS << "#undef LAST_INHERITABLE_PARAM_ATTR\n";
|
2013-05-15 04:55:49 +08:00
|
|
|
OS << "#undef LAST_MS_INHERITANCE_ATTR\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << "#undef ATTR\n";
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
// Emits the code to read an attribute from a precompiled header.
|
|
|
|
void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Attribute deserialization code", OS);
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
Record *InhClass = Records.getClass("InheritableAttr");
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"),
|
|
|
|
ArgRecords;
|
|
|
|
std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ai, ae;
|
|
|
|
std::vector<Argument*> Args;
|
|
|
|
std::vector<Argument*>::iterator ri, re;
|
|
|
|
|
|
|
|
OS << " switch (Kind) {\n";
|
|
|
|
OS << " default:\n";
|
|
|
|
OS << " assert(0 && \"Unknown attribute!\");\n";
|
|
|
|
OS << " break;\n";
|
|
|
|
for (; i != e; ++i) {
|
|
|
|
Record &R = **i;
|
2012-05-02 23:56:52 +08:00
|
|
|
if (!R.getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << " case attr::" << R.getName() << ": {\n";
|
|
|
|
if (R.isSubClassOf(InhClass))
|
|
|
|
OS << " bool isInherited = Record[Idx++];\n";
|
|
|
|
ArgRecords = R.getValueAsListOfDefs("Args");
|
|
|
|
Args.clear();
|
|
|
|
for (ai = ArgRecords.begin(), ae = ArgRecords.end(); ai != ae; ++ai) {
|
|
|
|
Argument *A = createArgument(**ai, R.getName());
|
|
|
|
Args.push_back(A);
|
|
|
|
A->writePCHReadDecls(OS);
|
|
|
|
}
|
|
|
|
OS << " New = new (Context) " << R.getName() << "Attr(Range, Context";
|
|
|
|
for (ri = Args.begin(), re = Args.end(); ri != re; ++ri) {
|
|
|
|
OS << ", ";
|
|
|
|
(*ri)->writePCHReadArgs(OS);
|
|
|
|
}
|
|
|
|
OS << ");\n";
|
|
|
|
if (R.isSubClassOf(InhClass))
|
|
|
|
OS << " cast<InheritableAttr>(New)->setInherited(isInherited);\n";
|
|
|
|
OS << " break;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
// Emits the code to write an attribute to a precompiled header.
|
|
|
|
void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Attribute serialization code", OS);
|
|
|
|
|
2011-10-06 21:03:08 +08:00
|
|
|
Record *InhClass = Records.getClass("InheritableAttr");
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), Args;
|
|
|
|
std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ai, ae;
|
|
|
|
|
|
|
|
OS << " switch (A->getKind()) {\n";
|
|
|
|
OS << " default:\n";
|
|
|
|
OS << " llvm_unreachable(\"Unknown attribute kind!\");\n";
|
|
|
|
OS << " break;\n";
|
|
|
|
for (; i != e; ++i) {
|
|
|
|
Record &R = **i;
|
2012-05-02 23:56:52 +08:00
|
|
|
if (!R.getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
2011-10-06 21:03:08 +08:00
|
|
|
OS << " case attr::" << R.getName() << ": {\n";
|
|
|
|
Args = R.getValueAsListOfDefs("Args");
|
|
|
|
if (R.isSubClassOf(InhClass) || !Args.empty())
|
|
|
|
OS << " const " << R.getName() << "Attr *SA = cast<" << R.getName()
|
|
|
|
<< "Attr>(A);\n";
|
|
|
|
if (R.isSubClassOf(InhClass))
|
|
|
|
OS << " Record.push_back(SA->isInherited());\n";
|
|
|
|
for (ai = Args.begin(), ae = Args.end(); ai != ae; ++ai)
|
|
|
|
createArgument(**ai, R.getName())->writePCHWrite(OS);
|
|
|
|
OS << " break;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
// Emits the list of spellings for attributes.
|
|
|
|
void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("llvm::StringSwitch code to match all known attributes",
|
|
|
|
OS);
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
|
|
|
|
for (std::vector<Record*>::iterator I = Attrs.begin(), E = Attrs.end(); I != E; ++I) {
|
|
|
|
Record &Attr = **I;
|
|
|
|
|
2012-06-20 07:57:03 +08:00
|
|
|
std::vector<Record*> Spellings = Attr.getValueAsListOfDefs("Spellings");
|
2011-10-06 21:03:08 +08:00
|
|
|
|
2012-06-20 07:57:03 +08:00
|
|
|
for (std::vector<Record*>::const_iterator I = Spellings.begin(), E = Spellings.end(); I != E; ++I) {
|
|
|
|
OS << ".Case(\"" << (*I)->getValueAsString("Name") << "\", true)\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-25 00:46:58 +08:00
|
|
|
void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Code to translate different attribute spellings "
|
|
|
|
"into internal identifiers", OS);
|
2013-01-25 00:46:58 +08:00
|
|
|
|
|
|
|
OS <<
|
|
|
|
" switch (AttrKind) {\n"
|
|
|
|
" default:\n"
|
|
|
|
" llvm_unreachable(\"Unknown attribute kind!\");\n"
|
|
|
|
" break;\n";
|
|
|
|
|
2013-12-15 21:05:48 +08:00
|
|
|
ParsedAttrMap Attrs = getParsedAttrList(Records);
|
|
|
|
for (ParsedAttrMap::const_iterator I = Attrs.begin(), E = Attrs.end();
|
2013-01-25 00:46:58 +08:00
|
|
|
I != E; ++I) {
|
2013-12-15 21:05:48 +08:00
|
|
|
Record &R = *I->second;
|
2013-01-25 00:46:58 +08:00
|
|
|
std::vector<Record*> Spellings = R.getValueAsListOfDefs("Spellings");
|
2013-12-15 21:05:48 +08:00
|
|
|
OS << " case AT_" << I->first << ": {\n";
|
2013-11-27 09:46:48 +08:00
|
|
|
for (unsigned I = 0; I < Spellings.size(); ++ I) {
|
|
|
|
SmallString<16> Namespace;
|
|
|
|
if (Spellings[I]->getValueAsString("Variety") == "CXX11")
|
|
|
|
Namespace = Spellings[I]->getValueAsString("Namespace");
|
|
|
|
else
|
|
|
|
Namespace = "";
|
2013-01-25 00:46:58 +08:00
|
|
|
|
2013-11-27 09:46:48 +08:00
|
|
|
OS << " if (Name == \""
|
|
|
|
<< Spellings[I]->getValueAsString("Name") << "\" && "
|
|
|
|
<< "SyntaxUsed == "
|
|
|
|
<< StringSwitch<unsigned>(Spellings[I]->getValueAsString("Variety"))
|
|
|
|
.Case("GNU", 0)
|
|
|
|
.Case("CXX11", 1)
|
|
|
|
.Case("Declspec", 2)
|
|
|
|
.Case("Keyword", 3)
|
|
|
|
.Default(0)
|
|
|
|
<< " && Scope == \"" << Namespace << "\")\n"
|
|
|
|
<< " return " << I << ";\n";
|
2013-01-25 00:46:58 +08:00
|
|
|
}
|
2013-11-27 09:46:48 +08:00
|
|
|
|
|
|
|
OS << " break;\n";
|
|
|
|
OS << " }\n";
|
2013-01-25 00:46:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
OS << " }\n";
|
2013-12-15 21:05:48 +08:00
|
|
|
OS << " return 0;\n";
|
2013-01-25 00:46:58 +08:00
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
// Emits the LateParsed property for attributes.
|
|
|
|
void EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("llvm::StringSwitch code to match late parsed "
|
|
|
|
"attributes", OS);
|
2011-10-06 21:03:08 +08:00
|
|
|
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
|
|
|
|
for (std::vector<Record*>::iterator I = Attrs.begin(), E = Attrs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Record &Attr = **I;
|
|
|
|
|
|
|
|
bool LateParsed = Attr.getValueAsBit("LateParsed");
|
|
|
|
|
|
|
|
if (LateParsed) {
|
2012-06-20 07:57:03 +08:00
|
|
|
std::vector<Record*> Spellings =
|
|
|
|
Attr.getValueAsListOfDefs("Spellings");
|
2011-10-06 21:03:08 +08:00
|
|
|
|
2012-06-20 07:57:03 +08:00
|
|
|
// FIXME: Handle non-GNU attributes
|
|
|
|
for (std::vector<Record*>::const_iterator I = Spellings.begin(),
|
2011-10-06 21:03:08 +08:00
|
|
|
E = Spellings.end(); I != E; ++I) {
|
2012-06-20 07:57:03 +08:00
|
|
|
if ((*I)->getValueAsString("Variety") != "GNU")
|
|
|
|
continue;
|
|
|
|
OS << ".Case(\"" << (*I)->getValueAsString("Name") << "\", "
|
|
|
|
<< LateParsed << ")\n";
|
2011-10-06 21:03:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-21 06:37:06 +08:00
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
// Emits code to instantiate dependent attributes on templates.
|
|
|
|
void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Template instantiation code for attributes", OS);
|
2012-01-21 06:37:06 +08:00
|
|
|
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
|
2012-02-06 19:13:08 +08:00
|
|
|
OS << "namespace clang {\n"
|
|
|
|
<< "namespace sema {\n\n"
|
|
|
|
<< "Attr *instantiateTemplateAttribute(const Attr *At, ASTContext &C, "
|
2012-01-21 06:37:06 +08:00
|
|
|
<< "Sema &S,\n"
|
|
|
|
<< " const MultiLevelTemplateArgumentList &TemplateArgs) {\n"
|
|
|
|
<< " switch (At->getKind()) {\n"
|
|
|
|
<< " default:\n"
|
|
|
|
<< " break;\n";
|
|
|
|
|
|
|
|
for (std::vector<Record*>::iterator I = Attrs.begin(), E = Attrs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Record &R = **I;
|
2012-05-02 23:56:52 +08:00
|
|
|
if (!R.getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
2012-01-21 06:37:06 +08:00
|
|
|
|
|
|
|
OS << " case attr::" << R.getName() << ": {\n";
|
2012-05-15 22:09:55 +08:00
|
|
|
bool ShouldClone = R.getValueAsBit("Clone");
|
|
|
|
|
|
|
|
if (!ShouldClone) {
|
|
|
|
OS << " return NULL;\n";
|
|
|
|
OS << " }\n";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-01-21 06:37:06 +08:00
|
|
|
OS << " const " << R.getName() << "Attr *A = cast<"
|
|
|
|
<< R.getName() << "Attr>(At);\n";
|
|
|
|
bool TDependent = R.getValueAsBit("TemplateDependent");
|
|
|
|
|
|
|
|
if (!TDependent) {
|
|
|
|
OS << " return A->clone(C);\n";
|
|
|
|
OS << " }\n";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Record*> ArgRecords = R.getValueAsListOfDefs("Args");
|
|
|
|
std::vector<Argument*> Args;
|
|
|
|
std::vector<Argument*>::iterator ai, ae;
|
|
|
|
Args.reserve(ArgRecords.size());
|
|
|
|
|
|
|
|
for (std::vector<Record*>::iterator ri = ArgRecords.begin(),
|
|
|
|
re = ArgRecords.end();
|
|
|
|
ri != re; ++ri) {
|
|
|
|
Record &ArgRecord = **ri;
|
|
|
|
Argument *Arg = createArgument(ArgRecord, R.getName());
|
|
|
|
assert(Arg);
|
|
|
|
Args.push_back(Arg);
|
|
|
|
}
|
|
|
|
ae = Args.end();
|
|
|
|
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
(*ai)->writeTemplateInstantiation(OS);
|
|
|
|
}
|
|
|
|
OS << " return new (C) " << R.getName() << "Attr(A->getLocation(), C";
|
|
|
|
for (ai = Args.begin(); ai != ae; ++ai) {
|
|
|
|
OS << ", ";
|
|
|
|
(*ai)->writeTemplateInstantiationArgs(OS);
|
|
|
|
}
|
|
|
|
OS << ");\n }\n";
|
|
|
|
}
|
|
|
|
OS << " } // end switch\n"
|
|
|
|
<< " llvm_unreachable(\"Unknown attribute!\");\n"
|
|
|
|
<< " return 0;\n"
|
2012-02-06 19:13:08 +08:00
|
|
|
<< "}\n\n"
|
|
|
|
<< "} // end namespace sema\n"
|
|
|
|
<< "} // end namespace clang\n";
|
2012-01-21 06:37:06 +08:00
|
|
|
}
|
|
|
|
|
2013-09-10 07:33:17 +08:00
|
|
|
// Emits the list of parsed attributes.
|
|
|
|
void EmitClangAttrParsedAttrList(RecordKeeper &Records, raw_ostream &OS) {
|
|
|
|
emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
|
|
|
|
|
|
|
|
OS << "#ifndef PARSED_ATTR\n";
|
|
|
|
OS << "#define PARSED_ATTR(NAME) NAME\n";
|
|
|
|
OS << "#endif\n\n";
|
|
|
|
|
|
|
|
ParsedAttrMap Names = getParsedAttrList(Records);
|
|
|
|
for (ParsedAttrMap::iterator I = Names.begin(), E = Names.end(); I != E;
|
|
|
|
++I) {
|
|
|
|
OS << "PARSED_ATTR(" << I->first << ")\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-27 21:27:02 +08:00
|
|
|
static void emitArgInfo(const Record &R, std::stringstream &OS) {
|
2013-09-10 07:33:17 +08:00
|
|
|
// This function will count the number of arguments specified for the
|
|
|
|
// attribute and emit the number of required arguments followed by the
|
|
|
|
// number of optional arguments.
|
|
|
|
std::vector<Record *> Args = R.getValueAsListOfDefs("Args");
|
|
|
|
unsigned ArgCount = 0, OptCount = 0;
|
|
|
|
for (std::vector<Record *>::const_iterator I = Args.begin(), E = Args.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
const Record &Arg = **I;
|
|
|
|
Arg.getValueAsBit("Optional") ? ++OptCount : ++ArgCount;
|
|
|
|
}
|
|
|
|
OS << ArgCount << ", " << OptCount;
|
|
|
|
}
|
|
|
|
|
2013-11-27 21:27:02 +08:00
|
|
|
static void GenerateDefaultAppertainsTo(raw_ostream &OS) {
|
2013-12-03 03:36:42 +08:00
|
|
|
OS << "static bool defaultAppertainsTo(Sema &, const AttributeList &,";
|
2013-11-27 21:27:02 +08:00
|
|
|
OS << "const Decl *) {\n";
|
|
|
|
OS << " return true;\n";
|
|
|
|
OS << "}\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string CalculateDiagnostic(const Record &S) {
|
|
|
|
// If the SubjectList object has a custom diagnostic associated with it,
|
|
|
|
// return that directly.
|
|
|
|
std::string CustomDiag = S.getValueAsString("CustomDiag");
|
|
|
|
if (!CustomDiag.empty())
|
|
|
|
return CustomDiag;
|
|
|
|
|
|
|
|
// Given the list of subjects, determine what diagnostic best fits.
|
|
|
|
enum {
|
|
|
|
Func = 1U << 0,
|
|
|
|
Var = 1U << 1,
|
|
|
|
ObjCMethod = 1U << 2,
|
|
|
|
Param = 1U << 3,
|
|
|
|
Class = 1U << 4,
|
2013-11-28 04:14:30 +08:00
|
|
|
GenericRecord = 1U << 5,
|
2013-11-27 21:27:02 +08:00
|
|
|
Type = 1U << 6,
|
|
|
|
ObjCIVar = 1U << 7,
|
|
|
|
ObjCProp = 1U << 8,
|
|
|
|
ObjCInterface = 1U << 9,
|
|
|
|
Block = 1U << 10,
|
|
|
|
Namespace = 1U << 11,
|
|
|
|
FuncTemplate = 1U << 12,
|
|
|
|
Field = 1U << 13,
|
2013-12-11 03:43:42 +08:00
|
|
|
CXXMethod = 1U << 14,
|
|
|
|
ObjCProtocol = 1U << 15
|
2013-11-27 21:27:02 +08:00
|
|
|
};
|
|
|
|
uint32_t SubMask = 0;
|
|
|
|
|
|
|
|
std::vector<Record *> Subjects = S.getValueAsListOfDefs("Subjects");
|
|
|
|
for (std::vector<Record *>::const_iterator I = Subjects.begin(),
|
|
|
|
E = Subjects.end(); I != E; ++I) {
|
2013-11-29 22:57:58 +08:00
|
|
|
const Record &R = (**I);
|
|
|
|
std::string Name;
|
|
|
|
|
|
|
|
if (R.isSubClassOf("SubsetSubject")) {
|
|
|
|
PrintError(R.getLoc(), "SubsetSubjects should use a custom diagnostic");
|
|
|
|
// As a fallback, look through the SubsetSubject to see what its base
|
|
|
|
// type is, and use that. This needs to be updated if SubsetSubjects
|
|
|
|
// are allowed within other SubsetSubjects.
|
|
|
|
Name = R.getValueAsDef("Base")->getName();
|
|
|
|
} else
|
|
|
|
Name = R.getName();
|
|
|
|
|
|
|
|
uint32_t V = StringSwitch<uint32_t>(Name)
|
2013-11-27 21:27:02 +08:00
|
|
|
.Case("Function", Func)
|
|
|
|
.Case("Var", Var)
|
|
|
|
.Case("ObjCMethod", ObjCMethod)
|
|
|
|
.Case("ParmVar", Param)
|
|
|
|
.Case("TypedefName", Type)
|
|
|
|
.Case("ObjCIvar", ObjCIVar)
|
|
|
|
.Case("ObjCProperty", ObjCProp)
|
2013-11-28 04:14:30 +08:00
|
|
|
.Case("Record", GenericRecord)
|
2013-11-27 21:27:02 +08:00
|
|
|
.Case("ObjCInterface", ObjCInterface)
|
2013-12-11 03:43:42 +08:00
|
|
|
.Case("ObjCProtocol", ObjCProtocol)
|
2013-11-27 21:27:02 +08:00
|
|
|
.Case("Block", Block)
|
|
|
|
.Case("CXXRecord", Class)
|
|
|
|
.Case("Namespace", Namespace)
|
|
|
|
.Case("FunctionTemplate", FuncTemplate)
|
|
|
|
.Case("Field", Field)
|
|
|
|
.Case("CXXMethod", CXXMethod)
|
|
|
|
.Default(0);
|
|
|
|
if (!V) {
|
|
|
|
// Something wasn't in our mapping, so be helpful and let the developer
|
|
|
|
// know about it.
|
|
|
|
PrintFatalError((*I)->getLoc(), "Unknown subject type: " +
|
|
|
|
(*I)->getName());
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
SubMask |= V;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (SubMask) {
|
|
|
|
// For the simple cases where there's only a single entry in the mask, we
|
|
|
|
// don't have to resort to bit fiddling.
|
|
|
|
case Func: return "ExpectedFunction";
|
|
|
|
case Var: return "ExpectedVariable";
|
|
|
|
case Param: return "ExpectedParameter";
|
|
|
|
case Class: return "ExpectedClass";
|
|
|
|
case CXXMethod:
|
|
|
|
// FIXME: Currently, this maps to ExpectedMethod based on existing code,
|
|
|
|
// but should map to something a bit more accurate at some point.
|
|
|
|
case ObjCMethod: return "ExpectedMethod";
|
|
|
|
case Type: return "ExpectedType";
|
|
|
|
case ObjCInterface: return "ExpectedObjectiveCInterface";
|
2013-12-11 03:43:42 +08:00
|
|
|
case ObjCProtocol: return "ExpectedObjectiveCProtocol";
|
2013-11-27 21:27:02 +08:00
|
|
|
|
2013-11-28 04:14:30 +08:00
|
|
|
// "GenericRecord" means struct, union or class; check the language options
|
|
|
|
// and if not compiling for C++, strip off the class part. Note that this
|
|
|
|
// relies on the fact that the context for this declares "Sema &S".
|
|
|
|
case GenericRecord:
|
2013-11-28 03:16:55 +08:00
|
|
|
return "(S.getLangOpts().CPlusPlus ? ExpectedStructOrUnionOrClass : "
|
|
|
|
"ExpectedStructOrUnion)";
|
2013-11-27 21:27:02 +08:00
|
|
|
case Func | ObjCMethod | Block: return "ExpectedFunctionMethodOrBlock";
|
|
|
|
case Func | ObjCMethod | Class: return "ExpectedFunctionMethodOrClass";
|
|
|
|
case Func | Param:
|
|
|
|
case Func | ObjCMethod | Param: return "ExpectedFunctionMethodOrParameter";
|
|
|
|
case Func | FuncTemplate:
|
|
|
|
case Func | ObjCMethod: return "ExpectedFunctionOrMethod";
|
|
|
|
case Func | Var: return "ExpectedVariableOrFunction";
|
2013-12-03 01:07:07 +08:00
|
|
|
|
|
|
|
// If not compiling for C++, the class portion does not apply.
|
|
|
|
case Func | Var | Class:
|
|
|
|
return "(S.getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass : "
|
|
|
|
"ExpectedVariableOrFunction)";
|
|
|
|
|
2013-11-27 21:27:02 +08:00
|
|
|
case ObjCMethod | ObjCProp: return "ExpectedMethodOrProperty";
|
|
|
|
case Field | Var: return "ExpectedFieldOrGlobalVar";
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintFatalError(S.getLoc(),
|
|
|
|
"Could not deduce diagnostic argument for Attr subjects");
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2013-11-29 22:57:58 +08:00
|
|
|
static std::string GenerateCustomAppertainsTo(const Record &Subject,
|
|
|
|
raw_ostream &OS) {
|
2013-12-02 22:58:17 +08:00
|
|
|
std::string FnName = "is" + Subject.getName();
|
|
|
|
|
2013-11-29 22:57:58 +08:00
|
|
|
// If this code has already been generated, simply return the previous
|
|
|
|
// instance of it.
|
|
|
|
static std::set<std::string> CustomSubjectSet;
|
2013-12-02 22:58:17 +08:00
|
|
|
std::set<std::string>::iterator I = CustomSubjectSet.find(FnName);
|
2013-11-29 22:57:58 +08:00
|
|
|
if (I != CustomSubjectSet.end())
|
|
|
|
return *I;
|
|
|
|
|
|
|
|
Record *Base = Subject.getValueAsDef("Base");
|
|
|
|
|
|
|
|
// Not currently support custom subjects within custom subjects.
|
|
|
|
if (Base->isSubClassOf("SubsetSubject")) {
|
|
|
|
PrintFatalError(Subject.getLoc(),
|
|
|
|
"SubsetSubjects within SubsetSubjects is not supported");
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << "static bool " << FnName << "(const Decl *D) {\n";
|
2013-11-30 00:12:29 +08:00
|
|
|
OS << " const " << Base->getName() << "Decl *S = dyn_cast<";
|
|
|
|
OS << Base->getName();
|
2013-11-29 22:57:58 +08:00
|
|
|
OS << "Decl>(D);\n";
|
2013-11-30 00:12:29 +08:00
|
|
|
OS << " return S && " << Subject.getValueAsString("CheckCode") << ";\n";
|
2013-11-29 22:57:58 +08:00
|
|
|
OS << "}\n\n";
|
|
|
|
|
|
|
|
CustomSubjectSet.insert(FnName);
|
|
|
|
return FnName;
|
|
|
|
}
|
|
|
|
|
2013-11-27 21:27:02 +08:00
|
|
|
static std::string GenerateAppertainsTo(const Record &Attr, raw_ostream &OS) {
|
|
|
|
// If the attribute does not contain a Subjects definition, then use the
|
|
|
|
// default appertainsTo logic.
|
|
|
|
if (Attr.isValueUnset("Subjects"))
|
2013-12-03 03:36:42 +08:00
|
|
|
return "defaultAppertainsTo";
|
2013-11-27 21:27:02 +08:00
|
|
|
|
|
|
|
const Record *SubjectObj = Attr.getValueAsDef("Subjects");
|
|
|
|
std::vector<Record*> Subjects = SubjectObj->getValueAsListOfDefs("Subjects");
|
|
|
|
|
|
|
|
// If the list of subjects is empty, it is assumed that the attribute
|
|
|
|
// appertains to everything.
|
|
|
|
if (Subjects.empty())
|
2013-12-03 03:36:42 +08:00
|
|
|
return "defaultAppertainsTo";
|
2013-11-27 21:27:02 +08:00
|
|
|
|
|
|
|
bool Warn = SubjectObj->getValueAsDef("Diag")->getValueAsBit("Warn");
|
|
|
|
|
|
|
|
// Otherwise, generate an appertainsTo check specific to this attribute which
|
|
|
|
// checks all of the given subjects against the Decl passed in. Return the
|
|
|
|
// name of that check to the caller.
|
2013-12-03 21:45:50 +08:00
|
|
|
std::string FnName = "check" + Attr.getName() + "AppertainsTo";
|
2013-11-27 21:27:02 +08:00
|
|
|
std::stringstream SS;
|
|
|
|
SS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr, ";
|
|
|
|
SS << "const Decl *D) {\n";
|
|
|
|
SS << " if (";
|
|
|
|
for (std::vector<Record *>::const_iterator I = Subjects.begin(),
|
|
|
|
E = Subjects.end(); I != E; ++I) {
|
2013-11-29 22:57:58 +08:00
|
|
|
// If the subject has custom code associated with it, generate a function
|
|
|
|
// for it. The function cannot be inlined into this check (yet) because it
|
|
|
|
// requires the subject to be of a specific type, and were that information
|
|
|
|
// inlined here, it would not support an attribute with multiple custom
|
|
|
|
// subjects.
|
|
|
|
if ((*I)->isSubClassOf("SubsetSubject")) {
|
|
|
|
SS << "!" << GenerateCustomAppertainsTo(**I, OS) << "(D)";
|
|
|
|
} else {
|
|
|
|
SS << "!isa<" << (*I)->getName() << "Decl>(D)";
|
|
|
|
}
|
2013-11-27 21:27:02 +08:00
|
|
|
|
|
|
|
if (I + 1 != E)
|
|
|
|
SS << " && ";
|
|
|
|
}
|
|
|
|
SS << ") {\n";
|
|
|
|
SS << " S.Diag(Attr.getLoc(), diag::";
|
|
|
|
SS << (Warn ? "warn_attribute_wrong_decl_type" :
|
|
|
|
"err_attribute_wrong_decl_type");
|
|
|
|
SS << ")\n";
|
|
|
|
SS << " << Attr.getName() << ";
|
|
|
|
SS << CalculateDiagnostic(*SubjectObj) << ";\n";
|
|
|
|
SS << " return false;\n";
|
|
|
|
SS << " }\n";
|
|
|
|
SS << " return true;\n";
|
|
|
|
SS << "}\n\n";
|
|
|
|
|
|
|
|
OS << SS.str();
|
|
|
|
return FnName;
|
|
|
|
}
|
|
|
|
|
2013-12-03 03:30:36 +08:00
|
|
|
static void GenerateDefaultLangOptRequirements(raw_ostream &OS) {
|
|
|
|
OS << "static bool defaultDiagnoseLangOpts(Sema &, ";
|
|
|
|
OS << "const AttributeList &) {\n";
|
|
|
|
OS << " return true;\n";
|
|
|
|
OS << "}\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string GenerateLangOptRequirements(const Record &R,
|
|
|
|
raw_ostream &OS) {
|
|
|
|
// If the attribute has an empty or unset list of language requirements,
|
|
|
|
// return the default handler.
|
|
|
|
std::vector<Record *> LangOpts = R.getValueAsListOfDefs("LangOpts");
|
|
|
|
if (LangOpts.empty())
|
|
|
|
return "defaultDiagnoseLangOpts";
|
|
|
|
|
|
|
|
// Generate the test condition, as well as a unique function name for the
|
|
|
|
// diagnostic test. The list of options should usually be short (one or two
|
|
|
|
// options), and the uniqueness isn't strictly necessary (it is just for
|
|
|
|
// codegen efficiency).
|
|
|
|
std::string FnName = "check", Test;
|
|
|
|
for (std::vector<Record *>::const_iterator I = LangOpts.begin(),
|
|
|
|
E = LangOpts.end(); I != E; ++I) {
|
|
|
|
std::string Part = (*I)->getValueAsString("Name");
|
|
|
|
Test += "S.LangOpts." + Part;
|
|
|
|
if (I + 1 != E)
|
|
|
|
Test += " || ";
|
|
|
|
FnName += Part;
|
|
|
|
}
|
|
|
|
FnName += "LangOpts";
|
|
|
|
|
|
|
|
// If this code has already been generated, simply return the previous
|
|
|
|
// instance of it.
|
|
|
|
static std::set<std::string> CustomLangOptsSet;
|
|
|
|
std::set<std::string>::iterator I = CustomLangOptsSet.find(FnName);
|
|
|
|
if (I != CustomLangOptsSet.end())
|
|
|
|
return *I;
|
|
|
|
|
|
|
|
OS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr) {\n";
|
|
|
|
OS << " if (" << Test << ")\n";
|
|
|
|
OS << " return true;\n\n";
|
|
|
|
OS << " S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) ";
|
|
|
|
OS << "<< Attr.getName();\n";
|
|
|
|
OS << " return false;\n";
|
|
|
|
OS << "}\n\n";
|
|
|
|
|
|
|
|
CustomLangOptsSet.insert(FnName);
|
|
|
|
return FnName;
|
|
|
|
}
|
|
|
|
|
2013-09-10 07:33:17 +08:00
|
|
|
/// Emits the parsed attribute helpers
|
|
|
|
void EmitClangAttrParsedAttrImpl(RecordKeeper &Records, raw_ostream &OS) {
|
|
|
|
emitSourceFileHeader("Parsed attribute helpers", OS);
|
|
|
|
|
|
|
|
ParsedAttrMap Attrs = getParsedAttrList(Records);
|
|
|
|
|
2013-12-03 03:30:36 +08:00
|
|
|
// Generate the default appertainsTo and language option diagnostic methods.
|
2013-11-27 21:27:02 +08:00
|
|
|
GenerateDefaultAppertainsTo(OS);
|
2013-12-03 03:30:36 +08:00
|
|
|
GenerateDefaultLangOptRequirements(OS);
|
2013-11-27 21:27:02 +08:00
|
|
|
|
|
|
|
// Generate the appertainsTo diagnostic methods and write their names into
|
|
|
|
// another mapping. At the same time, generate the AttrInfoMap object
|
|
|
|
// contents. Due to the reliance on generated code, use separate streams so
|
|
|
|
// that code will not be interleaved.
|
|
|
|
std::stringstream SS;
|
2013-09-10 07:33:17 +08:00
|
|
|
for (ParsedAttrMap::iterator I = Attrs.begin(), E = Attrs.end(); I != E;
|
|
|
|
++I) {
|
|
|
|
// We need to generate struct instances based off ParsedAttrInfo from
|
|
|
|
// AttributeList.cpp.
|
2013-11-27 21:27:02 +08:00
|
|
|
SS << " { ";
|
|
|
|
emitArgInfo(*I->second, SS);
|
|
|
|
SS << ", " << I->second->getValueAsBit("HasCustomParsing");
|
|
|
|
SS << ", " << GenerateAppertainsTo(*I->second, OS);
|
2013-12-03 03:30:36 +08:00
|
|
|
SS << ", " << GenerateLangOptRequirements(*I->second, OS);
|
2013-11-27 21:27:02 +08:00
|
|
|
SS << " }";
|
2013-09-10 07:33:17 +08:00
|
|
|
|
|
|
|
if (I + 1 != E)
|
2013-11-27 21:27:02 +08:00
|
|
|
SS << ",";
|
|
|
|
|
|
|
|
SS << " // AT_" << I->first << "\n";
|
2013-09-10 07:33:17 +08:00
|
|
|
}
|
2013-11-27 21:27:02 +08:00
|
|
|
|
|
|
|
OS << "static const ParsedAttrInfo AttrInfoMap[AttributeList::UnknownAttribute + 1] = {\n";
|
|
|
|
OS << SS.str();
|
2013-09-10 07:33:17 +08:00
|
|
|
OS << "};\n\n";
|
2012-03-07 08:12:16 +08:00
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
// Emits the kind list of parsed attributes
|
|
|
|
void EmitClangAttrParsedAttrKinds(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Attribute name matcher", OS);
|
|
|
|
|
2012-03-07 08:12:16 +08:00
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
|
|
|
|
|
2012-05-03 01:33:51 +08:00
|
|
|
std::vector<StringMatcher::StringPair> Matches;
|
2013-12-15 21:05:48 +08:00
|
|
|
std::set<std::string> Seen;
|
2012-03-07 08:12:16 +08:00
|
|
|
for (std::vector<Record*>::iterator I = Attrs.begin(), E = Attrs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Record &Attr = **I;
|
2013-11-27 09:46:48 +08:00
|
|
|
|
2012-03-07 08:12:16 +08:00
|
|
|
bool SemaHandler = Attr.getValueAsBit("SemaHandler");
|
2012-05-03 00:18:45 +08:00
|
|
|
bool Ignored = Attr.getValueAsBit("Ignored");
|
|
|
|
if (SemaHandler || Ignored) {
|
2012-06-20 07:57:03 +08:00
|
|
|
std::vector<Record*> Spellings = Attr.getValueAsListOfDefs("Spellings");
|
2012-03-07 08:12:16 +08:00
|
|
|
|
2013-12-15 21:05:48 +08:00
|
|
|
std::string AttrName;
|
|
|
|
if (Attr.isSubClassOf("TargetSpecificAttr") &&
|
|
|
|
!Attr.isValueUnset("ParseKind")) {
|
|
|
|
AttrName = Attr.getValueAsString("ParseKind");
|
|
|
|
if (Seen.find(AttrName) != Seen.end())
|
|
|
|
continue;
|
|
|
|
Seen.insert(AttrName);
|
|
|
|
} else
|
|
|
|
AttrName = NormalizeAttrName(StringRef(Attr.getName())).str();
|
|
|
|
|
2012-06-20 07:57:03 +08:00
|
|
|
for (std::vector<Record*>::const_iterator I = Spellings.begin(),
|
2012-03-07 08:12:16 +08:00
|
|
|
E = Spellings.end(); I != E; ++I) {
|
2012-06-20 07:57:03 +08:00
|
|
|
std::string RawSpelling = (*I)->getValueAsString("Name");
|
|
|
|
|
|
|
|
SmallString<64> Spelling;
|
|
|
|
if ((*I)->getValueAsString("Variety") == "CXX11") {
|
|
|
|
Spelling += (*I)->getValueAsString("Namespace");
|
|
|
|
Spelling += "::";
|
2012-06-19 00:13:52 +08:00
|
|
|
}
|
2012-06-20 07:57:03 +08:00
|
|
|
Spelling += NormalizeAttrSpelling(RawSpelling);
|
2012-06-19 00:13:52 +08:00
|
|
|
|
2012-05-03 00:18:45 +08:00
|
|
|
if (SemaHandler)
|
2012-05-03 01:33:51 +08:00
|
|
|
Matches.push_back(
|
2012-05-12 07:37:49 +08:00
|
|
|
StringMatcher::StringPair(
|
2012-06-20 07:57:03 +08:00
|
|
|
StringRef(Spelling),
|
2013-12-15 21:05:48 +08:00
|
|
|
"return AttributeList::AT_" + AttrName + ";"));
|
2012-05-03 00:18:45 +08:00
|
|
|
else
|
2012-05-03 01:33:51 +08:00
|
|
|
Matches.push_back(
|
|
|
|
StringMatcher::StringPair(
|
2012-06-20 07:57:03 +08:00
|
|
|
StringRef(Spelling),
|
2012-06-19 00:13:52 +08:00
|
|
|
"return AttributeList::IgnoredAttribute;"));
|
2012-03-07 08:12:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-03 01:33:51 +08:00
|
|
|
|
|
|
|
OS << "static AttributeList::Kind getAttrKind(StringRef Name) {\n";
|
|
|
|
StringMatcher("Name", Matches, OS).Emit();
|
|
|
|
OS << "return AttributeList::UnknownAttribute;\n"
|
|
|
|
<< "}\n";
|
2012-03-07 08:12:16 +08:00
|
|
|
}
|
|
|
|
|
2013-01-08 01:53:08 +08:00
|
|
|
// Emits the code to dump an attribute.
|
|
|
|
void EmitClangAttrDump(RecordKeeper &Records, raw_ostream &OS) {
|
2013-01-31 05:54:20 +08:00
|
|
|
emitSourceFileHeader("Attribute dumper", OS);
|
|
|
|
|
2013-01-08 01:53:08 +08:00
|
|
|
OS <<
|
|
|
|
" switch (A->getKind()) {\n"
|
|
|
|
" default:\n"
|
|
|
|
" llvm_unreachable(\"Unknown attribute kind!\");\n"
|
|
|
|
" break;\n";
|
|
|
|
std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), Args;
|
|
|
|
for (std::vector<Record*>::iterator I = Attrs.begin(), E = Attrs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Record &R = **I;
|
|
|
|
if (!R.getValueAsBit("ASTNode"))
|
|
|
|
continue;
|
|
|
|
OS << " case attr::" << R.getName() << ": {\n";
|
|
|
|
Args = R.getValueAsListOfDefs("Args");
|
|
|
|
if (!Args.empty()) {
|
|
|
|
OS << " const " << R.getName() << "Attr *SA = cast<" << R.getName()
|
|
|
|
<< "Attr>(A);\n";
|
|
|
|
for (std::vector<Record*>::iterator I = Args.begin(), E = Args.end();
|
|
|
|
I != E; ++I)
|
|
|
|
createArgument(**I, R.getName())->writeDump(OS);
|
2013-01-31 09:44:26 +08:00
|
|
|
|
|
|
|
// Code for detecting the last child.
|
|
|
|
OS << " bool OldMoreChildren = hasMoreChildren();\n";
|
|
|
|
OS << " bool MoreChildren = OldMoreChildren;\n";
|
|
|
|
|
2013-01-08 01:53:08 +08:00
|
|
|
for (std::vector<Record*>::iterator I = Args.begin(), E = Args.end();
|
2013-01-31 09:44:26 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
// More code for detecting the last child.
|
|
|
|
OS << " MoreChildren = OldMoreChildren";
|
|
|
|
for (std::vector<Record*>::iterator Next = I + 1; Next != E; ++Next) {
|
|
|
|
OS << " || ";
|
|
|
|
createArgument(**Next, R.getName())->writeHasChildren(OS);
|
|
|
|
}
|
|
|
|
OS << ";\n";
|
|
|
|
OS << " setMoreChildren(MoreChildren);\n";
|
|
|
|
|
2013-01-08 01:53:08 +08:00
|
|
|
createArgument(**I, R.getName())->writeDumpChildren(OS);
|
2013-01-31 09:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reset the last child.
|
|
|
|
OS << " setMoreChildren(OldMoreChildren);\n";
|
2013-01-08 01:53:08 +08:00
|
|
|
}
|
|
|
|
OS <<
|
|
|
|
" break;\n"
|
|
|
|
" }\n";
|
|
|
|
}
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:12:41 +08:00
|
|
|
} // end namespace clang
|