blob: 34af6cf63c872aa201d77295398e43798fbbb141 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- AttributeList.cpp --------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the AttributeList class implementation
11//
12//===----------------------------------------------------------------------===//
13
John McCall19510852010-08-20 18:27:03 +000014#include "clang/Sema/AttributeList.h"
Benjamin Kramer478851c2012-07-04 17:04:04 +000015#include "clang/AST/ASTContext.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070016#include "clang/AST/DeclCXX.h"
17#include "clang/AST/DeclTemplate.h"
John McCall0b7e6782011-03-24 11:26:52 +000018#include "clang/AST/Expr.h"
Chris Lattner8f823d22009-04-11 18:48:18 +000019#include "clang/Basic/IdentifierTable.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070020#include "clang/Sema/SemaInternal.h"
Richard Smithe0d3b4c2012-05-03 18:27:39 +000021#include "llvm/ADT/SmallString.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "llvm/ADT/StringSwitch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
Richard Smith8edabd92013-09-03 18:01:40 +000025IdentifierLoc *IdentifierLoc::create(ASTContext &Ctx, SourceLocation Loc,
26 IdentifierInfo *Ident) {
27 IdentifierLoc *Result = new (Ctx) IdentifierLoc;
28 Result->Loc = Loc;
29 Result->Ident = Ident;
30 return Result;
31}
32
John McCall0b7e6782011-03-24 11:26:52 +000033size_t AttributeList::allocated_size() const {
34 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +000035 else if (IsTypeTagForDatatype)
36 return AttributeFactory::TypeTagForDatatypeAllocSize;
John McCall76da55d2013-04-16 07:28:30 +000037 else if (IsProperty)
38 return AttributeFactory::PropertyAllocSize;
Aaron Ballman624421f2013-08-31 01:11:41 +000039 return (sizeof(AttributeList) + NumArgs * sizeof(ArgsUnion));
Reid Spencer5f016e22007-07-11 17:01:13 +000040}
Chris Lattner23351912008-02-20 23:14:47 +000041
John McCall0b7e6782011-03-24 11:26:52 +000042AttributeFactory::AttributeFactory() {
43 // Go ahead and configure all the inline capacity. This is just a memset.
44 FreeLists.resize(InlineFreeListsCapacity);
45}
46AttributeFactory::~AttributeFactory() {}
47
48static size_t getFreeListIndexForSize(size_t size) {
49 assert(size >= sizeof(AttributeList));
50 assert((size % sizeof(void*)) == 0);
51 return ((size - sizeof(AttributeList)) / sizeof(void*));
52}
53
54void *AttributeFactory::allocate(size_t size) {
55 // Check for a previously reclaimed attribute.
56 size_t index = getFreeListIndexForSize(size);
57 if (index < FreeLists.size()) {
58 if (AttributeList *attr = FreeLists[index]) {
59 FreeLists[index] = attr->NextInPool;
60 return attr;
61 }
62 }
63
64 // Otherwise, allocate something new.
65 return Alloc.Allocate(size, llvm::AlignOf<AttributeFactory>::Alignment);
66}
67
68void AttributeFactory::reclaimPool(AttributeList *cur) {
69 assert(cur && "reclaiming empty pool!");
70 do {
71 // Read this here, because we're going to overwrite NextInPool
72 // when we toss 'cur' into the appropriate queue.
73 AttributeList *next = cur->NextInPool;
74
75 size_t size = cur->allocated_size();
76 size_t freeListIndex = getFreeListIndexForSize(size);
77
78 // Expand FreeLists to the appropriate size, if required.
79 if (freeListIndex >= FreeLists.size())
80 FreeLists.resize(freeListIndex+1);
81
82 // Add 'cur' to the appropriate free-list.
83 cur->NextInPool = FreeLists[freeListIndex];
84 FreeLists[freeListIndex] = cur;
85
86 cur = next;
87 } while (cur);
88}
89
90void AttributePool::takePool(AttributeList *pool) {
91 assert(pool);
92
93 // Fast path: this pool is empty.
94 if (!Head) {
95 Head = pool;
96 return;
97 }
98
99 // Reverse the pool onto the current head. This optimizes for the
100 // pattern of pulling a lot of pools into a single pool.
101 do {
102 AttributeList *next = pool->NextInPool;
103 pool->NextInPool = Head;
104 Head = pool;
105 pool = next;
106 } while (pool);
107}
108
Douglas Gregor0c19b3c2012-05-02 17:33:51 +0000109#include "clang/Sema/AttrParsedAttrKinds.inc"
110
Richard Smithe0d3b4c2012-05-03 18:27:39 +0000111AttributeList::Kind AttributeList::getKind(const IdentifierInfo *Name,
Sean Hunt93f95f22012-06-18 16:13:52 +0000112 const IdentifierInfo *ScopeName,
113 Syntax SyntaxUsed) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000114 StringRef AttrName = Name->getName();
Chris Lattner23351912008-02-20 23:14:47 +0000115
Stephen Hines651f13c2014-04-23 16:59:28 -0700116 SmallString<64> FullName;
Richard Smithe0d3b4c2012-05-03 18:27:39 +0000117 if (ScopeName)
Stephen Hines651f13c2014-04-23 16:59:28 -0700118 FullName += ScopeName->getName();
119
120 // Normalize the attribute name, __foo__ becomes foo. This is only allowable
121 // for GNU attributes.
122 bool IsGNU = SyntaxUsed == AS_GNU || (SyntaxUsed == AS_CXX11 &&
123 FullName == "gnu");
124 if (IsGNU && AttrName.size() >= 4 && AttrName.startswith("__") &&
125 AttrName.endswith("__"))
126 AttrName = AttrName.slice(2, AttrName.size() - 2);
127
Sean Hunt93f95f22012-06-18 16:13:52 +0000128 // Ensure that in the case of C++11 attributes, we look for '::foo' if it is
129 // unscoped.
130 if (ScopeName || SyntaxUsed == AS_CXX11)
Stephen Hines651f13c2014-04-23 16:59:28 -0700131 FullName += "::";
132 FullName += AttrName;
Richard Smithe0d3b4c2012-05-03 18:27:39 +0000133
Stephen Hines651f13c2014-04-23 16:59:28 -0700134 return ::getAttrKind(FullName, SyntaxUsed);
Chris Lattner23351912008-02-20 23:14:47 +0000135}
Michael Han51d8c522013-01-24 16:46:58 +0000136
137unsigned AttributeList::getAttributeSpellingListIndex() const {
138 // Both variables will be used in tablegen generated
139 // attribute spell list index matching code.
140 StringRef Name = AttrName->getName();
141 StringRef Scope = ScopeName ? ScopeName->getName() : "";
142
143#include "clang/Sema/AttrSpellingListIndex.inc"
144
145}
146
Aaron Ballmanbbb3b322013-09-09 23:33:17 +0000147struct ParsedAttrInfo {
148 unsigned NumArgs : 4;
149 unsigned OptArgs : 4;
150 unsigned HasCustomParsing : 1;
Stephen Hines651f13c2014-04-23 16:59:28 -0700151 unsigned IsTargetSpecific : 1;
152 unsigned IsType : 1;
153 unsigned IsKnownToGCC : 1;
154
155 bool (*DiagAppertainsToDecl)(Sema &S, const AttributeList &Attr,
156 const Decl *);
157 bool (*DiagLangOpts)(Sema &S, const AttributeList &Attr);
158 bool (*ExistsInTarget)(const llvm::Triple &T);
159 unsigned (*SpellingIndexToSemanticSpelling)(const AttributeList &Attr);
Aaron Ballmanbbb3b322013-09-09 23:33:17 +0000160};
161
162namespace {
163 #include "clang/Sema/AttrParsedAttrImpl.inc"
164}
165
Benjamin Kramer6ad3cdd2013-09-28 15:08:41 +0000166static const ParsedAttrInfo &getInfo(const AttributeList &A) {
Aaron Ballmanbbb3b322013-09-09 23:33:17 +0000167 return AttrInfoMap[A.getKind()];
168}
169
170unsigned AttributeList::getMinArgs() const {
171 return getInfo(*this).NumArgs;
172}
173
174unsigned AttributeList::getMaxArgs() const {
175 return getMinArgs() + getInfo(*this).OptArgs;
176}
177
178bool AttributeList::hasCustomParsing() const {
179 return getInfo(*this).HasCustomParsing;
180}
Stephen Hines651f13c2014-04-23 16:59:28 -0700181
182bool AttributeList::diagnoseAppertainsTo(Sema &S, const Decl *D) const {
183 return getInfo(*this).DiagAppertainsToDecl(S, *this, D);
184}
185
186bool AttributeList::diagnoseLangOpts(Sema &S) const {
187 return getInfo(*this).DiagLangOpts(S, *this);
188}
189
190bool AttributeList::isTargetSpecificAttr() const {
191 return getInfo(*this).IsTargetSpecific;
192}
193
194bool AttributeList::isTypeAttr() const {
195 return getInfo(*this).IsType;
196}
197
198bool AttributeList::existsInTarget(const llvm::Triple &T) const {
199 return getInfo(*this).ExistsInTarget(T);
200}
201
202bool AttributeList::isKnownToGCC() const {
203 return getInfo(*this).IsKnownToGCC;
204}
205
206unsigned AttributeList::getSemanticSpelling() const {
207 return getInfo(*this).SpellingIndexToSemanticSpelling(*this);
208}
Stephen Hines176edba2014-12-01 14:53:08 -0800209
210bool AttributeList::hasVariadicArg() const {
211 // If the attribute has the maximum number of optional arguments, we will
212 // claim that as being variadic. If we someday get an attribute that
213 // legitimately bumps up against that maximum, we can use another bit to track
214 // whether it's truly variadic or not.
215 return getInfo(*this).OptArgs == 15;
216}