blob: 55e9601bf5e5877b0e2ecc0b54ba09be1035d659 [file] [log] [blame]
Steve Naroffb8371e12007-06-09 03:39:29 +00001//===--- AttributeList.cpp --------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Steve Naroffb8371e12007-06-09 03:39:29 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the AttributeList class implementation
11//
12//===----------------------------------------------------------------------===//
13
John McCall8b0666c2010-08-20 18:27:03 +000014#include "clang/Sema/AttributeList.h"
Benjamin Kramer1ea8e092012-07-04 17:04:04 +000015#include "clang/AST/ASTContext.h"
Aaron Ballman74eeeae2013-11-27 13:27:02 +000016#include "clang/AST/DeclCXX.h"
17#include "clang/AST/DeclTemplate.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000018#include "clang/AST/Expr.h"
Chris Lattner7e0fe442009-04-11 18:48:18 +000019#include "clang/Basic/IdentifierTable.h"
Bob Wilson7c730832015-07-20 22:57:31 +000020#include "clang/Basic/TargetInfo.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000021#include "clang/Sema/SemaInternal.h"
Richard Smith84837d52012-05-03 18:27:39 +000022#include "llvm/ADT/SmallString.h"
Steve Naroffb8371e12007-06-09 03:39:29 +000023using namespace clang;
24
Richard Smithfeefaf52013-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 McCall084e83d2011-03-24 11:26:52 +000033size_t AttributeList::allocated_size() const {
34 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000035 else if (IsTypeTagForDatatype)
36 return AttributeFactory::TypeTagForDatatypeAllocSize;
John McCall5e77d762013-04-16 07:28:30 +000037 else if (IsProperty)
38 return AttributeFactory::PropertyAllocSize;
Aaron Ballman00e99962013-08-31 01:11:41 +000039 return (sizeof(AttributeList) + NumArgs * sizeof(ArgsUnion));
Steve Naroffb8371e12007-06-09 03:39:29 +000040}
Chris Lattnerf18c7432008-02-20 23:14:47 +000041
John McCall084e83d2011-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}
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000046AttributeFactory::~AttributeFactory() {}
John McCall084e83d2011-03-24 11:26:52 +000047
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.
Benjamin Kramerc3f89252016-10-20 14:27:22 +000065 return Alloc.Allocate(size, alignof(AttributeFactory));
John McCall084e83d2011-03-24 11:26:52 +000066}
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 Gregor377f99b2012-05-02 17:33:51 +0000109#include "clang/Sema/AttrParsedAttrKinds.inc"
110
David Majnemera94e7b62015-08-25 16:44:38 +0000111static StringRef normalizeAttrName(StringRef AttrName, StringRef ScopeName,
112 AttributeList::Syntax SyntaxUsed) {
113 // Normalize the attribute name, __foo__ becomes foo. This is only allowable
114 // for GNU attributes.
115 bool IsGNU = SyntaxUsed == AttributeList::AS_GNU ||
116 (SyntaxUsed == AttributeList::AS_CXX11 && ScopeName == "gnu");
117 if (IsGNU && AttrName.size() >= 4 && AttrName.startswith("__") &&
118 AttrName.endswith("__"))
119 AttrName = AttrName.slice(2, AttrName.size() - 2);
120
121 return AttrName;
122}
123
Richard Smith84837d52012-05-03 18:27:39 +0000124AttributeList::Kind AttributeList::getKind(const IdentifierInfo *Name,
Alexis Hunta0e54d42012-06-18 16:13:52 +0000125 const IdentifierInfo *ScopeName,
126 Syntax SyntaxUsed) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000127 StringRef AttrName = Name->getName();
Chris Lattnerf18c7432008-02-20 23:14:47 +0000128
Aaron Ballmanc6988092013-12-11 22:27:44 +0000129 SmallString<64> FullName;
Richard Smith84837d52012-05-03 18:27:39 +0000130 if (ScopeName)
Aaron Ballmanc6988092013-12-11 22:27:44 +0000131 FullName += ScopeName->getName();
132
David Majnemera94e7b62015-08-25 16:44:38 +0000133 AttrName = normalizeAttrName(AttrName, FullName, SyntaxUsed);
Aaron Ballmanc6988092013-12-11 22:27:44 +0000134
Alexis Hunta0e54d42012-06-18 16:13:52 +0000135 // Ensure that in the case of C++11 attributes, we look for '::foo' if it is
136 // unscoped.
137 if (ScopeName || SyntaxUsed == AS_CXX11)
Aaron Ballmanc6988092013-12-11 22:27:44 +0000138 FullName += "::";
139 FullName += AttrName;
Richard Smith84837d52012-05-03 18:27:39 +0000140
Aaron Ballman09e98ff2014-01-13 21:42:39 +0000141 return ::getAttrKind(FullName, SyntaxUsed);
Chris Lattnerf18c7432008-02-20 23:14:47 +0000142}
Michael Han99315932013-01-24 16:46:58 +0000143
144unsigned AttributeList::getAttributeSpellingListIndex() const {
145 // Both variables will be used in tablegen generated
146 // attribute spell list index matching code.
Michael Han99315932013-01-24 16:46:58 +0000147 StringRef Scope = ScopeName ? ScopeName->getName() : "";
David Majnemera94e7b62015-08-25 16:44:38 +0000148 StringRef Name = normalizeAttrName(AttrName->getName(), Scope,
149 (AttributeList::Syntax)SyntaxUsed);
Michael Han99315932013-01-24 16:46:58 +0000150
151#include "clang/Sema/AttrSpellingListIndex.inc"
152
153}
154
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000155struct ParsedAttrInfo {
156 unsigned NumArgs : 4;
157 unsigned OptArgs : 4;
158 unsigned HasCustomParsing : 1;
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000159 unsigned IsTargetSpecific : 1;
160 unsigned IsType : 1;
Richard Smith4f902c72016-03-08 00:32:55 +0000161 unsigned IsStmt : 1;
Aaron Ballmanc669cc02014-01-27 22:10:04 +0000162 unsigned IsKnownToGCC : 1;
Aaron Ballman74eeeae2013-11-27 13:27:02 +0000163
164 bool (*DiagAppertainsToDecl)(Sema &S, const AttributeList &Attr,
165 const Decl *);
Aaron Ballman3aff6332013-12-02 19:30:36 +0000166 bool (*DiagLangOpts)(Sema &S, const AttributeList &Attr);
Bob Wilson7c730832015-07-20 22:57:31 +0000167 bool (*ExistsInTarget)(const TargetInfo &Target);
Aaron Ballman81cb8cb2014-01-24 21:32:49 +0000168 unsigned (*SpellingIndexToSemanticSpelling)(const AttributeList &Attr);
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000169};
170
171namespace {
172 #include "clang/Sema/AttrParsedAttrImpl.inc"
173}
174
Benjamin Kramer602623f2013-09-28 15:08:41 +0000175static const ParsedAttrInfo &getInfo(const AttributeList &A) {
Aaron Ballman8ee40b72013-09-09 23:33:17 +0000176 return AttrInfoMap[A.getKind()];
177}
178
179unsigned AttributeList::getMinArgs() const {
180 return getInfo(*this).NumArgs;
181}
182
183unsigned AttributeList::getMaxArgs() const {
184 return getMinArgs() + getInfo(*this).OptArgs;
185}
186
187bool AttributeList::hasCustomParsing() const {
188 return getInfo(*this).HasCustomParsing;
189}
Aaron Ballman74eeeae2013-11-27 13:27:02 +0000190
191bool AttributeList::diagnoseAppertainsTo(Sema &S, const Decl *D) const {
192 return getInfo(*this).DiagAppertainsToDecl(S, *this, D);
193}
Aaron Ballman3aff6332013-12-02 19:30:36 +0000194
195bool AttributeList::diagnoseLangOpts(Sema &S) const {
196 return getInfo(*this).DiagLangOpts(S, *this);
197}
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000198
199bool AttributeList::isTargetSpecificAttr() const {
200 return getInfo(*this).IsTargetSpecific;
201}
202
203bool AttributeList::isTypeAttr() const {
204 return getInfo(*this).IsType;
205}
206
Richard Smith4f902c72016-03-08 00:32:55 +0000207bool AttributeList::isStmtAttr() const {
208 return getInfo(*this).IsStmt;
209}
210
Bob Wilson7c730832015-07-20 22:57:31 +0000211bool AttributeList::existsInTarget(const TargetInfo &Target) const {
212 return getInfo(*this).ExistsInTarget(Target);
Aaron Ballmanab7691c2014-01-09 22:48:32 +0000213}
Aaron Ballman9a99e0d2014-01-20 17:18:35 +0000214
Aaron Ballmanc669cc02014-01-27 22:10:04 +0000215bool AttributeList::isKnownToGCC() const {
216 return getInfo(*this).IsKnownToGCC;
Aaron Ballman9a99e0d2014-01-20 17:18:35 +0000217}
Aaron Ballman81cb8cb2014-01-24 21:32:49 +0000218
219unsigned AttributeList::getSemanticSpelling() const {
220 return getInfo(*this).SpellingIndexToSemanticSpelling(*this);
221}
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000222
223bool AttributeList::hasVariadicArg() const {
224 // If the attribute has the maximum number of optional arguments, we will
225 // claim that as being variadic. If we someday get an attribute that
226 // legitimately bumps up against that maximum, we can use another bit to track
227 // whether it's truly variadic or not.
228 return getInfo(*this).OptArgs == 15;
229}