blob: b5ef5fa2adc42ca89f5468ee37de7ce1bcd16bdf [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ASTContext.cpp - Context to hold long-lived AST nodes ------------===//
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 implements the ASTContext interface.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/ASTContext.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "CXXABI.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000016#include "clang/AST/ASTMutationListener.h"
17#include "clang/AST/Attr.h"
Ken Dyckbdc601b2009-12-22 14:23:30 +000018#include "clang/AST/CharUnits.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000019#include "clang/AST/Comment.h"
Dmitri Gribenkoaa580812012-08-09 00:03:17 +000020#include "clang/AST/CommentCommandTraits.h"
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +000021#include "clang/AST/DeclCXX.h"
Steve Naroff980e5082007-10-01 19:00:59 +000022#include "clang/AST/DeclObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000023#include "clang/AST/DeclTemplate.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000024#include "clang/AST/Expr.h"
John McCallea1471e2010-05-20 01:18:31 +000025#include "clang/AST/ExprCXX.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000026#include "clang/AST/ExternalASTSource.h"
Peter Collingbourne14110472011-01-13 18:57:25 +000027#include "clang/AST/Mangle.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000028#include "clang/AST/RecordLayout.h"
Reid Klecknercff15122013-06-17 12:56:08 +000029#include "clang/AST/RecursiveASTVisitor.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000030#include "clang/AST/TypeLoc.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000031#include "clang/Basic/Builtins.h"
Chris Lattnera9376d42009-03-28 03:45:20 +000032#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000033#include "clang/Basic/TargetInfo.h"
Benjamin Kramerf5942a42009-10-24 09:57:09 +000034#include "llvm/ADT/SmallString.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000035#include "llvm/ADT/StringExtras.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000036#include "llvm/Support/Capacity.h"
Nate Begeman6fe7c8a2009-01-18 06:42:49 +000037#include "llvm/Support/MathExtras.h"
Benjamin Kramerf5942a42009-10-24 09:57:09 +000038#include "llvm/Support/raw_ostream.h"
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +000039#include <map>
Anders Carlsson29445a02009-07-18 21:19:52 +000040
Reid Spencer5f016e22007-07-11 17:01:13 +000041using namespace clang;
42
Douglas Gregor18274032010-07-03 00:47:00 +000043unsigned ASTContext::NumImplicitDefaultConstructors;
44unsigned ASTContext::NumImplicitDefaultConstructorsDeclared;
Douglas Gregor22584312010-07-02 23:41:54 +000045unsigned ASTContext::NumImplicitCopyConstructors;
46unsigned ASTContext::NumImplicitCopyConstructorsDeclared;
Sean Huntffe37fd2011-05-25 20:50:04 +000047unsigned ASTContext::NumImplicitMoveConstructors;
48unsigned ASTContext::NumImplicitMoveConstructorsDeclared;
Douglas Gregora376d102010-07-02 21:50:04 +000049unsigned ASTContext::NumImplicitCopyAssignmentOperators;
50unsigned ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Huntffe37fd2011-05-25 20:50:04 +000051unsigned ASTContext::NumImplicitMoveAssignmentOperators;
52unsigned ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
Douglas Gregor4923aa22010-07-02 20:37:36 +000053unsigned ASTContext::NumImplicitDestructors;
54unsigned ASTContext::NumImplicitDestructorsDeclared;
55
Reid Spencer5f016e22007-07-11 17:01:13 +000056enum FloatingRank {
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +000057 HalfRank, FloatRank, DoubleRank, LongDoubleRank
Reid Spencer5f016e22007-07-11 17:01:13 +000058};
59
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +000060RawComment *ASTContext::getRawCommentForDeclNoCache(const Decl *D) const {
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +000061 if (!CommentsLoaded && ExternalSource) {
62 ExternalSource->ReadComments();
63 CommentsLoaded = true;
64 }
65
66 assert(D);
67
Dmitri Gribenkoc3fee352012-06-28 16:19:39 +000068 // User can not attach documentation to implicit declarations.
69 if (D->isImplicit())
70 return NULL;
71
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +000072 // User can not attach documentation to implicit instantiations.
73 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
74 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
75 return NULL;
76 }
77
Dmitri Gribenkodce750b2012-08-20 22:36:31 +000078 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
79 if (VD->isStaticDataMember() &&
80 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
81 return NULL;
82 }
83
84 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
85 if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
86 return NULL;
87 }
88
Dmitri Gribenkod1e5c0d2013-01-27 21:18:39 +000089 if (const ClassTemplateSpecializationDecl *CTSD =
90 dyn_cast<ClassTemplateSpecializationDecl>(D)) {
91 TemplateSpecializationKind TSK = CTSD->getSpecializationKind();
92 if (TSK == TSK_ImplicitInstantiation ||
93 TSK == TSK_Undeclared)
94 return NULL;
95 }
96
Dmitri Gribenkodce750b2012-08-20 22:36:31 +000097 if (const EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
98 if (ED->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
99 return NULL;
100 }
Fariborz Jahanian099ecfb2013-04-17 21:05:20 +0000101 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
102 // When tag declaration (but not definition!) is part of the
103 // decl-specifier-seq of some other declaration, it doesn't get comment
104 if (TD->isEmbeddedInDeclarator() && !TD->isCompleteDefinition())
105 return NULL;
106 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000107 // TODO: handle comments for function parameters properly.
108 if (isa<ParmVarDecl>(D))
109 return NULL;
110
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000111 // TODO: we could look up template parameter documentation in the template
112 // documentation.
113 if (isa<TemplateTypeParmDecl>(D) ||
114 isa<NonTypeTemplateParmDecl>(D) ||
115 isa<TemplateTemplateParmDecl>(D))
116 return NULL;
117
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000118 ArrayRef<RawComment *> RawComments = Comments.getComments();
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000119
120 // If there are no comments anywhere, we won't find anything.
121 if (RawComments.empty())
122 return NULL;
123
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +0000124 // Find declaration location.
125 // For Objective-C declarations we generally don't expect to have multiple
126 // declarators, thus use declaration starting location as the "declaration
127 // location".
128 // For all other declarations multiple declarators are used quite frequently,
129 // so we use the location of the identifier as the "declaration location".
130 SourceLocation DeclLoc;
131 if (isa<ObjCMethodDecl>(D) || isa<ObjCContainerDecl>(D) ||
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000132 isa<ObjCPropertyDecl>(D) ||
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +0000133 isa<RedeclarableTemplateDecl>(D) ||
134 isa<ClassTemplateSpecializationDecl>(D))
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +0000135 DeclLoc = D->getLocStart();
136 else
137 DeclLoc = D->getLocation();
138
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000139 // If the declaration doesn't map directly to a location in a file, we
140 // can't find the comment.
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000141 if (DeclLoc.isInvalid() || !DeclLoc.isFileID())
142 return NULL;
143
144 // Find the comment that occurs just after this declaration.
Dmitri Gribenkoa444f182012-07-17 22:01:09 +0000145 ArrayRef<RawComment *>::iterator Comment;
146 {
147 // When searching for comments during parsing, the comment we are looking
148 // for is usually among the last two comments we parsed -- check them
149 // first.
Dmitri Gribenko6fd7d302013-04-10 15:35:17 +0000150 RawComment CommentAtDeclLoc(
151 SourceMgr, SourceRange(DeclLoc), false,
152 LangOpts.CommentOpts.ParseAllComments);
Dmitri Gribenkoa444f182012-07-17 22:01:09 +0000153 BeforeThanCompare<RawComment> Compare(SourceMgr);
154 ArrayRef<RawComment *>::iterator MaybeBeforeDecl = RawComments.end() - 1;
155 bool Found = Compare(*MaybeBeforeDecl, &CommentAtDeclLoc);
156 if (!Found && RawComments.size() >= 2) {
157 MaybeBeforeDecl--;
158 Found = Compare(*MaybeBeforeDecl, &CommentAtDeclLoc);
159 }
160
161 if (Found) {
162 Comment = MaybeBeforeDecl + 1;
163 assert(Comment == std::lower_bound(RawComments.begin(), RawComments.end(),
164 &CommentAtDeclLoc, Compare));
165 } else {
166 // Slow path.
167 Comment = std::lower_bound(RawComments.begin(), RawComments.end(),
168 &CommentAtDeclLoc, Compare);
169 }
170 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000171
172 // Decompose the location for the declaration and find the beginning of the
173 // file buffer.
174 std::pair<FileID, unsigned> DeclLocDecomp = SourceMgr.getDecomposedLoc(DeclLoc);
175
176 // First check whether we have a trailing comment.
177 if (Comment != RawComments.end() &&
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000178 (*Comment)->isDocumentation() && (*Comment)->isTrailingComment() &&
Dmitri Gribenko9c006762012-07-06 23:27:33 +0000179 (isa<FieldDecl>(D) || isa<EnumConstantDecl>(D) || isa<VarDecl>(D))) {
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000180 std::pair<FileID, unsigned> CommentBeginDecomp
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000181 = SourceMgr.getDecomposedLoc((*Comment)->getSourceRange().getBegin());
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000182 // Check that Doxygen trailing comment comes after the declaration, starts
183 // on the same line and in the same file as the declaration.
184 if (DeclLocDecomp.first == CommentBeginDecomp.first &&
185 SourceMgr.getLineNumber(DeclLocDecomp.first, DeclLocDecomp.second)
186 == SourceMgr.getLineNumber(CommentBeginDecomp.first,
187 CommentBeginDecomp.second)) {
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000188 return *Comment;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000189 }
190 }
191
192 // The comment just after the declaration was not a trailing comment.
193 // Let's look at the previous comment.
194 if (Comment == RawComments.begin())
195 return NULL;
196 --Comment;
197
198 // Check that we actually have a non-member Doxygen comment.
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000199 if (!(*Comment)->isDocumentation() || (*Comment)->isTrailingComment())
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000200 return NULL;
201
202 // Decompose the end of the comment.
203 std::pair<FileID, unsigned> CommentEndDecomp
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000204 = SourceMgr.getDecomposedLoc((*Comment)->getSourceRange().getEnd());
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000205
206 // If the comment and the declaration aren't in the same file, then they
207 // aren't related.
208 if (DeclLocDecomp.first != CommentEndDecomp.first)
209 return NULL;
210
211 // Get the corresponding buffer.
212 bool Invalid = false;
213 const char *Buffer = SourceMgr.getBufferData(DeclLocDecomp.first,
214 &Invalid).data();
215 if (Invalid)
216 return NULL;
217
218 // Extract text between the comment and declaration.
219 StringRef Text(Buffer + CommentEndDecomp.second,
220 DeclLocDecomp.second - CommentEndDecomp.second);
221
Dmitri Gribenko8bdb58a2012-06-27 23:43:37 +0000222 // There should be no other declarations or preprocessor directives between
223 // comment and declaration.
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +0000224 if (Text.find_first_of(",;{}#@") != StringRef::npos)
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000225 return NULL;
226
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000227 return *Comment;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000228}
229
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000230namespace {
231/// If we have a 'templated' declaration for a template, adjust 'D' to
232/// refer to the actual template.
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000233/// If we have an implicit instantiation, adjust 'D' to refer to template.
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000234const Decl *adjustDeclToTemplate(const Decl *D) {
Douglas Gregorcd81df22012-08-13 16:37:30 +0000235 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000236 // Is this function declaration part of a function template?
Douglas Gregorcd81df22012-08-13 16:37:30 +0000237 if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000238 return FTD;
239
240 // Nothing to do if function is not an implicit instantiation.
241 if (FD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation)
242 return D;
243
244 // Function is an implicit instantiation of a function template?
245 if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate())
246 return FTD;
247
248 // Function is instantiated from a member definition of a class template?
249 if (const FunctionDecl *MemberDecl =
250 FD->getInstantiatedFromMemberFunction())
251 return MemberDecl;
252
253 return D;
Douglas Gregorcd81df22012-08-13 16:37:30 +0000254 }
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000255 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
256 // Static data member is instantiated from a member definition of a class
257 // template?
258 if (VD->isStaticDataMember())
259 if (const VarDecl *MemberDecl = VD->getInstantiatedFromStaticDataMember())
260 return MemberDecl;
261
262 return D;
263 }
264 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
265 // Is this class declaration part of a class template?
266 if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate())
267 return CTD;
268
269 // Class is an implicit instantiation of a class template or partial
270 // specialization?
271 if (const ClassTemplateSpecializationDecl *CTSD =
272 dyn_cast<ClassTemplateSpecializationDecl>(CRD)) {
273 if (CTSD->getSpecializationKind() != TSK_ImplicitInstantiation)
274 return D;
275 llvm::PointerUnion<ClassTemplateDecl *,
276 ClassTemplatePartialSpecializationDecl *>
277 PU = CTSD->getSpecializedTemplateOrPartial();
278 return PU.is<ClassTemplateDecl*>() ?
279 static_cast<const Decl*>(PU.get<ClassTemplateDecl *>()) :
280 static_cast<const Decl*>(
281 PU.get<ClassTemplatePartialSpecializationDecl *>());
282 }
283
284 // Class is instantiated from a member definition of a class template?
285 if (const MemberSpecializationInfo *Info =
286 CRD->getMemberSpecializationInfo())
287 return Info->getInstantiatedFrom();
288
289 return D;
290 }
291 if (const EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
292 // Enum is instantiated from a member definition of a class template?
293 if (const EnumDecl *MemberDecl = ED->getInstantiatedFromMemberEnum())
294 return MemberDecl;
295
296 return D;
297 }
298 // FIXME: Adjust alias templates?
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000299 return D;
300}
301} // unnamed namespace
302
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000303const RawComment *ASTContext::getRawCommentForAnyRedecl(
304 const Decl *D,
305 const Decl **OriginalDecl) const {
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000306 D = adjustDeclToTemplate(D);
Douglas Gregorcd81df22012-08-13 16:37:30 +0000307
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000308 // Check whether we have cached a comment for this declaration already.
309 {
310 llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
311 RedeclComments.find(D);
312 if (Pos != RedeclComments.end()) {
313 const RawCommentAndCacheFlags &Raw = Pos->second;
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000314 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
315 if (OriginalDecl)
316 *OriginalDecl = Raw.getOriginalDecl();
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000317 return Raw.getRaw();
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000318 }
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000319 }
Dmitri Gribenko8d3ba232012-07-06 00:28:32 +0000320 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000321
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000322 // Search for comments attached to declarations in the redeclaration chain.
323 const RawComment *RC = NULL;
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000324 const Decl *OriginalDeclForRC = NULL;
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000325 for (Decl::redecl_iterator I = D->redecls_begin(),
326 E = D->redecls_end();
327 I != E; ++I) {
328 llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
329 RedeclComments.find(*I);
330 if (Pos != RedeclComments.end()) {
331 const RawCommentAndCacheFlags &Raw = Pos->second;
332 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
333 RC = Raw.getRaw();
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000334 OriginalDeclForRC = Raw.getOriginalDecl();
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000335 break;
336 }
337 } else {
338 RC = getRawCommentForDeclNoCache(*I);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000339 OriginalDeclForRC = *I;
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000340 RawCommentAndCacheFlags Raw;
341 if (RC) {
342 Raw.setRaw(RC);
343 Raw.setKind(RawCommentAndCacheFlags::FromDecl);
344 } else
345 Raw.setKind(RawCommentAndCacheFlags::NoCommentInDecl);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000346 Raw.setOriginalDecl(*I);
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000347 RedeclComments[*I] = Raw;
348 if (RC)
349 break;
350 }
351 }
352
Dmitri Gribenko8376f592012-06-28 16:25:36 +0000353 // If we found a comment, it should be a documentation comment.
354 assert(!RC || RC->isDocumentation());
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000355
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000356 if (OriginalDecl)
357 *OriginalDecl = OriginalDeclForRC;
358
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000359 // Update cache for every declaration in the redeclaration chain.
360 RawCommentAndCacheFlags Raw;
361 Raw.setRaw(RC);
362 Raw.setKind(RawCommentAndCacheFlags::FromRedecl);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000363 Raw.setOriginalDecl(OriginalDeclForRC);
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000364
365 for (Decl::redecl_iterator I = D->redecls_begin(),
366 E = D->redecls_end();
367 I != E; ++I) {
368 RawCommentAndCacheFlags &R = RedeclComments[*I];
369 if (R.getKind() == RawCommentAndCacheFlags::NoCommentInDecl)
370 R = Raw;
371 }
372
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000373 return RC;
374}
375
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000376static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod,
377 SmallVectorImpl<const NamedDecl *> &Redeclared) {
378 const DeclContext *DC = ObjCMethod->getDeclContext();
379 if (const ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(DC)) {
380 const ObjCInterfaceDecl *ID = IMD->getClassInterface();
381 if (!ID)
382 return;
383 // Add redeclared method here.
Douglas Gregord3297242013-01-16 23:00:23 +0000384 for (ObjCInterfaceDecl::known_extensions_iterator
385 Ext = ID->known_extensions_begin(),
386 ExtEnd = ID->known_extensions_end();
387 Ext != ExtEnd; ++Ext) {
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000388 if (ObjCMethodDecl *RedeclaredMethod =
Douglas Gregord3297242013-01-16 23:00:23 +0000389 Ext->getMethod(ObjCMethod->getSelector(),
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000390 ObjCMethod->isInstanceMethod()))
391 Redeclared.push_back(RedeclaredMethod);
392 }
393 }
394}
395
Fariborz Jahanian749ace62012-10-11 23:52:50 +0000396comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC,
397 const Decl *D) const {
398 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
399 ThisDeclInfo->CommentDecl = D;
400 ThisDeclInfo->IsFilled = false;
401 ThisDeclInfo->fill();
402 ThisDeclInfo->CommentDecl = FC->getDecl();
403 comments::FullComment *CFC =
404 new (*this) comments::FullComment(FC->getBlocks(),
405 ThisDeclInfo);
406 return CFC;
407
408}
409
Richard Smith0a74a4c2013-05-21 05:24:00 +0000410comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const {
411 const RawComment *RC = getRawCommentForDeclNoCache(D);
412 return RC ? RC->parse(*this, 0, D) : 0;
413}
414
Dmitri Gribenko19523542012-09-29 11:40:46 +0000415comments::FullComment *ASTContext::getCommentForDecl(
416 const Decl *D,
417 const Preprocessor *PP) const {
Fariborz Jahanianfbff0c42013-05-13 17:27:00 +0000418 if (D->isInvalidDecl())
419 return NULL;
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000420 D = adjustDeclToTemplate(D);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000421
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000422 const Decl *Canonical = D->getCanonicalDecl();
423 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos =
424 ParsedComments.find(Canonical);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000425
426 if (Pos != ParsedComments.end()) {
Fariborz Jahanian749ace62012-10-11 23:52:50 +0000427 if (Canonical != D) {
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000428 comments::FullComment *FC = Pos->second;
Fariborz Jahanian749ace62012-10-11 23:52:50 +0000429 comments::FullComment *CFC = cloneFullComment(FC, D);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000430 return CFC;
431 }
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000432 return Pos->second;
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000433 }
434
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000435 const Decl *OriginalDecl;
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000436
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000437 const RawComment *RC = getRawCommentForAnyRedecl(D, &OriginalDecl);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000438 if (!RC) {
439 if (isa<ObjCMethodDecl>(D) || isa<FunctionDecl>(D)) {
Dmitri Gribenko1e905da2012-11-03 14:24:57 +0000440 SmallVector<const NamedDecl*, 8> Overridden;
Fariborz Jahanianc328d9c2013-01-12 00:28:34 +0000441 const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D);
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000442 if (OMD && OMD->isPropertyAccessor())
443 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
444 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP))
445 return cloneFullComment(FC, D);
Fariborz Jahanianc328d9c2013-01-12 00:28:34 +0000446 if (OMD)
Dmitri Gribenko1e905da2012-11-03 14:24:57 +0000447 addRedeclaredMethods(OMD, Overridden);
448 getOverriddenMethods(dyn_cast<NamedDecl>(D), Overridden);
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000449 for (unsigned i = 0, e = Overridden.size(); i < e; i++)
450 if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP))
451 return cloneFullComment(FC, D);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000452 }
Fariborz Jahanian4857fdc2013-05-02 15:44:16 +0000453 else if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Dmitri Gribenkod1e5c0d2013-01-27 21:18:39 +0000454 // Attach any tag type's documentation to its typedef if latter
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000455 // does not have one of its own.
Fariborz Jahanian41170b52013-01-25 22:48:32 +0000456 QualType QT = TD->getUnderlyingType();
Dmitri Gribenkod1e5c0d2013-01-27 21:18:39 +0000457 if (const TagType *TT = QT->getAs<TagType>())
458 if (const Decl *TD = TT->getDecl())
459 if (comments::FullComment *FC = getCommentForDecl(TD, PP))
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000460 return cloneFullComment(FC, D);
Fariborz Jahanian41170b52013-01-25 22:48:32 +0000461 }
Fariborz Jahanian622bb4a2013-04-26 20:55:38 +0000462 else if (const ObjCInterfaceDecl *IC = dyn_cast<ObjCInterfaceDecl>(D)) {
463 while (IC->getSuperClass()) {
464 IC = IC->getSuperClass();
465 if (comments::FullComment *FC = getCommentForDecl(IC, PP))
466 return cloneFullComment(FC, D);
467 }
468 }
469 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) {
470 if (const ObjCInterfaceDecl *IC = CD->getClassInterface())
471 if (comments::FullComment *FC = getCommentForDecl(IC, PP))
472 return cloneFullComment(FC, D);
473 }
474 else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
475 if (!(RD = RD->getDefinition()))
476 return NULL;
477 // Check non-virtual bases.
478 for (CXXRecordDecl::base_class_const_iterator I =
479 RD->bases_begin(), E = RD->bases_end(); I != E; ++I) {
Fariborz Jahanian91efca02013-04-26 23:34:36 +0000480 if (I->isVirtual() || (I->getAccessSpecifier() != AS_public))
Fariborz Jahanian622bb4a2013-04-26 20:55:38 +0000481 continue;
482 QualType Ty = I->getType();
483 if (Ty.isNull())
484 continue;
485 if (const CXXRecordDecl *NonVirtualBase = Ty->getAsCXXRecordDecl()) {
486 if (!(NonVirtualBase= NonVirtualBase->getDefinition()))
487 continue;
488
489 if (comments::FullComment *FC = getCommentForDecl((NonVirtualBase), PP))
490 return cloneFullComment(FC, D);
491 }
492 }
493 // Check virtual bases.
494 for (CXXRecordDecl::base_class_const_iterator I =
495 RD->vbases_begin(), E = RD->vbases_end(); I != E; ++I) {
Fariborz Jahanian91efca02013-04-26 23:34:36 +0000496 if (I->getAccessSpecifier() != AS_public)
497 continue;
Fariborz Jahanian622bb4a2013-04-26 20:55:38 +0000498 QualType Ty = I->getType();
499 if (Ty.isNull())
500 continue;
501 if (const CXXRecordDecl *VirtualBase = Ty->getAsCXXRecordDecl()) {
502 if (!(VirtualBase= VirtualBase->getDefinition()))
503 continue;
504 if (comments::FullComment *FC = getCommentForDecl((VirtualBase), PP))
505 return cloneFullComment(FC, D);
506 }
507 }
508 }
Dmitri Gribenko8d3ba232012-07-06 00:28:32 +0000509 return NULL;
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000510 }
511
Dmitri Gribenko4b41c652012-08-22 18:12:19 +0000512 // If the RawComment was attached to other redeclaration of this Decl, we
513 // should parse the comment in context of that other Decl. This is important
514 // because comments can contain references to parameter names which can be
515 // different across redeclarations.
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000516 if (D != OriginalDecl)
Dmitri Gribenko19523542012-09-29 11:40:46 +0000517 return getCommentForDecl(OriginalDecl, PP);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000518
Dmitri Gribenko19523542012-09-29 11:40:46 +0000519 comments::FullComment *FC = RC->parse(*this, PP, D);
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000520 ParsedComments[Canonical] = FC;
521 return FC;
Dmitri Gribenko8d3ba232012-07-06 00:28:32 +0000522}
523
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000524void
525ASTContext::CanonicalTemplateTemplateParm::Profile(llvm::FoldingSetNodeID &ID,
526 TemplateTemplateParmDecl *Parm) {
527 ID.AddInteger(Parm->getDepth());
528 ID.AddInteger(Parm->getPosition());
Douglas Gregor61c4d282011-01-05 15:48:55 +0000529 ID.AddBoolean(Parm->isParameterPack());
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000530
531 TemplateParameterList *Params = Parm->getTemplateParameters();
532 ID.AddInteger(Params->size());
533 for (TemplateParameterList::const_iterator P = Params->begin(),
534 PEnd = Params->end();
535 P != PEnd; ++P) {
536 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
537 ID.AddInteger(0);
538 ID.AddBoolean(TTP->isParameterPack());
539 continue;
540 }
541
542 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
543 ID.AddInteger(1);
Douglas Gregor61c4d282011-01-05 15:48:55 +0000544 ID.AddBoolean(NTTP->isParameterPack());
Eli Friedman9e9c4542012-03-07 01:09:33 +0000545 ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr());
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000546 if (NTTP->isExpandedParameterPack()) {
547 ID.AddBoolean(true);
548 ID.AddInteger(NTTP->getNumExpansionTypes());
Eli Friedman9e9c4542012-03-07 01:09:33 +0000549 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
550 QualType T = NTTP->getExpansionType(I);
551 ID.AddPointer(T.getCanonicalType().getAsOpaquePtr());
552 }
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000553 } else
554 ID.AddBoolean(false);
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000555 continue;
556 }
557
558 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
559 ID.AddInteger(2);
560 Profile(ID, TTP);
561 }
562}
563
564TemplateTemplateParmDecl *
565ASTContext::getCanonicalTemplateTemplateParmDecl(
Jay Foad4ba2a172011-01-12 09:06:06 +0000566 TemplateTemplateParmDecl *TTP) const {
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000567 // Check if we already have a canonical template template parameter.
568 llvm::FoldingSetNodeID ID;
569 CanonicalTemplateTemplateParm::Profile(ID, TTP);
570 void *InsertPos = 0;
571 CanonicalTemplateTemplateParm *Canonical
572 = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
573 if (Canonical)
574 return Canonical->getParam();
575
576 // Build a canonical template parameter list.
577 TemplateParameterList *Params = TTP->getTemplateParameters();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000578 SmallVector<NamedDecl *, 4> CanonParams;
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000579 CanonParams.reserve(Params->size());
580 for (TemplateParameterList::const_iterator P = Params->begin(),
581 PEnd = Params->end();
582 P != PEnd; ++P) {
583 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P))
584 CanonParams.push_back(
585 TemplateTypeParmDecl::Create(*this, getTranslationUnitDecl(),
Abramo Bagnara344577e2011-03-06 15:48:19 +0000586 SourceLocation(),
587 SourceLocation(),
588 TTP->getDepth(),
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000589 TTP->getIndex(), 0, false,
590 TTP->isParameterPack()));
591 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000592 = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
593 QualType T = getCanonicalType(NTTP->getType());
594 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
595 NonTypeTemplateParmDecl *Param;
596 if (NTTP->isExpandedParameterPack()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000597 SmallVector<QualType, 2> ExpandedTypes;
598 SmallVector<TypeSourceInfo *, 2> ExpandedTInfos;
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000599 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
600 ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I)));
601 ExpandedTInfos.push_back(
602 getTrivialTypeSourceInfo(ExpandedTypes.back()));
603 }
604
605 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000606 SourceLocation(),
607 SourceLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000608 NTTP->getDepth(),
609 NTTP->getPosition(), 0,
610 T,
611 TInfo,
612 ExpandedTypes.data(),
613 ExpandedTypes.size(),
614 ExpandedTInfos.data());
615 } else {
616 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000617 SourceLocation(),
618 SourceLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000619 NTTP->getDepth(),
620 NTTP->getPosition(), 0,
621 T,
622 NTTP->isParameterPack(),
623 TInfo);
624 }
625 CanonParams.push_back(Param);
626
627 } else
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000628 CanonParams.push_back(getCanonicalTemplateTemplateParmDecl(
629 cast<TemplateTemplateParmDecl>(*P)));
630 }
631
632 TemplateTemplateParmDecl *CanonTTP
633 = TemplateTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
634 SourceLocation(), TTP->getDepth(),
Douglas Gregor61c4d282011-01-05 15:48:55 +0000635 TTP->getPosition(),
636 TTP->isParameterPack(),
637 0,
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000638 TemplateParameterList::Create(*this, SourceLocation(),
639 SourceLocation(),
640 CanonParams.data(),
641 CanonParams.size(),
642 SourceLocation()));
643
644 // Get the new insert position for the node we care about.
645 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
646 assert(Canonical == 0 && "Shouldn't be in the map!");
647 (void)Canonical;
648
649 // Create the canonical template template parameter entry.
650 Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP);
651 CanonTemplateTemplateParms.InsertNode(Canonical, InsertPos);
652 return CanonTTP;
653}
654
Charles Davis071cc7d2010-08-16 03:33:14 +0000655CXXABI *ASTContext::createCXXABI(const TargetInfo &T) {
John McCallee79a4c2010-08-21 22:46:04 +0000656 if (!LangOpts.CPlusPlus) return 0;
657
John McCallb8b2c9d2013-01-25 22:30:49 +0000658 switch (T.getCXXABI().getKind()) {
659 case TargetCXXABI::GenericARM:
660 case TargetCXXABI::iOS:
John McCallee79a4c2010-08-21 22:46:04 +0000661 return CreateARMCXXABI(*this);
Tim Northoverc264e162013-01-31 12:13:10 +0000662 case TargetCXXABI::GenericAArch64: // Same as Itanium at this level
John McCallb8b2c9d2013-01-25 22:30:49 +0000663 case TargetCXXABI::GenericItanium:
Charles Davis071cc7d2010-08-16 03:33:14 +0000664 return CreateItaniumCXXABI(*this);
John McCallb8b2c9d2013-01-25 22:30:49 +0000665 case TargetCXXABI::Microsoft:
Charles Davis20cf7172010-08-19 02:18:14 +0000666 return CreateMicrosoftCXXABI(*this);
667 }
David Blaikie7530c032012-01-17 06:56:22 +0000668 llvm_unreachable("Invalid CXXABI type!");
Charles Davis071cc7d2010-08-16 03:33:14 +0000669}
670
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000671static const LangAS::Map *getAddressSpaceMap(const TargetInfo &T,
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000672 const LangOptions &LOpts) {
673 if (LOpts.FakeAddressSpaceMap) {
674 // The fake address space map must have a distinct entry for each
675 // language-specific address space.
676 static const unsigned FakeAddrSpaceMap[] = {
677 1, // opencl_global
678 2, // opencl_local
Peter Collingbourne4dc34eb2012-05-20 21:08:35 +0000679 3, // opencl_constant
680 4, // cuda_device
681 5, // cuda_constant
682 6 // cuda_shared
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000683 };
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000684 return &FakeAddrSpaceMap;
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000685 } else {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000686 return &T.getAddressSpaceMap();
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000687 }
688}
689
Douglas Gregor3e3cd932011-09-01 20:23:19 +0000690ASTContext::ASTContext(LangOptions& LOpts, SourceManager &SM,
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000691 const TargetInfo *t,
Daniel Dunbare91593e2008-08-11 04:54:23 +0000692 IdentifierTable &idents, SelectorTable &sels,
Chris Lattner1b63e4f2009-06-14 01:54:56 +0000693 Builtin::Context &builtins,
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000694 unsigned size_reserve,
695 bool DelayInitialization)
696 : FunctionProtoTypes(this_()),
697 TemplateSpecializationTypes(this_()),
698 DependentTemplateSpecializationTypes(this_()),
699 SubstTemplateTemplateParmPacks(this_()),
700 GlobalNestedNameSpecifier(0),
Nico Webercac18ad2013-06-20 21:44:55 +0000701 Int128Decl(0), UInt128Decl(0), Float128StubDecl(0),
Meador Ingec5613b22012-06-16 03:34:49 +0000702 BuiltinVaListDecl(0),
Douglas Gregora6ea10e2012-01-17 18:09:05 +0000703 ObjCIdDecl(0), ObjCSelDecl(0), ObjCClassDecl(0), ObjCProtocolClassDecl(0),
Fariborz Jahanian96171302012-08-30 18:49:41 +0000704 BOOLDecl(0),
Douglas Gregore97179c2011-09-08 01:46:34 +0000705 CFConstantStringTypeDecl(0), ObjCInstanceTypeDecl(0),
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000706 FILEDecl(0),
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +0000707 jmp_bufDecl(0), sigjmp_bufDecl(0), ucontext_tDecl(0),
708 BlockDescriptorType(0), BlockDescriptorExtendedType(0),
709 cudaConfigureCallDecl(0),
Douglas Gregore6649772011-12-03 00:30:27 +0000710 NullTypeSourceInfo(QualType()),
711 FirstLocalImport(), LastLocalImport(),
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000712 SourceMgr(SM), LangOpts(LOpts),
Douglas Gregor30c42402011-09-27 22:38:19 +0000713 AddrSpaceMap(0), Target(t), PrintingPolicy(LOpts),
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000714 Idents(idents), Selectors(sels),
715 BuiltinInfo(builtins),
716 DeclarationNames(*this),
Douglas Gregor30c42402011-09-27 22:38:19 +0000717 ExternalSource(0), Listener(0),
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000718 Comments(SM), CommentsLoaded(false),
Dmitri Gribenko6ebf0912013-02-22 14:21:27 +0000719 CommentCommandTraits(BumpAlloc, LOpts.CommentOpts),
Rafael Espindola42b78612013-05-29 19:51:12 +0000720 LastSDM(0, 0)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000721{
Mike Stump1eb44332009-09-09 15:08:12 +0000722 if (size_reserve > 0) Types.reserve(size_reserve);
Daniel Dunbare91593e2008-08-11 04:54:23 +0000723 TUDecl = TranslationUnitDecl::Create(*this);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000724
725 if (!DelayInitialization) {
726 assert(t && "No target supplied for ASTContext initialization");
727 InitBuiltinTypes(*t);
728 }
Daniel Dunbare91593e2008-08-11 04:54:23 +0000729}
730
Reid Spencer5f016e22007-07-11 17:01:13 +0000731ASTContext::~ASTContext() {
Ted Kremenek3478eb62010-02-11 07:12:28 +0000732 // Release the DenseMaps associated with DeclContext objects.
733 // FIXME: Is this the ideal solution?
734 ReleaseDeclContextMaps();
Douglas Gregor7d10b7e2010-03-02 23:58:15 +0000735
Manuel Klimekf0f353b2013-06-03 13:51:33 +0000736 // Call all of the deallocation functions on all of their targets.
737 for (DeallocationMap::const_iterator I = Deallocations.begin(),
738 E = Deallocations.end(); I != E; ++I)
739 for (unsigned J = 0, N = I->second.size(); J != N; ++J)
740 (I->first)((I->second)[J]);
741
Ted Kremenekdcfcfbe2010-06-08 23:00:58 +0000742 // ASTRecordLayout objects in ASTRecordLayouts must always be destroyed
Douglas Gregor63fe86b2010-07-25 17:53:33 +0000743 // because they can contain DenseMaps.
744 for (llvm::DenseMap<const ObjCContainerDecl*,
745 const ASTRecordLayout*>::iterator
746 I = ObjCLayouts.begin(), E = ObjCLayouts.end(); I != E; )
747 // Increment in loop to prevent using deallocated memory.
748 if (ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second))
749 R->Destroy(*this);
750
Ted Kremenekdcfcfbe2010-06-08 23:00:58 +0000751 for (llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
752 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end(); I != E; ) {
753 // Increment in loop to prevent using deallocated memory.
754 if (ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second))
755 R->Destroy(*this);
756 }
Douglas Gregor63200642010-08-30 16:49:28 +0000757
758 for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(),
759 AEnd = DeclAttrs.end();
760 A != AEnd; ++A)
761 A->second->~AttrVec();
762}
Douglas Gregorab452ba2009-03-26 23:50:42 +0000763
Douglas Gregor00545312010-05-23 18:26:36 +0000764void ASTContext::AddDeallocation(void (*Callback)(void*), void *Data) {
Manuel Klimekf0f353b2013-06-03 13:51:33 +0000765 Deallocations[Callback].push_back(Data);
Douglas Gregor00545312010-05-23 18:26:36 +0000766}
767
Mike Stump1eb44332009-09-09 15:08:12 +0000768void
Dylan Noblesmith6f42b622012-02-05 02:12:40 +0000769ASTContext::setExternalSource(OwningPtr<ExternalASTSource> &Source) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000770 ExternalSource.reset(Source.take());
771}
772
Reid Spencer5f016e22007-07-11 17:01:13 +0000773void ASTContext::PrintStats() const {
Chandler Carruthcd92a652011-07-04 05:32:14 +0000774 llvm::errs() << "\n*** AST Context Stats:\n";
775 llvm::errs() << " " << Types.size() << " types total.\n";
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000776
Douglas Gregordbe833d2009-05-26 14:40:08 +0000777 unsigned counts[] = {
Mike Stump1eb44332009-09-09 15:08:12 +0000778#define TYPE(Name, Parent) 0,
Douglas Gregordbe833d2009-05-26 14:40:08 +0000779#define ABSTRACT_TYPE(Name, Parent)
780#include "clang/AST/TypeNodes.def"
781 0 // Extra
782 };
Douglas Gregorc2ee10d2009-04-07 17:20:56 +0000783
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
785 Type *T = Types[i];
Douglas Gregordbe833d2009-05-26 14:40:08 +0000786 counts[(unsigned)T->getTypeClass()]++;
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 }
788
Douglas Gregordbe833d2009-05-26 14:40:08 +0000789 unsigned Idx = 0;
790 unsigned TotalBytes = 0;
791#define TYPE(Name, Parent) \
792 if (counts[Idx]) \
Chandler Carruthcd92a652011-07-04 05:32:14 +0000793 llvm::errs() << " " << counts[Idx] << " " << #Name \
794 << " types\n"; \
Douglas Gregordbe833d2009-05-26 14:40:08 +0000795 TotalBytes += counts[Idx] * sizeof(Name##Type); \
796 ++Idx;
797#define ABSTRACT_TYPE(Name, Parent)
798#include "clang/AST/TypeNodes.def"
Mike Stump1eb44332009-09-09 15:08:12 +0000799
Chandler Carruthcd92a652011-07-04 05:32:14 +0000800 llvm::errs() << "Total bytes = " << TotalBytes << "\n";
801
Douglas Gregor4923aa22010-07-02 20:37:36 +0000802 // Implicit special member functions.
Chandler Carruthcd92a652011-07-04 05:32:14 +0000803 llvm::errs() << NumImplicitDefaultConstructorsDeclared << "/"
804 << NumImplicitDefaultConstructors
805 << " implicit default constructors created\n";
806 llvm::errs() << NumImplicitCopyConstructorsDeclared << "/"
807 << NumImplicitCopyConstructors
808 << " implicit copy constructors created\n";
David Blaikie4e4d0842012-03-11 07:00:24 +0000809 if (getLangOpts().CPlusPlus)
Chandler Carruthcd92a652011-07-04 05:32:14 +0000810 llvm::errs() << NumImplicitMoveConstructorsDeclared << "/"
811 << NumImplicitMoveConstructors
812 << " implicit move constructors created\n";
813 llvm::errs() << NumImplicitCopyAssignmentOperatorsDeclared << "/"
814 << NumImplicitCopyAssignmentOperators
815 << " implicit copy assignment operators created\n";
David Blaikie4e4d0842012-03-11 07:00:24 +0000816 if (getLangOpts().CPlusPlus)
Chandler Carruthcd92a652011-07-04 05:32:14 +0000817 llvm::errs() << NumImplicitMoveAssignmentOperatorsDeclared << "/"
818 << NumImplicitMoveAssignmentOperators
819 << " implicit move assignment operators created\n";
820 llvm::errs() << NumImplicitDestructorsDeclared << "/"
821 << NumImplicitDestructors
822 << " implicit destructors created\n";
823
Douglas Gregor2cf26342009-04-09 22:27:44 +0000824 if (ExternalSource.get()) {
Chandler Carruthcd92a652011-07-04 05:32:14 +0000825 llvm::errs() << "\n";
Douglas Gregor2cf26342009-04-09 22:27:44 +0000826 ExternalSource->PrintStats();
827 }
Chandler Carruthcd92a652011-07-04 05:32:14 +0000828
Douglas Gregor63fe86b2010-07-25 17:53:33 +0000829 BumpAlloc.PrintStats();
Reid Spencer5f016e22007-07-11 17:01:13 +0000830}
831
Douglas Gregor772eeae2011-08-12 06:49:56 +0000832TypedefDecl *ASTContext::getInt128Decl() const {
833 if (!Int128Decl) {
834 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(Int128Ty);
835 Int128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
836 getTranslationUnitDecl(),
837 SourceLocation(),
838 SourceLocation(),
839 &Idents.get("__int128_t"),
840 TInfo);
841 }
842
843 return Int128Decl;
844}
845
846TypedefDecl *ASTContext::getUInt128Decl() const {
847 if (!UInt128Decl) {
848 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(UnsignedInt128Ty);
849 UInt128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
850 getTranslationUnitDecl(),
851 SourceLocation(),
852 SourceLocation(),
853 &Idents.get("__uint128_t"),
854 TInfo);
855 }
856
857 return UInt128Decl;
858}
Reid Spencer5f016e22007-07-11 17:01:13 +0000859
Nico Webercac18ad2013-06-20 21:44:55 +0000860TypeDecl *ASTContext::getFloat128StubType() const {
Nico Weber3f7c1b12013-06-21 01:29:36 +0000861 assert(LangOpts.CPlusPlus && "should only be called for c++");
Nico Webercac18ad2013-06-20 21:44:55 +0000862 if (!Float128StubDecl) {
Nico Weber9b9bdba2013-06-20 23:30:30 +0000863 Float128StubDecl = CXXRecordDecl::Create(const_cast<ASTContext &>(*this),
864 TTK_Struct,
865 getTranslationUnitDecl(),
866 SourceLocation(),
867 SourceLocation(),
868 &Idents.get("__float128"));
Nico Webercac18ad2013-06-20 21:44:55 +0000869 }
870
871 return Float128StubDecl;
872}
873
John McCalle27ec8a2009-10-23 23:03:21 +0000874void ASTContext::InitBuiltinType(CanQualType &R, BuiltinType::Kind K) {
John McCall6b304a02009-09-24 23:30:46 +0000875 BuiltinType *Ty = new (*this, TypeAlignment) BuiltinType(K);
John McCalle27ec8a2009-10-23 23:03:21 +0000876 R = CanQualType::CreateUnsafe(QualType(Ty, 0));
John McCall6b304a02009-09-24 23:30:46 +0000877 Types.push_back(Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000878}
879
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000880void ASTContext::InitBuiltinTypes(const TargetInfo &Target) {
881 assert((!this->Target || this->Target == &Target) &&
882 "Incorrect target reinitialization");
Reid Spencer5f016e22007-07-11 17:01:13 +0000883 assert(VoidTy.isNull() && "Context reinitialized?");
Mike Stump1eb44332009-09-09 15:08:12 +0000884
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000885 this->Target = &Target;
886
887 ABI.reset(createCXXABI(Target));
888 AddrSpaceMap = getAddressSpaceMap(Target, LangOpts);
889
Reid Spencer5f016e22007-07-11 17:01:13 +0000890 // C99 6.2.5p19.
891 InitBuiltinType(VoidTy, BuiltinType::Void);
Mike Stump1eb44332009-09-09 15:08:12 +0000892
Reid Spencer5f016e22007-07-11 17:01:13 +0000893 // C99 6.2.5p2.
894 InitBuiltinType(BoolTy, BuiltinType::Bool);
895 // C99 6.2.5p3.
Eli Friedman15b91762009-06-05 07:05:05 +0000896 if (LangOpts.CharIsSigned)
Reid Spencer5f016e22007-07-11 17:01:13 +0000897 InitBuiltinType(CharTy, BuiltinType::Char_S);
898 else
899 InitBuiltinType(CharTy, BuiltinType::Char_U);
900 // C99 6.2.5p4.
901 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
902 InitBuiltinType(ShortTy, BuiltinType::Short);
903 InitBuiltinType(IntTy, BuiltinType::Int);
904 InitBuiltinType(LongTy, BuiltinType::Long);
905 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
Mike Stump1eb44332009-09-09 15:08:12 +0000906
Reid Spencer5f016e22007-07-11 17:01:13 +0000907 // C99 6.2.5p6.
908 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
909 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
910 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
911 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
912 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
Mike Stump1eb44332009-09-09 15:08:12 +0000913
Reid Spencer5f016e22007-07-11 17:01:13 +0000914 // C99 6.2.5p10.
915 InitBuiltinType(FloatTy, BuiltinType::Float);
916 InitBuiltinType(DoubleTy, BuiltinType::Double);
917 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000918
Chris Lattner2df9ced2009-04-30 02:43:43 +0000919 // GNU extension, 128-bit integers.
920 InitBuiltinType(Int128Ty, BuiltinType::Int128);
921 InitBuiltinType(UnsignedInt128Ty, BuiltinType::UInt128);
922
Hans Wennborg15f92ba2013-05-10 10:08:40 +0000923 // C++ 3.9.1p5
924 if (TargetInfo::isTypeSigned(Target.getWCharType()))
925 InitBuiltinType(WCharTy, BuiltinType::WChar_S);
926 else // -fshort-wchar makes wchar_t be unsigned.
927 InitBuiltinType(WCharTy, BuiltinType::WChar_U);
928 if (LangOpts.CPlusPlus && LangOpts.WChar)
929 WideCharTy = WCharTy;
930 else {
931 // C99 (or C++ using -fno-wchar).
932 WideCharTy = getFromTargetType(Target.getWCharType());
933 }
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000934
James Molloy392da482012-05-04 10:55:22 +0000935 WIntTy = getFromTargetType(Target.getWIntType());
936
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000937 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
938 InitBuiltinType(Char16Ty, BuiltinType::Char16);
939 else // C99
940 Char16Ty = getFromTargetType(Target.getChar16Type());
941
942 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
943 InitBuiltinType(Char32Ty, BuiltinType::Char32);
944 else // C99
945 Char32Ty = getFromTargetType(Target.getChar32Type());
946
Douglas Gregor898574e2008-12-05 23:32:09 +0000947 // Placeholder type for type-dependent expressions whose type is
948 // completely unknown. No code should ever check a type against
949 // DependentTy and users should never see it; however, it is here to
950 // help diagnose failures to properly check for type-dependent
951 // expressions.
952 InitBuiltinType(DependentTy, BuiltinType::Dependent);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000953
John McCall2a984ca2010-10-12 00:20:44 +0000954 // Placeholder type for functions.
955 InitBuiltinType(OverloadTy, BuiltinType::Overload);
956
John McCall864c0412011-04-26 20:42:42 +0000957 // Placeholder type for bound members.
958 InitBuiltinType(BoundMemberTy, BuiltinType::BoundMember);
959
John McCall3c3b7f92011-10-25 17:37:35 +0000960 // Placeholder type for pseudo-objects.
961 InitBuiltinType(PseudoObjectTy, BuiltinType::PseudoObject);
962
John McCall1de4d4e2011-04-07 08:22:57 +0000963 // "any" type; useful for debugger-like clients.
964 InitBuiltinType(UnknownAnyTy, BuiltinType::UnknownAny);
965
John McCall0ddaeb92011-10-17 18:09:15 +0000966 // Placeholder type for unbridged ARC casts.
967 InitBuiltinType(ARCUnbridgedCastTy, BuiltinType::ARCUnbridgedCast);
968
Eli Friedmana6c66ce2012-08-31 00:14:07 +0000969 // Placeholder type for builtin functions.
970 InitBuiltinType(BuiltinFnTy, BuiltinType::BuiltinFn);
971
Reid Spencer5f016e22007-07-11 17:01:13 +0000972 // C99 6.2.5p11.
973 FloatComplexTy = getComplexType(FloatTy);
974 DoubleComplexTy = getComplexType(DoubleTy);
975 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000976
Fariborz Jahanian13dcd002009-11-21 19:53:08 +0000977 // Builtin types for 'id', 'Class', and 'SEL'.
Steve Naroffde2e22d2009-07-15 18:40:39 +0000978 InitBuiltinType(ObjCBuiltinIdTy, BuiltinType::ObjCId);
979 InitBuiltinType(ObjCBuiltinClassTy, BuiltinType::ObjCClass);
Fariborz Jahanian13dcd002009-11-21 19:53:08 +0000980 InitBuiltinType(ObjCBuiltinSelTy, BuiltinType::ObjCSel);
Guy Benyeib13621d2012-12-18 14:38:23 +0000981
982 if (LangOpts.OpenCL) {
983 InitBuiltinType(OCLImage1dTy, BuiltinType::OCLImage1d);
984 InitBuiltinType(OCLImage1dArrayTy, BuiltinType::OCLImage1dArray);
985 InitBuiltinType(OCLImage1dBufferTy, BuiltinType::OCLImage1dBuffer);
986 InitBuiltinType(OCLImage2dTy, BuiltinType::OCLImage2d);
987 InitBuiltinType(OCLImage2dArrayTy, BuiltinType::OCLImage2dArray);
988 InitBuiltinType(OCLImage3dTy, BuiltinType::OCLImage3d);
Guy Benyeie6b9d802013-01-20 12:31:11 +0000989
Guy Benyei21f18c42013-02-07 10:55:47 +0000990 InitBuiltinType(OCLSamplerTy, BuiltinType::OCLSampler);
Guy Benyeie6b9d802013-01-20 12:31:11 +0000991 InitBuiltinType(OCLEventTy, BuiltinType::OCLEvent);
Guy Benyeib13621d2012-12-18 14:38:23 +0000992 }
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000993
994 // Builtin type for __objc_yes and __objc_no
Fariborz Jahanian93a49942012-04-16 21:03:30 +0000995 ObjCBuiltinBoolTy = (Target.useSignedCharForObjCBool() ?
996 SignedCharTy : BoolTy);
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000997
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000998 ObjCConstantStringType = QualType();
Fariborz Jahanianf7992132013-01-04 18:45:40 +0000999
1000 ObjCSuperType = QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00001001
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001002 // void * type
1003 VoidPtrTy = getPointerType(VoidTy);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001004
1005 // nullptr type (C++0x 2.14.7)
1006 InitBuiltinType(NullPtrTy, BuiltinType::NullPtr);
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001007
1008 // half type (OpenCL 6.1.1.1) / ARM NEON __fp16
1009 InitBuiltinType(HalfTy, BuiltinType::Half);
Meador Ingefb40e3f2012-07-01 15:57:25 +00001010
1011 // Builtin type used to help define __builtin_va_list.
1012 VaListTagTy = QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001013}
1014
David Blaikied6471f72011-09-25 23:23:43 +00001015DiagnosticsEngine &ASTContext::getDiagnostics() const {
Argyrios Kyrtzidis78a916e2010-09-22 14:32:24 +00001016 return SourceMgr.getDiagnostics();
1017}
1018
Douglas Gregor63200642010-08-30 16:49:28 +00001019AttrVec& ASTContext::getDeclAttrs(const Decl *D) {
1020 AttrVec *&Result = DeclAttrs[D];
1021 if (!Result) {
1022 void *Mem = Allocate(sizeof(AttrVec));
1023 Result = new (Mem) AttrVec;
1024 }
1025
1026 return *Result;
1027}
1028
1029/// \brief Erase the attributes corresponding to the given declaration.
1030void ASTContext::eraseDeclAttrs(const Decl *D) {
1031 llvm::DenseMap<const Decl*, AttrVec*>::iterator Pos = DeclAttrs.find(D);
1032 if (Pos != DeclAttrs.end()) {
1033 Pos->second->~AttrVec();
1034 DeclAttrs.erase(Pos);
1035 }
1036}
1037
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001038MemberSpecializationInfo *
Douglas Gregor663b5a02009-10-14 20:14:33 +00001039ASTContext::getInstantiatedFromStaticDataMember(const VarDecl *Var) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001040 assert(Var->isStaticDataMember() && "Not a static data member");
Douglas Gregor663b5a02009-10-14 20:14:33 +00001041 llvm::DenseMap<const VarDecl *, MemberSpecializationInfo *>::iterator Pos
Douglas Gregor7caa6822009-07-24 20:34:43 +00001042 = InstantiatedFromStaticDataMember.find(Var);
1043 if (Pos == InstantiatedFromStaticDataMember.end())
1044 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Douglas Gregor7caa6822009-07-24 20:34:43 +00001046 return Pos->second;
1047}
1048
Mike Stump1eb44332009-09-09 15:08:12 +00001049void
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001050ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +00001051 TemplateSpecializationKind TSK,
1052 SourceLocation PointOfInstantiation) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001053 assert(Inst->isStaticDataMember() && "Not a static data member");
1054 assert(Tmpl->isStaticDataMember() && "Not a static data member");
1055 assert(!InstantiatedFromStaticDataMember[Inst] &&
1056 "Already noted what static data member was instantiated from");
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001057 InstantiatedFromStaticDataMember[Inst]
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +00001058 = new (*this) MemberSpecializationInfo(Tmpl, TSK, PointOfInstantiation);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001059}
1060
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001061FunctionDecl *ASTContext::getClassScopeSpecializationPattern(
1062 const FunctionDecl *FD){
1063 assert(FD && "Specialization is 0");
1064 llvm::DenseMap<const FunctionDecl*, FunctionDecl *>::const_iterator Pos
Francois Pichet0d95f0d2011-08-14 14:28:49 +00001065 = ClassScopeSpecializationPattern.find(FD);
1066 if (Pos == ClassScopeSpecializationPattern.end())
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001067 return 0;
1068
1069 return Pos->second;
1070}
1071
1072void ASTContext::setClassScopeSpecializationPattern(FunctionDecl *FD,
1073 FunctionDecl *Pattern) {
1074 assert(FD && "Specialization is 0");
1075 assert(Pattern && "Class scope specialization pattern is 0");
Francois Pichet0d95f0d2011-08-14 14:28:49 +00001076 ClassScopeSpecializationPattern[FD] = Pattern;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001077}
1078
John McCall7ba107a2009-11-18 02:36:19 +00001079NamedDecl *
John McCalled976492009-12-04 22:46:56 +00001080ASTContext::getInstantiatedFromUsingDecl(UsingDecl *UUD) {
John McCall7ba107a2009-11-18 02:36:19 +00001081 llvm::DenseMap<UsingDecl *, NamedDecl *>::const_iterator Pos
John McCalled976492009-12-04 22:46:56 +00001082 = InstantiatedFromUsingDecl.find(UUD);
1083 if (Pos == InstantiatedFromUsingDecl.end())
Anders Carlsson0d8df782009-08-29 19:37:28 +00001084 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001085
Anders Carlsson0d8df782009-08-29 19:37:28 +00001086 return Pos->second;
1087}
1088
1089void
John McCalled976492009-12-04 22:46:56 +00001090ASTContext::setInstantiatedFromUsingDecl(UsingDecl *Inst, NamedDecl *Pattern) {
1091 assert((isa<UsingDecl>(Pattern) ||
1092 isa<UnresolvedUsingValueDecl>(Pattern) ||
1093 isa<UnresolvedUsingTypenameDecl>(Pattern)) &&
1094 "pattern decl is not a using decl");
1095 assert(!InstantiatedFromUsingDecl[Inst] && "pattern already exists");
1096 InstantiatedFromUsingDecl[Inst] = Pattern;
1097}
1098
1099UsingShadowDecl *
1100ASTContext::getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst) {
1101 llvm::DenseMap<UsingShadowDecl*, UsingShadowDecl*>::const_iterator Pos
1102 = InstantiatedFromUsingShadowDecl.find(Inst);
1103 if (Pos == InstantiatedFromUsingShadowDecl.end())
1104 return 0;
1105
1106 return Pos->second;
1107}
1108
1109void
1110ASTContext::setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst,
1111 UsingShadowDecl *Pattern) {
1112 assert(!InstantiatedFromUsingShadowDecl[Inst] && "pattern already exists");
1113 InstantiatedFromUsingShadowDecl[Inst] = Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00001114}
1115
Anders Carlssond8b285f2009-09-01 04:26:58 +00001116FieldDecl *ASTContext::getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field) {
1117 llvm::DenseMap<FieldDecl *, FieldDecl *>::iterator Pos
1118 = InstantiatedFromUnnamedFieldDecl.find(Field);
1119 if (Pos == InstantiatedFromUnnamedFieldDecl.end())
1120 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001121
Anders Carlssond8b285f2009-09-01 04:26:58 +00001122 return Pos->second;
1123}
1124
1125void ASTContext::setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst,
1126 FieldDecl *Tmpl) {
1127 assert(!Inst->getDeclName() && "Instantiated field decl is not unnamed");
1128 assert(!Tmpl->getDeclName() && "Template field decl is not unnamed");
1129 assert(!InstantiatedFromUnnamedFieldDecl[Inst] &&
1130 "Already noted what unnamed field was instantiated from");
Mike Stump1eb44332009-09-09 15:08:12 +00001131
Anders Carlssond8b285f2009-09-01 04:26:58 +00001132 InstantiatedFromUnnamedFieldDecl[Inst] = Tmpl;
1133}
1134
Fariborz Jahanian14d56ef2011-04-27 17:14:21 +00001135bool ASTContext::ZeroBitfieldFollowsNonBitfield(const FieldDecl *FD,
1136 const FieldDecl *LastFD) const {
1137 return (FD->isBitField() && LastFD && !LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001138 FD->getBitWidthValue(*this) == 0);
Fariborz Jahanian14d56ef2011-04-27 17:14:21 +00001139}
1140
Fariborz Jahanian340fa242011-05-02 17:20:56 +00001141bool ASTContext::ZeroBitfieldFollowsBitfield(const FieldDecl *FD,
1142 const FieldDecl *LastFD) const {
1143 return (FD->isBitField() && LastFD && LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001144 FD->getBitWidthValue(*this) == 0 &&
1145 LastFD->getBitWidthValue(*this) != 0);
Fariborz Jahanian340fa242011-05-02 17:20:56 +00001146}
1147
Fariborz Jahanian9b3acaa2011-05-04 18:51:37 +00001148bool ASTContext::BitfieldFollowsBitfield(const FieldDecl *FD,
1149 const FieldDecl *LastFD) const {
1150 return (FD->isBitField() && LastFD && LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001151 FD->getBitWidthValue(*this) &&
1152 LastFD->getBitWidthValue(*this));
Fariborz Jahanian9b3acaa2011-05-04 18:51:37 +00001153}
1154
Chad Rosierdd7fddb2011-08-04 23:34:15 +00001155bool ASTContext::NonBitfieldFollowsBitfield(const FieldDecl *FD,
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001156 const FieldDecl *LastFD) const {
1157 return (!FD->isBitField() && LastFD && LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001158 LastFD->getBitWidthValue(*this));
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001159}
1160
Chad Rosierdd7fddb2011-08-04 23:34:15 +00001161bool ASTContext::BitfieldFollowsNonBitfield(const FieldDecl *FD,
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001162 const FieldDecl *LastFD) const {
1163 return (FD->isBitField() && LastFD && !LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001164 FD->getBitWidthValue(*this));
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001165}
1166
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001167ASTContext::overridden_cxx_method_iterator
1168ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
1169 llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001170 = OverriddenMethods.find(Method->getCanonicalDecl());
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001171 if (Pos == OverriddenMethods.end())
1172 return 0;
1173
1174 return Pos->second.begin();
1175}
1176
1177ASTContext::overridden_cxx_method_iterator
1178ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
1179 llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001180 = OverriddenMethods.find(Method->getCanonicalDecl());
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001181 if (Pos == OverriddenMethods.end())
1182 return 0;
1183
1184 return Pos->second.end();
1185}
1186
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001187unsigned
1188ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
1189 llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001190 = OverriddenMethods.find(Method->getCanonicalDecl());
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001191 if (Pos == OverriddenMethods.end())
1192 return 0;
1193
1194 return Pos->second.size();
1195}
1196
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001197void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method,
1198 const CXXMethodDecl *Overridden) {
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001199 assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl());
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001200 OverriddenMethods[Method].push_back(Overridden);
1201}
1202
Dmitri Gribenko1e905da2012-11-03 14:24:57 +00001203void ASTContext::getOverriddenMethods(
1204 const NamedDecl *D,
1205 SmallVectorImpl<const NamedDecl *> &Overridden) const {
Argyrios Kyrtzidis21c36072012-10-09 01:23:50 +00001206 assert(D);
1207
1208 if (const CXXMethodDecl *CXXMethod = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis685d1042013-04-17 00:09:03 +00001209 Overridden.append(overridden_methods_begin(CXXMethod),
1210 overridden_methods_end(CXXMethod));
Argyrios Kyrtzidis21c36072012-10-09 01:23:50 +00001211 return;
1212 }
1213
1214 const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(D);
1215 if (!Method)
1216 return;
1217
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001218 SmallVector<const ObjCMethodDecl *, 8> OverDecls;
1219 Method->getOverriddenMethods(OverDecls);
Argyrios Kyrtzidisbc0a2bb2012-10-09 20:08:43 +00001220 Overridden.append(OverDecls.begin(), OverDecls.end());
Argyrios Kyrtzidis21c36072012-10-09 01:23:50 +00001221}
1222
Douglas Gregore6649772011-12-03 00:30:27 +00001223void ASTContext::addedLocalImportDecl(ImportDecl *Import) {
1224 assert(!Import->NextLocalImport && "Import declaration already in the chain");
1225 assert(!Import->isFromASTFile() && "Non-local import declaration");
1226 if (!FirstLocalImport) {
1227 FirstLocalImport = Import;
1228 LastLocalImport = Import;
1229 return;
1230 }
1231
1232 LastLocalImport->NextLocalImport = Import;
1233 LastLocalImport = Import;
1234}
1235
Chris Lattner464175b2007-07-18 17:52:12 +00001236//===----------------------------------------------------------------------===//
1237// Type Sizing and Analysis
1238//===----------------------------------------------------------------------===//
Chris Lattnera7674d82007-07-13 22:13:22 +00001239
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001240/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
1241/// scalar floating point type.
1242const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
John McCall183700f2009-09-21 23:43:11 +00001243 const BuiltinType *BT = T->getAs<BuiltinType>();
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001244 assert(BT && "Not a floating point type!");
1245 switch (BT->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001246 default: llvm_unreachable("Not a floating point type!");
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001247 case BuiltinType::Half: return Target->getHalfFormat();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001248 case BuiltinType::Float: return Target->getFloatFormat();
1249 case BuiltinType::Double: return Target->getDoubleFormat();
1250 case BuiltinType::LongDouble: return Target->getLongDoubleFormat();
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001251 }
1252}
1253
Ken Dyck8b752f12010-01-27 17:10:57 +00001254/// getDeclAlign - Return a conservative estimate of the alignment of the
Chris Lattneraf707ab2009-01-24 21:53:27 +00001255/// specified decl. Note that bitfields do not have a valid alignment, so
1256/// this method will assert on them.
Sebastian Redl5d484e82009-11-23 17:18:46 +00001257/// If @p RefAsPointee, references are treated like their underlying type
1258/// (for alignof), else they're treated like pointers (for CodeGen).
Jay Foad4ba2a172011-01-12 09:06:06 +00001259CharUnits ASTContext::getDeclAlign(const Decl *D, bool RefAsPointee) const {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001260 unsigned Align = Target->getCharWidth();
Eli Friedmandcdafb62009-02-22 02:56:25 +00001261
John McCall4081a5c2010-10-08 18:24:19 +00001262 bool UseAlignAttrOnly = false;
1263 if (unsigned AlignFromAttr = D->getMaxAlignment()) {
1264 Align = AlignFromAttr;
Eli Friedmandcdafb62009-02-22 02:56:25 +00001265
John McCall4081a5c2010-10-08 18:24:19 +00001266 // __attribute__((aligned)) can increase or decrease alignment
1267 // *except* on a struct or struct member, where it only increases
1268 // alignment unless 'packed' is also specified.
1269 //
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001270 // It is an error for alignas to decrease alignment, so we can
John McCall4081a5c2010-10-08 18:24:19 +00001271 // ignore that possibility; Sema should diagnose it.
1272 if (isa<FieldDecl>(D)) {
1273 UseAlignAttrOnly = D->hasAttr<PackedAttr>() ||
1274 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1275 } else {
1276 UseAlignAttrOnly = true;
1277 }
1278 }
Fariborz Jahanian78a7d7d2011-05-05 21:19:14 +00001279 else if (isa<FieldDecl>(D))
1280 UseAlignAttrOnly =
1281 D->hasAttr<PackedAttr>() ||
1282 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
John McCall4081a5c2010-10-08 18:24:19 +00001283
John McCallba4f5d52011-01-20 07:57:12 +00001284 // If we're using the align attribute only, just ignore everything
1285 // else about the declaration and its type.
John McCall4081a5c2010-10-08 18:24:19 +00001286 if (UseAlignAttrOnly) {
John McCallba4f5d52011-01-20 07:57:12 +00001287 // do nothing
1288
John McCall4081a5c2010-10-08 18:24:19 +00001289 } else if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
Chris Lattneraf707ab2009-01-24 21:53:27 +00001290 QualType T = VD->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001291 if (const ReferenceType* RT = T->getAs<ReferenceType>()) {
Sebastian Redl5d484e82009-11-23 17:18:46 +00001292 if (RefAsPointee)
1293 T = RT->getPointeeType();
1294 else
1295 T = getPointerType(RT->getPointeeType());
1296 }
1297 if (!T->isIncompleteType() && !T->isFunctionType()) {
John McCall3b657512011-01-19 10:06:00 +00001298 // Adjust alignments of declarations with array type by the
1299 // large-array alignment on the target.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001300 unsigned MinWidth = Target->getLargeArrayMinWidth();
John McCall3b657512011-01-19 10:06:00 +00001301 const ArrayType *arrayType;
1302 if (MinWidth && (arrayType = getAsArrayType(T))) {
1303 if (isa<VariableArrayType>(arrayType))
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001304 Align = std::max(Align, Target->getLargeArrayAlign());
John McCall3b657512011-01-19 10:06:00 +00001305 else if (isa<ConstantArrayType>(arrayType) &&
1306 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001307 Align = std::max(Align, Target->getLargeArrayAlign());
Eli Friedmandcdafb62009-02-22 02:56:25 +00001308
John McCall3b657512011-01-19 10:06:00 +00001309 // Walk through any array types while we're at it.
1310 T = getBaseElementType(arrayType);
1311 }
Chad Rosier9f1210c2011-07-26 07:03:04 +00001312 Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr()));
Ulrich Weigand6b203512013-05-06 16:23:57 +00001313 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1314 if (VD->hasGlobalStorage())
1315 Align = std::max(Align, getTargetInfo().getMinGlobalAlign());
1316 }
Eli Friedmandcdafb62009-02-22 02:56:25 +00001317 }
John McCallba4f5d52011-01-20 07:57:12 +00001318
1319 // Fields can be subject to extra alignment constraints, like if
1320 // the field is packed, the struct is packed, or the struct has a
1321 // a max-field-alignment constraint (#pragma pack). So calculate
1322 // the actual alignment of the field within the struct, and then
1323 // (as we're expected to) constrain that by the alignment of the type.
Matt Beaumont-Gay147fab92013-06-25 22:19:15 +00001324 if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) {
1325 const RecordDecl *Parent = Field->getParent();
1326 // We can only produce a sensible answer if the record is valid.
1327 if (!Parent->isInvalidDecl()) {
1328 const ASTRecordLayout &Layout = getASTRecordLayout(Parent);
John McCallba4f5d52011-01-20 07:57:12 +00001329
Matt Beaumont-Gay147fab92013-06-25 22:19:15 +00001330 // Start with the record's overall alignment.
1331 unsigned FieldAlign = toBits(Layout.getAlignment());
John McCallba4f5d52011-01-20 07:57:12 +00001332
Matt Beaumont-Gay147fab92013-06-25 22:19:15 +00001333 // Use the GCD of that and the offset within the record.
1334 uint64_t Offset = Layout.getFieldOffset(Field->getFieldIndex());
1335 if (Offset > 0) {
1336 // Alignment is always a power of 2, so the GCD will be a power of 2,
1337 // which means we get to do this crazy thing instead of Euclid's.
1338 uint64_t LowBitOfOffset = Offset & (~Offset + 1);
1339 if (LowBitOfOffset < FieldAlign)
1340 FieldAlign = static_cast<unsigned>(LowBitOfOffset);
1341 }
1342
1343 Align = std::min(Align, FieldAlign);
John McCallba4f5d52011-01-20 07:57:12 +00001344 }
Charles Davis05f62472010-02-23 04:52:00 +00001345 }
Chris Lattneraf707ab2009-01-24 21:53:27 +00001346 }
Eli Friedmandcdafb62009-02-22 02:56:25 +00001347
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001348 return toCharUnitsFromBits(Align);
Chris Lattneraf707ab2009-01-24 21:53:27 +00001349}
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001350
John McCall929bbfb2012-08-21 04:10:00 +00001351// getTypeInfoDataSizeInChars - Return the size of a type, in
1352// chars. If the type is a record, its data size is returned. This is
1353// the size of the memcpy that's performed when assigning this type
1354// using a trivial copy/move assignment operator.
1355std::pair<CharUnits, CharUnits>
1356ASTContext::getTypeInfoDataSizeInChars(QualType T) const {
1357 std::pair<CharUnits, CharUnits> sizeAndAlign = getTypeInfoInChars(T);
1358
1359 // In C++, objects can sometimes be allocated into the tail padding
1360 // of a base-class subobject. We decide whether that's possible
1361 // during class layout, so here we can just trust the layout results.
1362 if (getLangOpts().CPlusPlus) {
1363 if (const RecordType *RT = T->getAs<RecordType>()) {
1364 const ASTRecordLayout &layout = getASTRecordLayout(RT->getDecl());
1365 sizeAndAlign.first = layout.getDataSize();
1366 }
1367 }
1368
1369 return sizeAndAlign;
1370}
1371
Richard Trieu910f17e2013-05-14 21:59:17 +00001372/// getConstantArrayInfoInChars - Performing the computation in CharUnits
1373/// instead of in bits prevents overflowing the uint64_t for some large arrays.
1374std::pair<CharUnits, CharUnits>
1375static getConstantArrayInfoInChars(const ASTContext &Context,
1376 const ConstantArrayType *CAT) {
1377 std::pair<CharUnits, CharUnits> EltInfo =
1378 Context.getTypeInfoInChars(CAT->getElementType());
1379 uint64_t Size = CAT->getSize().getZExtValue();
Richard Trieu1069b732013-05-14 23:41:50 +00001380 assert((Size == 0 || static_cast<uint64_t>(EltInfo.first.getQuantity()) <=
1381 (uint64_t)(-1)/Size) &&
Richard Trieu910f17e2013-05-14 21:59:17 +00001382 "Overflow in array type char size evaluation");
1383 uint64_t Width = EltInfo.first.getQuantity() * Size;
1384 unsigned Align = EltInfo.second.getQuantity();
1385 Width = llvm::RoundUpToAlignment(Width, Align);
1386 return std::make_pair(CharUnits::fromQuantity(Width),
1387 CharUnits::fromQuantity(Align));
1388}
1389
John McCallea1471e2010-05-20 01:18:31 +00001390std::pair<CharUnits, CharUnits>
Ken Dyckbee5a792011-02-20 01:55:18 +00001391ASTContext::getTypeInfoInChars(const Type *T) const {
Richard Trieu910f17e2013-05-14 21:59:17 +00001392 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(T))
1393 return getConstantArrayInfoInChars(*this, CAT);
John McCallea1471e2010-05-20 01:18:31 +00001394 std::pair<uint64_t, unsigned> Info = getTypeInfo(T);
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001395 return std::make_pair(toCharUnitsFromBits(Info.first),
1396 toCharUnitsFromBits(Info.second));
John McCallea1471e2010-05-20 01:18:31 +00001397}
1398
1399std::pair<CharUnits, CharUnits>
Ken Dyckbee5a792011-02-20 01:55:18 +00001400ASTContext::getTypeInfoInChars(QualType T) const {
John McCallea1471e2010-05-20 01:18:31 +00001401 return getTypeInfoInChars(T.getTypePtr());
1402}
1403
Daniel Dunbarbc5419a2012-03-09 04:12:54 +00001404std::pair<uint64_t, unsigned> ASTContext::getTypeInfo(const Type *T) const {
1405 TypeInfoMap::iterator it = MemoizedTypeInfo.find(T);
1406 if (it != MemoizedTypeInfo.end())
1407 return it->second;
1408
1409 std::pair<uint64_t, unsigned> Info = getTypeInfoImpl(T);
1410 MemoizedTypeInfo.insert(std::make_pair(T, Info));
1411 return Info;
1412}
1413
1414/// getTypeInfoImpl - Return the size of the specified type, in bits. This
1415/// method does not work on incomplete types.
John McCall0953e762009-09-24 19:53:00 +00001416///
1417/// FIXME: Pointers into different addr spaces could have different sizes and
1418/// alignment requirements: getPointerInfo should take an AddrSpace, this
1419/// should take a QualType, &c.
Chris Lattnerd2d2a112007-07-14 01:29:45 +00001420std::pair<uint64_t, unsigned>
Daniel Dunbarbc5419a2012-03-09 04:12:54 +00001421ASTContext::getTypeInfoImpl(const Type *T) const {
Mike Stump5e301002009-02-27 18:32:39 +00001422 uint64_t Width=0;
1423 unsigned Align=8;
Chris Lattnera7674d82007-07-13 22:13:22 +00001424 switch (T->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001425#define TYPE(Class, Base)
1426#define ABSTRACT_TYPE(Class, Base)
Douglas Gregor18857642009-04-30 17:32:17 +00001427#define NON_CANONICAL_TYPE(Class, Base)
Douglas Gregor72564e72009-02-26 23:50:07 +00001428#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1429#include "clang/AST/TypeNodes.def"
John McCalld3d49bb2011-06-28 16:49:23 +00001430 llvm_unreachable("Should not see dependent types");
Douglas Gregor72564e72009-02-26 23:50:07 +00001431
Chris Lattner692233e2007-07-13 22:27:08 +00001432 case Type::FunctionNoProto:
1433 case Type::FunctionProto:
Douglas Gregor18857642009-04-30 17:32:17 +00001434 // GCC extension: alignof(function) = 32 bits
1435 Width = 0;
1436 Align = 32;
1437 break;
1438
Douglas Gregor72564e72009-02-26 23:50:07 +00001439 case Type::IncompleteArray:
Steve Narofffb22d962007-08-30 01:06:46 +00001440 case Type::VariableArray:
Douglas Gregor18857642009-04-30 17:32:17 +00001441 Width = 0;
1442 Align = getTypeAlign(cast<ArrayType>(T)->getElementType());
1443 break;
1444
Steve Narofffb22d962007-08-30 01:06:46 +00001445 case Type::ConstantArray: {
Daniel Dunbar1d751182008-11-08 05:48:37 +00001446 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
Mike Stump1eb44332009-09-09 15:08:12 +00001447
Chris Lattner98be4942008-03-05 18:54:05 +00001448 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Abramo Bagnarafea966a2011-12-13 11:23:52 +00001449 uint64_t Size = CAT->getSize().getZExtValue();
Daniel Dunbarbc5419a2012-03-09 04:12:54 +00001450 assert((Size == 0 || EltInfo.first <= (uint64_t)(-1)/Size) &&
1451 "Overflow in array type bit size evaluation");
Abramo Bagnarafea966a2011-12-13 11:23:52 +00001452 Width = EltInfo.first*Size;
Chris Lattner030d8842007-07-19 22:06:24 +00001453 Align = EltInfo.second;
Argyrios Kyrtzidiscd88b412011-04-26 21:05:39 +00001454 Width = llvm::RoundUpToAlignment(Width, Align);
Chris Lattner030d8842007-07-19 22:06:24 +00001455 break;
Christopher Lamb5c09a022007-12-29 05:10:55 +00001456 }
Nate Begeman213541a2008-04-18 23:10:10 +00001457 case Type::ExtVector:
Chris Lattner030d8842007-07-19 22:06:24 +00001458 case Type::Vector: {
Chris Lattner9fcfe922009-10-22 05:17:15 +00001459 const VectorType *VT = cast<VectorType>(T);
1460 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(VT->getElementType());
1461 Width = EltInfo.first*VT->getNumElements();
Eli Friedman4bd998b2008-05-30 09:31:38 +00001462 Align = Width;
Nate Begeman6fe7c8a2009-01-18 06:42:49 +00001463 // If the alignment is not a power of 2, round up to the next power of 2.
1464 // This happens for non-power-of-2 length vectors.
Dan Gohman8eefcd32010-04-21 23:32:43 +00001465 if (Align & (Align-1)) {
Chris Lattner9fcfe922009-10-22 05:17:15 +00001466 Align = llvm::NextPowerOf2(Align);
1467 Width = llvm::RoundUpToAlignment(Width, Align);
1468 }
Chad Rosierf9e9af72012-07-13 23:57:43 +00001469 // Adjust the alignment based on the target max.
1470 uint64_t TargetVectorAlign = Target->getMaxVectorAlign();
1471 if (TargetVectorAlign && TargetVectorAlign < Align)
1472 Align = TargetVectorAlign;
Chris Lattner030d8842007-07-19 22:06:24 +00001473 break;
1474 }
Chris Lattner5d2a6302007-07-18 18:26:58 +00001475
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001476 case Type::Builtin:
Chris Lattnera7674d82007-07-13 22:13:22 +00001477 switch (cast<BuiltinType>(T)->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001478 default: llvm_unreachable("Unknown builtin type!");
Chris Lattnerd2d2a112007-07-14 01:29:45 +00001479 case BuiltinType::Void:
Douglas Gregor18857642009-04-30 17:32:17 +00001480 // GCC extension: alignof(void) = 8 bits.
1481 Width = 0;
1482 Align = 8;
1483 break;
1484
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001485 case BuiltinType::Bool:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001486 Width = Target->getBoolWidth();
1487 Align = Target->getBoolAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001488 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001489 case BuiltinType::Char_S:
1490 case BuiltinType::Char_U:
1491 case BuiltinType::UChar:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001492 case BuiltinType::SChar:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001493 Width = Target->getCharWidth();
1494 Align = Target->getCharAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001495 break;
Chris Lattner3f59c972010-12-25 23:25:43 +00001496 case BuiltinType::WChar_S:
1497 case BuiltinType::WChar_U:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001498 Width = Target->getWCharWidth();
1499 Align = Target->getWCharAlign();
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001500 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001501 case BuiltinType::Char16:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001502 Width = Target->getChar16Width();
1503 Align = Target->getChar16Align();
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001504 break;
1505 case BuiltinType::Char32:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001506 Width = Target->getChar32Width();
1507 Align = Target->getChar32Align();
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001508 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001509 case BuiltinType::UShort:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001510 case BuiltinType::Short:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001511 Width = Target->getShortWidth();
1512 Align = Target->getShortAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001513 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001514 case BuiltinType::UInt:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001515 case BuiltinType::Int:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001516 Width = Target->getIntWidth();
1517 Align = Target->getIntAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001518 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001519 case BuiltinType::ULong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001520 case BuiltinType::Long:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001521 Width = Target->getLongWidth();
1522 Align = Target->getLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001523 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001524 case BuiltinType::ULongLong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001525 case BuiltinType::LongLong:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001526 Width = Target->getLongLongWidth();
1527 Align = Target->getLongLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001528 break;
Chris Lattnerec16cb92009-04-30 02:55:13 +00001529 case BuiltinType::Int128:
1530 case BuiltinType::UInt128:
1531 Width = 128;
1532 Align = 128; // int128_t is 128-bit aligned on all targets.
1533 break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001534 case BuiltinType::Half:
1535 Width = Target->getHalfWidth();
1536 Align = Target->getHalfAlign();
1537 break;
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001538 case BuiltinType::Float:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001539 Width = Target->getFloatWidth();
1540 Align = Target->getFloatAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001541 break;
1542 case BuiltinType::Double:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001543 Width = Target->getDoubleWidth();
1544 Align = Target->getDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001545 break;
1546 case BuiltinType::LongDouble:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001547 Width = Target->getLongDoubleWidth();
1548 Align = Target->getLongDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001549 break;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001550 case BuiltinType::NullPtr:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001551 Width = Target->getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t)
1552 Align = Target->getPointerAlign(0); // == sizeof(void*)
Sebastian Redl1590d9c2009-05-27 19:34:06 +00001553 break;
Fariborz Jahaniane04f5fc2010-08-02 18:03:20 +00001554 case BuiltinType::ObjCId:
1555 case BuiltinType::ObjCClass:
1556 case BuiltinType::ObjCSel:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001557 Width = Target->getPointerWidth(0);
1558 Align = Target->getPointerAlign(0);
Fariborz Jahaniane04f5fc2010-08-02 18:03:20 +00001559 break;
Guy Benyei21f18c42013-02-07 10:55:47 +00001560 case BuiltinType::OCLSampler:
1561 // Samplers are modeled as integers.
1562 Width = Target->getIntWidth();
1563 Align = Target->getIntAlign();
1564 break;
Guy Benyeie6b9d802013-01-20 12:31:11 +00001565 case BuiltinType::OCLEvent:
Guy Benyeib13621d2012-12-18 14:38:23 +00001566 case BuiltinType::OCLImage1d:
1567 case BuiltinType::OCLImage1dArray:
1568 case BuiltinType::OCLImage1dBuffer:
1569 case BuiltinType::OCLImage2d:
1570 case BuiltinType::OCLImage2dArray:
1571 case BuiltinType::OCLImage3d:
1572 // Currently these types are pointers to opaque types.
1573 Width = Target->getPointerWidth(0);
1574 Align = Target->getPointerAlign(0);
1575 break;
Chris Lattnera7674d82007-07-13 22:13:22 +00001576 }
Chris Lattnerbfef6d72007-07-15 23:46:53 +00001577 break;
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001578 case Type::ObjCObjectPointer:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001579 Width = Target->getPointerWidth(0);
1580 Align = Target->getPointerAlign(0);
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001581 break;
Steve Naroff485eeff2008-09-24 15:05:44 +00001582 case Type::BlockPointer: {
Peter Collingbourne207f4d82011-03-18 22:38:29 +00001583 unsigned AS = getTargetAddressSpace(
1584 cast<BlockPointerType>(T)->getPointeeType());
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001585 Width = Target->getPointerWidth(AS);
1586 Align = Target->getPointerAlign(AS);
Steve Naroff485eeff2008-09-24 15:05:44 +00001587 break;
1588 }
Sebastian Redl5d484e82009-11-23 17:18:46 +00001589 case Type::LValueReference:
1590 case Type::RValueReference: {
1591 // alignof and sizeof should never enter this code path here, so we go
1592 // the pointer route.
Peter Collingbourne207f4d82011-03-18 22:38:29 +00001593 unsigned AS = getTargetAddressSpace(
1594 cast<ReferenceType>(T)->getPointeeType());
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001595 Width = Target->getPointerWidth(AS);
1596 Align = Target->getPointerAlign(AS);
Sebastian Redl5d484e82009-11-23 17:18:46 +00001597 break;
1598 }
Chris Lattnerf72a4432008-03-08 08:34:58 +00001599 case Type::Pointer: {
Peter Collingbourne207f4d82011-03-18 22:38:29 +00001600 unsigned AS = getTargetAddressSpace(cast<PointerType>(T)->getPointeeType());
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001601 Width = Target->getPointerWidth(AS);
1602 Align = Target->getPointerAlign(AS);
Chris Lattnerf72a4432008-03-08 08:34:58 +00001603 break;
1604 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001605 case Type::MemberPointer: {
Charles Davis071cc7d2010-08-16 03:33:14 +00001606 const MemberPointerType *MPT = cast<MemberPointerType>(T);
Reid Kleckner84e9ab42013-03-28 20:02:56 +00001607 llvm::tie(Width, Align) = ABI->getMemberPointerWidthAndAlign(MPT);
Anders Carlsson1cca74e2009-05-17 02:06:04 +00001608 break;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001609 }
Chris Lattner5d2a6302007-07-18 18:26:58 +00001610 case Type::Complex: {
1611 // Complex types have the same alignment as their elements, but twice the
1612 // size.
Mike Stump1eb44332009-09-09 15:08:12 +00001613 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +00001614 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001615 Width = EltInfo.first*2;
Chris Lattner5d2a6302007-07-18 18:26:58 +00001616 Align = EltInfo.second;
1617 break;
1618 }
John McCallc12c5bb2010-05-15 11:32:37 +00001619 case Type::ObjCObject:
1620 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr());
Reid Kleckner12df2462013-06-24 17:51:48 +00001621 case Type::Decayed:
1622 return getTypeInfo(cast<DecayedType>(T)->getDecayedType().getTypePtr());
Devang Patel44a3dde2008-06-04 21:54:36 +00001623 case Type::ObjCInterface: {
Daniel Dunbar1d751182008-11-08 05:48:37 +00001624 const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
Devang Patel44a3dde2008-06-04 21:54:36 +00001625 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
Ken Dyckdd76a9a2011-02-11 01:54:29 +00001626 Width = toBits(Layout.getSize());
Ken Dyckdac54c12011-02-15 02:32:40 +00001627 Align = toBits(Layout.getAlignment());
Devang Patel44a3dde2008-06-04 21:54:36 +00001628 break;
1629 }
Douglas Gregor72564e72009-02-26 23:50:07 +00001630 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00001631 case Type::Enum: {
Daniel Dunbar1d751182008-11-08 05:48:37 +00001632 const TagType *TT = cast<TagType>(T);
1633
1634 if (TT->getDecl()->isInvalidDecl()) {
Douglas Gregor22ce41d2011-04-20 17:29:44 +00001635 Width = 8;
1636 Align = 8;
Chris Lattner8389eab2008-08-09 21:35:13 +00001637 break;
1638 }
Mike Stump1eb44332009-09-09 15:08:12 +00001639
Daniel Dunbar1d751182008-11-08 05:48:37 +00001640 if (const EnumType *ET = dyn_cast<EnumType>(TT))
Chris Lattner71763312008-04-06 22:05:18 +00001641 return getTypeInfo(ET->getDecl()->getIntegerType());
1642
Daniel Dunbar1d751182008-11-08 05:48:37 +00001643 const RecordType *RT = cast<RecordType>(TT);
Chris Lattner71763312008-04-06 22:05:18 +00001644 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
Ken Dyckdd76a9a2011-02-11 01:54:29 +00001645 Width = toBits(Layout.getSize());
Ken Dyckdac54c12011-02-15 02:32:40 +00001646 Align = toBits(Layout.getAlignment());
Chris Lattnerdc0d73e2007-07-23 22:46:22 +00001647 break;
Chris Lattnera7674d82007-07-13 22:13:22 +00001648 }
Douglas Gregor7532dc62009-03-30 22:58:21 +00001649
Chris Lattner9fcfe922009-10-22 05:17:15 +00001650 case Type::SubstTemplateTypeParm:
John McCall49a832b2009-10-18 09:09:24 +00001651 return getTypeInfo(cast<SubstTemplateTypeParmType>(T)->
1652 getReplacementType().getTypePtr());
John McCall49a832b2009-10-18 09:09:24 +00001653
Richard Smith34b41d92011-02-20 03:19:35 +00001654 case Type::Auto: {
1655 const AutoType *A = cast<AutoType>(T);
Richard Smithdc7a4f52013-04-30 13:56:41 +00001656 assert(!A->getDeducedType().isNull() &&
1657 "cannot request the size of an undeduced or dependent auto type");
Matt Beaumont-Gaydc856af2011-02-22 20:00:16 +00001658 return getTypeInfo(A->getDeducedType().getTypePtr());
Richard Smith34b41d92011-02-20 03:19:35 +00001659 }
1660
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001661 case Type::Paren:
1662 return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr());
1663
Douglas Gregor18857642009-04-30 17:32:17 +00001664 case Type::Typedef: {
Richard Smith162e1c12011-04-15 14:24:37 +00001665 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl();
Douglas Gregordf1367a2010-08-27 00:11:28 +00001666 std::pair<uint64_t, unsigned> Info
1667 = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
Chris Lattnerc1de52d2011-02-19 22:55:41 +00001668 // If the typedef has an aligned attribute on it, it overrides any computed
1669 // alignment we have. This violates the GCC documentation (which says that
1670 // attribute(aligned) can only round up) but matches its implementation.
1671 if (unsigned AttrAlign = Typedef->getMaxAlignment())
1672 Align = AttrAlign;
1673 else
1674 Align = Info.second;
Douglas Gregordf1367a2010-08-27 00:11:28 +00001675 Width = Info.first;
Douglas Gregor7532dc62009-03-30 22:58:21 +00001676 break;
Chris Lattner71763312008-04-06 22:05:18 +00001677 }
Douglas Gregor18857642009-04-30 17:32:17 +00001678
1679 case Type::TypeOfExpr:
1680 return getTypeInfo(cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType()
1681 .getTypePtr());
1682
1683 case Type::TypeOf:
1684 return getTypeInfo(cast<TypeOfType>(T)->getUnderlyingType().getTypePtr());
1685
Anders Carlsson395b4752009-06-24 19:06:50 +00001686 case Type::Decltype:
1687 return getTypeInfo(cast<DecltypeType>(T)->getUnderlyingExpr()->getType()
1688 .getTypePtr());
1689
Sean Huntca63c202011-05-24 22:41:36 +00001690 case Type::UnaryTransform:
1691 return getTypeInfo(cast<UnaryTransformType>(T)->getUnderlyingType());
1692
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001693 case Type::Elaborated:
1694 return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr());
Mike Stump1eb44332009-09-09 15:08:12 +00001695
John McCall9d156a72011-01-06 01:58:22 +00001696 case Type::Attributed:
1697 return getTypeInfo(
1698 cast<AttributedType>(T)->getEquivalentType().getTypePtr());
1699
Richard Smith3e4c6c42011-05-05 21:57:07 +00001700 case Type::TemplateSpecialization: {
Mike Stump1eb44332009-09-09 15:08:12 +00001701 assert(getCanonicalType(T) != T &&
Douglas Gregor18857642009-04-30 17:32:17 +00001702 "Cannot request the size of a dependent type");
Richard Smith3e4c6c42011-05-05 21:57:07 +00001703 const TemplateSpecializationType *TST = cast<TemplateSpecializationType>(T);
1704 // A type alias template specialization may refer to a typedef with the
1705 // aligned attribute on it.
1706 if (TST->isTypeAlias())
1707 return getTypeInfo(TST->getAliasedType().getTypePtr());
1708 else
1709 return getTypeInfo(getCanonicalType(T));
1710 }
1711
Eli Friedmanb001de72011-10-06 23:00:33 +00001712 case Type::Atomic: {
John McCall9eda3ab2013-03-07 21:37:17 +00001713 // Start with the base type information.
Eli Friedman2be46072011-10-14 20:59:01 +00001714 std::pair<uint64_t, unsigned> Info
1715 = getTypeInfo(cast<AtomicType>(T)->getValueType());
1716 Width = Info.first;
1717 Align = Info.second;
John McCall9eda3ab2013-03-07 21:37:17 +00001718
1719 // If the size of the type doesn't exceed the platform's max
1720 // atomic promotion width, make the size and alignment more
1721 // favorable to atomic operations:
1722 if (Width != 0 && Width <= Target->getMaxAtomicPromoteWidth()) {
1723 // Round the size up to a power of 2.
1724 if (!llvm::isPowerOf2_64(Width))
1725 Width = llvm::NextPowerOf2(Width);
1726
1727 // Set the alignment equal to the size.
Eli Friedman2be46072011-10-14 20:59:01 +00001728 Align = static_cast<unsigned>(Width);
1729 }
Eli Friedmanb001de72011-10-06 23:00:33 +00001730 }
1731
Douglas Gregor18857642009-04-30 17:32:17 +00001732 }
Mike Stump1eb44332009-09-09 15:08:12 +00001733
Eli Friedman2be46072011-10-14 20:59:01 +00001734 assert(llvm::isPowerOf2_32(Align) && "Alignment must be power of 2");
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001735 return std::make_pair(Width, Align);
Chris Lattnera7674d82007-07-13 22:13:22 +00001736}
1737
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001738/// toCharUnitsFromBits - Convert a size in bits to a size in characters.
1739CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const {
1740 return CharUnits::fromQuantity(BitSize / getCharWidth());
1741}
1742
Ken Dyckdd76a9a2011-02-11 01:54:29 +00001743/// toBits - Convert a size in characters to a size in characters.
1744int64_t ASTContext::toBits(CharUnits CharSize) const {
1745 return CharSize.getQuantity() * getCharWidth();
1746}
1747
Ken Dyckbdc601b2009-12-22 14:23:30 +00001748/// getTypeSizeInChars - Return the size of the specified type, in characters.
1749/// This method does not work on incomplete types.
Jay Foad4ba2a172011-01-12 09:06:06 +00001750CharUnits ASTContext::getTypeSizeInChars(QualType T) const {
Richard Trieu910f17e2013-05-14 21:59:17 +00001751 return getTypeInfoInChars(T).first;
Ken Dyckbdc601b2009-12-22 14:23:30 +00001752}
Jay Foad4ba2a172011-01-12 09:06:06 +00001753CharUnits ASTContext::getTypeSizeInChars(const Type *T) const {
Richard Trieu910f17e2013-05-14 21:59:17 +00001754 return getTypeInfoInChars(T).first;
Ken Dyckbdc601b2009-12-22 14:23:30 +00001755}
1756
Ken Dyck16e20cc2010-01-26 17:25:18 +00001757/// getTypeAlignInChars - Return the ABI-specified alignment of a type, in
Ken Dyck86fa4312010-01-26 17:22:55 +00001758/// characters. This method does not work on incomplete types.
Jay Foad4ba2a172011-01-12 09:06:06 +00001759CharUnits ASTContext::getTypeAlignInChars(QualType T) const {
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001760 return toCharUnitsFromBits(getTypeAlign(T));
Ken Dyck86fa4312010-01-26 17:22:55 +00001761}
Jay Foad4ba2a172011-01-12 09:06:06 +00001762CharUnits ASTContext::getTypeAlignInChars(const Type *T) const {
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001763 return toCharUnitsFromBits(getTypeAlign(T));
Ken Dyck86fa4312010-01-26 17:22:55 +00001764}
1765
Chris Lattner34ebde42009-01-27 18:08:34 +00001766/// getPreferredTypeAlign - Return the "preferred" alignment of the specified
1767/// type for the current target in bits. This can be different than the ABI
1768/// alignment in cases where it is beneficial for performance to overalign
1769/// a data type.
Jay Foad4ba2a172011-01-12 09:06:06 +00001770unsigned ASTContext::getPreferredTypeAlign(const Type *T) const {
Chris Lattner34ebde42009-01-27 18:08:34 +00001771 unsigned ABIAlign = getTypeAlign(T);
Eli Friedman1eed6022009-05-25 21:27:19 +00001772
1773 // Double and long long should be naturally aligned if possible.
John McCall183700f2009-09-21 23:43:11 +00001774 if (const ComplexType* CT = T->getAs<ComplexType>())
Eli Friedman1eed6022009-05-25 21:27:19 +00001775 T = CT->getElementType().getTypePtr();
1776 if (T->isSpecificBuiltinType(BuiltinType::Double) ||
Chad Rosiercde7a1d2012-03-21 20:20:47 +00001777 T->isSpecificBuiltinType(BuiltinType::LongLong) ||
1778 T->isSpecificBuiltinType(BuiltinType::ULongLong))
Eli Friedman1eed6022009-05-25 21:27:19 +00001779 return std::max(ABIAlign, (unsigned)getTypeSize(T));
1780
Chris Lattner34ebde42009-01-27 18:08:34 +00001781 return ABIAlign;
1782}
1783
Ulrich Weigand6b203512013-05-06 16:23:57 +00001784/// getAlignOfGlobalVar - Return the alignment in bits that should be given
1785/// to a global variable of the specified type.
1786unsigned ASTContext::getAlignOfGlobalVar(QualType T) const {
1787 return std::max(getTypeAlign(T), getTargetInfo().getMinGlobalAlign());
1788}
1789
1790/// getAlignOfGlobalVarInChars - Return the alignment in characters that
1791/// should be given to a global variable of the specified type.
1792CharUnits ASTContext::getAlignOfGlobalVarInChars(QualType T) const {
1793 return toCharUnitsFromBits(getAlignOfGlobalVar(T));
1794}
1795
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001796/// DeepCollectObjCIvars -
1797/// This routine first collects all declared, but not synthesized, ivars in
1798/// super class and then collects all ivars, including those synthesized for
1799/// current class. This routine is used for implementation of current class
1800/// when all ivars, declared and synthesized are known.
Fariborz Jahanian98200742009-05-12 18:14:29 +00001801///
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001802void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI,
1803 bool leafClass,
Jordy Rosedb8264e2011-07-22 02:08:32 +00001804 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001805 if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
1806 DeepCollectObjCIvars(SuperClass, false, Ivars);
1807 if (!leafClass) {
1808 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
1809 E = OI->ivar_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00001810 Ivars.push_back(*I);
Chad Rosier30601782011-08-17 23:08:45 +00001811 } else {
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00001812 ObjCInterfaceDecl *IDecl = const_cast<ObjCInterfaceDecl *>(OI);
Jordy Rosedb8264e2011-07-22 02:08:32 +00001813 for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv;
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00001814 Iv= Iv->getNextIvar())
1815 Ivars.push_back(Iv);
1816 }
Fariborz Jahanian98200742009-05-12 18:14:29 +00001817}
1818
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001819/// CollectInheritedProtocols - Collect all protocols in current class and
1820/// those inherited by it.
1821void ASTContext::CollectInheritedProtocols(const Decl *CDecl,
Fariborz Jahanian432a8892010-02-12 19:27:33 +00001822 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001823 if (const ObjCInterfaceDecl *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001824 // We can use protocol_iterator here instead of
1825 // all_referenced_protocol_iterator since we are walking all categories.
1826 for (ObjCInterfaceDecl::all_protocol_iterator P = OI->all_referenced_protocol_begin(),
1827 PE = OI->all_referenced_protocol_end(); P != PE; ++P) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001828 ObjCProtocolDecl *Proto = (*P);
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001829 Protocols.insert(Proto->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001830 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
Fariborz Jahanianb2f81212010-02-25 18:24:33 +00001831 PE = Proto->protocol_end(); P != PE; ++P) {
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001832 Protocols.insert((*P)->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001833 CollectInheritedProtocols(*P, Protocols);
1834 }
Fariborz Jahanianb2f81212010-02-25 18:24:33 +00001835 }
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001836
1837 // Categories of this Interface.
Douglas Gregord3297242013-01-16 23:00:23 +00001838 for (ObjCInterfaceDecl::visible_categories_iterator
1839 Cat = OI->visible_categories_begin(),
1840 CatEnd = OI->visible_categories_end();
1841 Cat != CatEnd; ++Cat) {
1842 CollectInheritedProtocols(*Cat, Protocols);
1843 }
1844
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001845 if (ObjCInterfaceDecl *SD = OI->getSuperClass())
1846 while (SD) {
1847 CollectInheritedProtocols(SD, Protocols);
1848 SD = SD->getSuperClass();
1849 }
Benjamin Kramerb170ca52010-04-27 17:47:25 +00001850 } else if (const ObjCCategoryDecl *OC = dyn_cast<ObjCCategoryDecl>(CDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001851 for (ObjCCategoryDecl::protocol_iterator P = OC->protocol_begin(),
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001852 PE = OC->protocol_end(); P != PE; ++P) {
1853 ObjCProtocolDecl *Proto = (*P);
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001854 Protocols.insert(Proto->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001855 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
1856 PE = Proto->protocol_end(); P != PE; ++P)
1857 CollectInheritedProtocols(*P, Protocols);
1858 }
Benjamin Kramerb170ca52010-04-27 17:47:25 +00001859 } else if (const ObjCProtocolDecl *OP = dyn_cast<ObjCProtocolDecl>(CDecl)) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001860 for (ObjCProtocolDecl::protocol_iterator P = OP->protocol_begin(),
1861 PE = OP->protocol_end(); P != PE; ++P) {
1862 ObjCProtocolDecl *Proto = (*P);
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001863 Protocols.insert(Proto->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001864 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
1865 PE = Proto->protocol_end(); P != PE; ++P)
1866 CollectInheritedProtocols(*P, Protocols);
1867 }
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001868 }
1869}
1870
Jay Foad4ba2a172011-01-12 09:06:06 +00001871unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const {
Fariborz Jahanian3bfacdf2010-03-22 18:25:57 +00001872 unsigned count = 0;
1873 // Count ivars declared in class extension.
Douglas Gregord3297242013-01-16 23:00:23 +00001874 for (ObjCInterfaceDecl::known_extensions_iterator
1875 Ext = OI->known_extensions_begin(),
1876 ExtEnd = OI->known_extensions_end();
1877 Ext != ExtEnd; ++Ext) {
1878 count += Ext->ivar_size();
1879 }
1880
Fariborz Jahanian3bfacdf2010-03-22 18:25:57 +00001881 // Count ivar defined in this class's implementation. This
1882 // includes synthesized ivars.
1883 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation())
Benjamin Kramerb170ca52010-04-27 17:47:25 +00001884 count += ImplDecl->ivar_size();
1885
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00001886 return count;
1887}
1888
Argyrios Kyrtzidis8deabc12012-02-03 05:58:16 +00001889bool ASTContext::isSentinelNullExpr(const Expr *E) {
1890 if (!E)
1891 return false;
1892
1893 // nullptr_t is always treated as null.
1894 if (E->getType()->isNullPtrType()) return true;
1895
1896 if (E->getType()->isAnyPointerType() &&
1897 E->IgnoreParenCasts()->isNullPointerConstant(*this,
1898 Expr::NPC_ValueDependentIsNull))
1899 return true;
1900
1901 // Unfortunately, __null has type 'int'.
1902 if (isa<GNUNullExpr>(E)) return true;
1903
1904 return false;
1905}
1906
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001907/// \brief Get the implementation of ObjCInterfaceDecl,or NULL if none exists.
1908ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) {
1909 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
1910 I = ObjCImpls.find(D);
1911 if (I != ObjCImpls.end())
1912 return cast<ObjCImplementationDecl>(I->second);
1913 return 0;
1914}
1915/// \brief Get the implementation of ObjCCategoryDecl, or NULL if none exists.
1916ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) {
1917 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
1918 I = ObjCImpls.find(D);
1919 if (I != ObjCImpls.end())
1920 return cast<ObjCCategoryImplDecl>(I->second);
1921 return 0;
1922}
1923
1924/// \brief Set the implementation of ObjCInterfaceDecl.
1925void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD,
1926 ObjCImplementationDecl *ImplD) {
1927 assert(IFaceD && ImplD && "Passed null params");
1928 ObjCImpls[IFaceD] = ImplD;
1929}
1930/// \brief Set the implementation of ObjCCategoryDecl.
1931void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD,
1932 ObjCCategoryImplDecl *ImplD) {
1933 assert(CatD && ImplD && "Passed null params");
1934 ObjCImpls[CatD] = ImplD;
1935}
1936
Dmitri Gribenkob35cc2d2013-02-03 13:23:21 +00001937const ObjCInterfaceDecl *ASTContext::getObjContainingInterface(
1938 const NamedDecl *ND) const {
1939 if (const ObjCInterfaceDecl *ID =
1940 dyn_cast<ObjCInterfaceDecl>(ND->getDeclContext()))
Argyrios Kyrtzidis87ec9c22011-11-01 17:14:12 +00001941 return ID;
Dmitri Gribenkob35cc2d2013-02-03 13:23:21 +00001942 if (const ObjCCategoryDecl *CD =
1943 dyn_cast<ObjCCategoryDecl>(ND->getDeclContext()))
Argyrios Kyrtzidis87ec9c22011-11-01 17:14:12 +00001944 return CD->getClassInterface();
Dmitri Gribenkob35cc2d2013-02-03 13:23:21 +00001945 if (const ObjCImplDecl *IMD =
1946 dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
Argyrios Kyrtzidis87ec9c22011-11-01 17:14:12 +00001947 return IMD->getClassInterface();
1948
1949 return 0;
1950}
1951
Fariborz Jahanian1ceee5c2010-12-01 22:29:46 +00001952/// \brief Get the copy initialization expression of VarDecl,or NULL if
1953/// none exists.
Fariborz Jahanian830937b2010-12-02 17:02:11 +00001954Expr *ASTContext::getBlockVarCopyInits(const VarDecl*VD) {
Fariborz Jahaniand016ec22010-12-06 17:28:17 +00001955 assert(VD && "Passed null params");
1956 assert(VD->hasAttr<BlocksAttr>() &&
1957 "getBlockVarCopyInits - not __block var");
Fariborz Jahanian830937b2010-12-02 17:02:11 +00001958 llvm::DenseMap<const VarDecl*, Expr*>::iterator
Fariborz Jahaniand016ec22010-12-06 17:28:17 +00001959 I = BlockVarCopyInits.find(VD);
Fariborz Jahanian1ceee5c2010-12-01 22:29:46 +00001960 return (I != BlockVarCopyInits.end()) ? cast<Expr>(I->second) : 0;
1961}
1962
1963/// \brief Set the copy inialization expression of a block var decl.
1964void ASTContext::setBlockVarCopyInits(VarDecl*VD, Expr* Init) {
1965 assert(VD && Init && "Passed null params");
Fariborz Jahaniand016ec22010-12-06 17:28:17 +00001966 assert(VD->hasAttr<BlocksAttr>() &&
1967 "setBlockVarCopyInits - not __block var");
Fariborz Jahanian1ceee5c2010-12-01 22:29:46 +00001968 BlockVarCopyInits[VD] = Init;
1969}
1970
John McCalla93c9342009-12-07 02:54:59 +00001971TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T,
Jay Foad4ba2a172011-01-12 09:06:06 +00001972 unsigned DataSize) const {
John McCall109de5e2009-10-21 00:23:54 +00001973 if (!DataSize)
1974 DataSize = TypeLoc::getFullDataSizeForType(T);
1975 else
1976 assert(DataSize == TypeLoc::getFullDataSizeForType(T) &&
John McCalla93c9342009-12-07 02:54:59 +00001977 "incorrect data size provided to CreateTypeSourceInfo!");
John McCall109de5e2009-10-21 00:23:54 +00001978
John McCalla93c9342009-12-07 02:54:59 +00001979 TypeSourceInfo *TInfo =
1980 (TypeSourceInfo*)BumpAlloc.Allocate(sizeof(TypeSourceInfo) + DataSize, 8);
1981 new (TInfo) TypeSourceInfo(T);
1982 return TInfo;
Argyrios Kyrtzidisb17166c2009-08-19 01:27:32 +00001983}
1984
John McCalla93c9342009-12-07 02:54:59 +00001985TypeSourceInfo *ASTContext::getTrivialTypeSourceInfo(QualType T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001986 SourceLocation L) const {
John McCalla93c9342009-12-07 02:54:59 +00001987 TypeSourceInfo *DI = CreateTypeSourceInfo(T);
Douglas Gregorc21c7e92011-01-25 19:13:18 +00001988 DI->getTypeLoc().initialize(const_cast<ASTContext &>(*this), L);
John McCalla4eb74d2009-10-23 21:14:09 +00001989 return DI;
1990}
1991
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +00001992const ASTRecordLayout &
Jay Foad4ba2a172011-01-12 09:06:06 +00001993ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) const {
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +00001994 return getObjCLayout(D, 0);
1995}
1996
1997const ASTRecordLayout &
Jay Foad4ba2a172011-01-12 09:06:06 +00001998ASTContext::getASTObjCImplementationLayout(
1999 const ObjCImplementationDecl *D) const {
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +00002000 return getObjCLayout(D->getClassInterface(), D);
2001}
2002
Chris Lattnera7674d82007-07-13 22:13:22 +00002003//===----------------------------------------------------------------------===//
2004// Type creation/memoization methods
2005//===----------------------------------------------------------------------===//
2006
Jay Foad4ba2a172011-01-12 09:06:06 +00002007QualType
John McCall3b657512011-01-19 10:06:00 +00002008ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const {
2009 unsigned fastQuals = quals.getFastQualifiers();
2010 quals.removeFastQualifiers();
John McCall0953e762009-09-24 19:53:00 +00002011
2012 // Check if we've already instantiated this type.
2013 llvm::FoldingSetNodeID ID;
John McCall3b657512011-01-19 10:06:00 +00002014 ExtQuals::Profile(ID, baseType, quals);
2015 void *insertPos = 0;
2016 if (ExtQuals *eq = ExtQualNodes.FindNodeOrInsertPos(ID, insertPos)) {
2017 assert(eq->getQualifiers() == quals);
2018 return QualType(eq, fastQuals);
John McCall0953e762009-09-24 19:53:00 +00002019 }
2020
John McCall3b657512011-01-19 10:06:00 +00002021 // If the base type is not canonical, make the appropriate canonical type.
2022 QualType canon;
2023 if (!baseType->isCanonicalUnqualified()) {
2024 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split();
John McCall200fa532012-02-08 00:46:36 +00002025 canonSplit.Quals.addConsistentQualifiers(quals);
2026 canon = getExtQualType(canonSplit.Ty, canonSplit.Quals);
John McCall3b657512011-01-19 10:06:00 +00002027
2028 // Re-find the insert position.
2029 (void) ExtQualNodes.FindNodeOrInsertPos(ID, insertPos);
2030 }
2031
2032 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals);
2033 ExtQualNodes.InsertNode(eq, insertPos);
2034 return QualType(eq, fastQuals);
John McCall0953e762009-09-24 19:53:00 +00002035}
2036
Jay Foad4ba2a172011-01-12 09:06:06 +00002037QualType
2038ASTContext::getAddrSpaceQualType(QualType T, unsigned AddressSpace) const {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002039 QualType CanT = getCanonicalType(T);
2040 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattnerf46699c2008-02-20 20:55:12 +00002041 return T;
Chris Lattnerb7d25532009-02-18 22:53:11 +00002042
John McCall0953e762009-09-24 19:53:00 +00002043 // If we are composing extended qualifiers together, merge together
2044 // into one ExtQuals node.
2045 QualifierCollector Quals;
2046 const Type *TypeNode = Quals.strip(T);
Mike Stump1eb44332009-09-09 15:08:12 +00002047
John McCall0953e762009-09-24 19:53:00 +00002048 // If this type already has an address space specified, it cannot get
2049 // another one.
2050 assert(!Quals.hasAddressSpace() &&
2051 "Type cannot be in multiple addr spaces!");
2052 Quals.addAddressSpace(AddressSpace);
Mike Stump1eb44332009-09-09 15:08:12 +00002053
John McCall0953e762009-09-24 19:53:00 +00002054 return getExtQualType(TypeNode, Quals);
Christopher Lambebb97e92008-02-04 02:31:56 +00002055}
2056
Chris Lattnerb7d25532009-02-18 22:53:11 +00002057QualType ASTContext::getObjCGCQualType(QualType T,
Jay Foad4ba2a172011-01-12 09:06:06 +00002058 Qualifiers::GC GCAttr) const {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00002059 QualType CanT = getCanonicalType(T);
Chris Lattnerb7d25532009-02-18 22:53:11 +00002060 if (CanT.getObjCGCAttr() == GCAttr)
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00002061 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00002062
John McCall7f040a92010-12-24 02:08:15 +00002063 if (const PointerType *ptr = T->getAs<PointerType>()) {
2064 QualType Pointee = ptr->getPointeeType();
Steve Naroff58f9f2c2009-07-14 18:25:06 +00002065 if (Pointee->isAnyPointerType()) {
Fariborz Jahanian4027cd12009-06-03 17:15:17 +00002066 QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
2067 return getPointerType(ResultType);
2068 }
2069 }
Mike Stump1eb44332009-09-09 15:08:12 +00002070
John McCall0953e762009-09-24 19:53:00 +00002071 // If we are composing extended qualifiers together, merge together
2072 // into one ExtQuals node.
2073 QualifierCollector Quals;
2074 const Type *TypeNode = Quals.strip(T);
Mike Stump1eb44332009-09-09 15:08:12 +00002075
John McCall0953e762009-09-24 19:53:00 +00002076 // If this type already has an ObjCGC specified, it cannot get
2077 // another one.
2078 assert(!Quals.hasObjCGCAttr() &&
2079 "Type cannot have multiple ObjCGCs!");
2080 Quals.addObjCGCAttr(GCAttr);
Mike Stump1eb44332009-09-09 15:08:12 +00002081
John McCall0953e762009-09-24 19:53:00 +00002082 return getExtQualType(TypeNode, Quals);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00002083}
Chris Lattnera7674d82007-07-13 22:13:22 +00002084
John McCalle6a365d2010-12-19 02:44:49 +00002085const FunctionType *ASTContext::adjustFunctionType(const FunctionType *T,
2086 FunctionType::ExtInfo Info) {
2087 if (T->getExtInfo() == Info)
2088 return T;
2089
2090 QualType Result;
2091 if (const FunctionNoProtoType *FNPT = dyn_cast<FunctionNoProtoType>(T)) {
2092 Result = getFunctionNoProtoType(FNPT->getResultType(), Info);
2093 } else {
2094 const FunctionProtoType *FPT = cast<FunctionProtoType>(T);
2095 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2096 EPI.ExtInfo = Info;
Reid Kleckner0567a792013-06-10 20:51:09 +00002097 Result = getFunctionType(FPT->getResultType(), FPT->getArgTypes(), EPI);
John McCalle6a365d2010-12-19 02:44:49 +00002098 }
2099
2100 return cast<FunctionType>(Result.getTypePtr());
2101}
2102
Richard Smith60e141e2013-05-04 07:00:32 +00002103void ASTContext::adjustDeducedFunctionResultType(FunctionDecl *FD,
2104 QualType ResultType) {
Richard Smith9dadfab2013-05-11 05:45:24 +00002105 FD = FD->getMostRecentDecl();
2106 while (true) {
Richard Smith60e141e2013-05-04 07:00:32 +00002107 const FunctionProtoType *FPT = FD->getType()->castAs<FunctionProtoType>();
2108 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2109 FD->setType(getFunctionType(ResultType, FPT->getArgTypes(), EPI));
Richard Smith9dadfab2013-05-11 05:45:24 +00002110 if (FunctionDecl *Next = FD->getPreviousDecl())
2111 FD = Next;
2112 else
2113 break;
Richard Smith60e141e2013-05-04 07:00:32 +00002114 }
Richard Smith9dadfab2013-05-11 05:45:24 +00002115 if (ASTMutationListener *L = getASTMutationListener())
2116 L->DeducedReturnType(FD, ResultType);
Richard Smith60e141e2013-05-04 07:00:32 +00002117}
2118
Reid Spencer5f016e22007-07-11 17:01:13 +00002119/// getComplexType - Return the uniqued reference to the type for a complex
2120/// number with the specified element type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002121QualType ASTContext::getComplexType(QualType T) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00002122 // Unique pointers, to guarantee there is only one pointer of a particular
2123 // structure.
2124 llvm::FoldingSetNodeID ID;
2125 ComplexType::Profile(ID, T);
Mike Stump1eb44332009-09-09 15:08:12 +00002126
Reid Spencer5f016e22007-07-11 17:01:13 +00002127 void *InsertPos = 0;
2128 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
2129 return QualType(CT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002130
Reid Spencer5f016e22007-07-11 17:01:13 +00002131 // If the pointee type isn't canonical, this won't be a canonical type either,
2132 // so fill in the canonical type field.
2133 QualType Canonical;
John McCall467b27b2009-10-22 20:10:53 +00002134 if (!T.isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002135 Canonical = getComplexType(getCanonicalType(T));
Mike Stump1eb44332009-09-09 15:08:12 +00002136
Reid Spencer5f016e22007-07-11 17:01:13 +00002137 // Get the new insert position for the node we care about.
2138 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002139 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002140 }
John McCall6b304a02009-09-24 23:30:46 +00002141 ComplexType *New = new (*this, TypeAlignment) ComplexType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00002142 Types.push_back(New);
2143 ComplexTypes.InsertNode(New, InsertPos);
2144 return QualType(New, 0);
2145}
2146
Reid Spencer5f016e22007-07-11 17:01:13 +00002147/// getPointerType - Return the uniqued reference to the type for a pointer to
2148/// the specified type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002149QualType ASTContext::getPointerType(QualType T) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00002150 // Unique pointers, to guarantee there is only one pointer of a particular
2151 // structure.
2152 llvm::FoldingSetNodeID ID;
2153 PointerType::Profile(ID, T);
Mike Stump1eb44332009-09-09 15:08:12 +00002154
Reid Spencer5f016e22007-07-11 17:01:13 +00002155 void *InsertPos = 0;
2156 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2157 return QualType(PT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002158
Reid Spencer5f016e22007-07-11 17:01:13 +00002159 // If the pointee type isn't canonical, this won't be a canonical type either,
2160 // so fill in the canonical type field.
2161 QualType Canonical;
Bob Wilsonc90cc932013-03-15 17:12:43 +00002162 if (!T.isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002163 Canonical = getPointerType(getCanonicalType(T));
Mike Stump1eb44332009-09-09 15:08:12 +00002164
Bob Wilsonc90cc932013-03-15 17:12:43 +00002165 // Get the new insert position for the node we care about.
2166 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
2167 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
2168 }
John McCall6b304a02009-09-24 23:30:46 +00002169 PointerType *New = new (*this, TypeAlignment) PointerType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00002170 Types.push_back(New);
2171 PointerTypes.InsertNode(New, InsertPos);
2172 return QualType(New, 0);
2173}
2174
Reid Kleckner12df2462013-06-24 17:51:48 +00002175QualType ASTContext::getDecayedType(QualType T) const {
2176 assert((T->isArrayType() || T->isFunctionType()) && "T does not decay");
2177
2178 llvm::FoldingSetNodeID ID;
2179 DecayedType::Profile(ID, T);
2180 void *InsertPos = 0;
2181 if (DecayedType *DT = DecayedTypes.FindNodeOrInsertPos(ID, InsertPos))
2182 return QualType(DT, 0);
2183
2184 QualType Decayed;
2185
2186 // C99 6.7.5.3p7:
2187 // A declaration of a parameter as "array of type" shall be
2188 // adjusted to "qualified pointer to type", where the type
2189 // qualifiers (if any) are those specified within the [ and ] of
2190 // the array type derivation.
2191 if (T->isArrayType())
2192 Decayed = getArrayDecayedType(T);
2193
2194 // C99 6.7.5.3p8:
2195 // A declaration of a parameter as "function returning type"
2196 // shall be adjusted to "pointer to function returning type", as
2197 // in 6.3.2.1.
2198 if (T->isFunctionType())
2199 Decayed = getPointerType(T);
2200
2201 QualType Canonical = getCanonicalType(Decayed);
2202
2203 // Get the new insert position for the node we care about.
2204 DecayedType *NewIP = DecayedTypes.FindNodeOrInsertPos(ID, InsertPos);
2205 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
2206
2207 DecayedType *New =
2208 new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical);
2209 Types.push_back(New);
2210 DecayedTypes.InsertNode(New, InsertPos);
2211 return QualType(New, 0);
2212}
2213
Mike Stump1eb44332009-09-09 15:08:12 +00002214/// getBlockPointerType - Return the uniqued reference to the type for
Steve Naroff5618bd42008-08-27 16:04:49 +00002215/// a pointer to the specified block.
Jay Foad4ba2a172011-01-12 09:06:06 +00002216QualType ASTContext::getBlockPointerType(QualType T) const {
Steve Naroff296e8d52008-08-28 19:20:44 +00002217 assert(T->isFunctionType() && "block of function types only");
2218 // Unique pointers, to guarantee there is only one block of a particular
Steve Naroff5618bd42008-08-27 16:04:49 +00002219 // structure.
2220 llvm::FoldingSetNodeID ID;
2221 BlockPointerType::Profile(ID, T);
Mike Stump1eb44332009-09-09 15:08:12 +00002222
Steve Naroff5618bd42008-08-27 16:04:49 +00002223 void *InsertPos = 0;
2224 if (BlockPointerType *PT =
2225 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2226 return QualType(PT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002227
2228 // If the block pointee type isn't canonical, this won't be a canonical
Steve Naroff5618bd42008-08-27 16:04:49 +00002229 // type either so fill in the canonical type field.
2230 QualType Canonical;
John McCall467b27b2009-10-22 20:10:53 +00002231 if (!T.isCanonical()) {
Steve Naroff5618bd42008-08-27 16:04:49 +00002232 Canonical = getBlockPointerType(getCanonicalType(T));
Mike Stump1eb44332009-09-09 15:08:12 +00002233
Steve Naroff5618bd42008-08-27 16:04:49 +00002234 // Get the new insert position for the node we care about.
2235 BlockPointerType *NewIP =
2236 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002237 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Steve Naroff5618bd42008-08-27 16:04:49 +00002238 }
John McCall6b304a02009-09-24 23:30:46 +00002239 BlockPointerType *New
2240 = new (*this, TypeAlignment) BlockPointerType(T, Canonical);
Steve Naroff5618bd42008-08-27 16:04:49 +00002241 Types.push_back(New);
2242 BlockPointerTypes.InsertNode(New, InsertPos);
2243 return QualType(New, 0);
2244}
2245
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002246/// getLValueReferenceType - Return the uniqued reference to the type for an
2247/// lvalue reference to the specified type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002248QualType
2249ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const {
Douglas Gregor9625e442011-05-21 22:16:50 +00002250 assert(getCanonicalType(T) != OverloadTy &&
2251 "Unresolved overloaded function type");
2252
Reid Spencer5f016e22007-07-11 17:01:13 +00002253 // Unique pointers, to guarantee there is only one pointer of a particular
2254 // structure.
2255 llvm::FoldingSetNodeID ID;
John McCall54e14c42009-10-22 22:37:11 +00002256 ReferenceType::Profile(ID, T, SpelledAsLValue);
Reid Spencer5f016e22007-07-11 17:01:13 +00002257
2258 void *InsertPos = 0;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002259 if (LValueReferenceType *RT =
2260 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002261 return QualType(RT, 0);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002262
John McCall54e14c42009-10-22 22:37:11 +00002263 const ReferenceType *InnerRef = T->getAs<ReferenceType>();
2264
Reid Spencer5f016e22007-07-11 17:01:13 +00002265 // If the referencee type isn't canonical, this won't be a canonical type
2266 // either, so fill in the canonical type field.
2267 QualType Canonical;
John McCall54e14c42009-10-22 22:37:11 +00002268 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) {
2269 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
2270 Canonical = getLValueReferenceType(getCanonicalType(PointeeType));
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002271
Reid Spencer5f016e22007-07-11 17:01:13 +00002272 // Get the new insert position for the node we care about.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002273 LValueReferenceType *NewIP =
2274 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002275 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002276 }
2277
John McCall6b304a02009-09-24 23:30:46 +00002278 LValueReferenceType *New
John McCall54e14c42009-10-22 22:37:11 +00002279 = new (*this, TypeAlignment) LValueReferenceType(T, Canonical,
2280 SpelledAsLValue);
Reid Spencer5f016e22007-07-11 17:01:13 +00002281 Types.push_back(New);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002282 LValueReferenceTypes.InsertNode(New, InsertPos);
John McCall54e14c42009-10-22 22:37:11 +00002283
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002284 return QualType(New, 0);
2285}
2286
2287/// getRValueReferenceType - Return the uniqued reference to the type for an
2288/// rvalue reference to the specified type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002289QualType ASTContext::getRValueReferenceType(QualType T) const {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002290 // Unique pointers, to guarantee there is only one pointer of a particular
2291 // structure.
2292 llvm::FoldingSetNodeID ID;
John McCall54e14c42009-10-22 22:37:11 +00002293 ReferenceType::Profile(ID, T, false);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002294
2295 void *InsertPos = 0;
2296 if (RValueReferenceType *RT =
2297 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
2298 return QualType(RT, 0);
2299
John McCall54e14c42009-10-22 22:37:11 +00002300 const ReferenceType *InnerRef = T->getAs<ReferenceType>();
2301
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002302 // If the referencee type isn't canonical, this won't be a canonical type
2303 // either, so fill in the canonical type field.
2304 QualType Canonical;
John McCall54e14c42009-10-22 22:37:11 +00002305 if (InnerRef || !T.isCanonical()) {
2306 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
2307 Canonical = getRValueReferenceType(getCanonicalType(PointeeType));
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002308
2309 // Get the new insert position for the node we care about.
2310 RValueReferenceType *NewIP =
2311 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002312 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002313 }
2314
John McCall6b304a02009-09-24 23:30:46 +00002315 RValueReferenceType *New
2316 = new (*this, TypeAlignment) RValueReferenceType(T, Canonical);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002317 Types.push_back(New);
2318 RValueReferenceTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002319 return QualType(New, 0);
2320}
2321
Sebastian Redlf30208a2009-01-24 21:16:55 +00002322/// getMemberPointerType - Return the uniqued reference to the type for a
2323/// member pointer to the specified type, in the specified class.
Jay Foad4ba2a172011-01-12 09:06:06 +00002324QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls) const {
Sebastian Redlf30208a2009-01-24 21:16:55 +00002325 // Unique pointers, to guarantee there is only one pointer of a particular
2326 // structure.
2327 llvm::FoldingSetNodeID ID;
2328 MemberPointerType::Profile(ID, T, Cls);
2329
2330 void *InsertPos = 0;
2331 if (MemberPointerType *PT =
2332 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2333 return QualType(PT, 0);
2334
2335 // If the pointee or class type isn't canonical, this won't be a canonical
2336 // type either, so fill in the canonical type field.
2337 QualType Canonical;
Douglas Gregor87c12c42009-11-04 16:49:01 +00002338 if (!T.isCanonical() || !Cls->isCanonicalUnqualified()) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00002339 Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
2340
2341 // Get the new insert position for the node we care about.
2342 MemberPointerType *NewIP =
2343 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002344 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Sebastian Redlf30208a2009-01-24 21:16:55 +00002345 }
John McCall6b304a02009-09-24 23:30:46 +00002346 MemberPointerType *New
2347 = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical);
Sebastian Redlf30208a2009-01-24 21:16:55 +00002348 Types.push_back(New);
2349 MemberPointerTypes.InsertNode(New, InsertPos);
2350 return QualType(New, 0);
2351}
2352
Mike Stump1eb44332009-09-09 15:08:12 +00002353/// getConstantArrayType - Return the unique reference to the type for an
Steve Narofffb22d962007-08-30 01:06:46 +00002354/// array of the specified element type.
Mike Stump1eb44332009-09-09 15:08:12 +00002355QualType ASTContext::getConstantArrayType(QualType EltTy,
Chris Lattner38aeec72009-05-13 04:12:56 +00002356 const llvm::APInt &ArySizeIn,
Steve Naroffc9406122007-08-30 18:10:14 +00002357 ArrayType::ArraySizeModifier ASM,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002358 unsigned IndexTypeQuals) const {
Sebastian Redl923d56d2009-11-05 15:52:31 +00002359 assert((EltTy->isDependentType() ||
2360 EltTy->isIncompleteType() || EltTy->isConstantSizeType()) &&
Eli Friedman587cbdf2009-05-29 20:17:55 +00002361 "Constant array of VLAs is illegal!");
2362
Chris Lattner38aeec72009-05-13 04:12:56 +00002363 // Convert the array size into a canonical width matching the pointer size for
2364 // the target.
2365 llvm::APInt ArySize(ArySizeIn);
Jay Foad9f71a8f2010-12-07 08:25:34 +00002366 ArySize =
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002367 ArySize.zextOrTrunc(Target->getPointerWidth(getTargetAddressSpace(EltTy)));
Mike Stump1eb44332009-09-09 15:08:12 +00002368
Reid Spencer5f016e22007-07-11 17:01:13 +00002369 llvm::FoldingSetNodeID ID;
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002370 ConstantArrayType::Profile(ID, EltTy, ArySize, ASM, IndexTypeQuals);
Mike Stump1eb44332009-09-09 15:08:12 +00002371
Reid Spencer5f016e22007-07-11 17:01:13 +00002372 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002373 if (ConstantArrayType *ATP =
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002374 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002375 return QualType(ATP, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002376
John McCall3b657512011-01-19 10:06:00 +00002377 // If the element type isn't canonical or has qualifiers, this won't
2378 // be a canonical type either, so fill in the canonical type field.
2379 QualType Canon;
2380 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
2381 SplitQualType canonSplit = getCanonicalType(EltTy).split();
John McCall200fa532012-02-08 00:46:36 +00002382 Canon = getConstantArrayType(QualType(canonSplit.Ty, 0), ArySize,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002383 ASM, IndexTypeQuals);
John McCall200fa532012-02-08 00:46:36 +00002384 Canon = getQualifiedType(Canon, canonSplit.Quals);
John McCall3b657512011-01-19 10:06:00 +00002385
Reid Spencer5f016e22007-07-11 17:01:13 +00002386 // Get the new insert position for the node we care about.
Mike Stump1eb44332009-09-09 15:08:12 +00002387 ConstantArrayType *NewIP =
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002388 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002389 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002390 }
Mike Stump1eb44332009-09-09 15:08:12 +00002391
John McCall6b304a02009-09-24 23:30:46 +00002392 ConstantArrayType *New = new(*this,TypeAlignment)
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002393 ConstantArrayType(EltTy, Canon, ArySize, ASM, IndexTypeQuals);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002394 ConstantArrayTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002395 Types.push_back(New);
2396 return QualType(New, 0);
2397}
2398
John McCallce889032011-01-18 08:40:38 +00002399/// getVariableArrayDecayedType - Turns the given type, which may be
2400/// variably-modified, into the corresponding type with all the known
2401/// sizes replaced with [*].
2402QualType ASTContext::getVariableArrayDecayedType(QualType type) const {
2403 // Vastly most common case.
2404 if (!type->isVariablyModifiedType()) return type;
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00002405
John McCallce889032011-01-18 08:40:38 +00002406 QualType result;
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00002407
John McCallce889032011-01-18 08:40:38 +00002408 SplitQualType split = type.getSplitDesugaredType();
John McCall200fa532012-02-08 00:46:36 +00002409 const Type *ty = split.Ty;
John McCallce889032011-01-18 08:40:38 +00002410 switch (ty->getTypeClass()) {
2411#define TYPE(Class, Base)
2412#define ABSTRACT_TYPE(Class, Base)
2413#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
2414#include "clang/AST/TypeNodes.def"
2415 llvm_unreachable("didn't desugar past all non-canonical types?");
2416
2417 // These types should never be variably-modified.
2418 case Type::Builtin:
2419 case Type::Complex:
2420 case Type::Vector:
2421 case Type::ExtVector:
2422 case Type::DependentSizedExtVector:
2423 case Type::ObjCObject:
2424 case Type::ObjCInterface:
2425 case Type::ObjCObjectPointer:
2426 case Type::Record:
2427 case Type::Enum:
2428 case Type::UnresolvedUsing:
2429 case Type::TypeOfExpr:
2430 case Type::TypeOf:
2431 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00002432 case Type::UnaryTransform:
John McCallce889032011-01-18 08:40:38 +00002433 case Type::DependentName:
2434 case Type::InjectedClassName:
2435 case Type::TemplateSpecialization:
2436 case Type::DependentTemplateSpecialization:
2437 case Type::TemplateTypeParm:
2438 case Type::SubstTemplateTypeParmPack:
Richard Smith34b41d92011-02-20 03:19:35 +00002439 case Type::Auto:
John McCallce889032011-01-18 08:40:38 +00002440 case Type::PackExpansion:
2441 llvm_unreachable("type should never be variably-modified");
2442
2443 // These types can be variably-modified but should never need to
2444 // further decay.
2445 case Type::FunctionNoProto:
2446 case Type::FunctionProto:
2447 case Type::BlockPointer:
2448 case Type::MemberPointer:
2449 return type;
2450
2451 // These types can be variably-modified. All these modifications
2452 // preserve structure except as noted by comments.
2453 // TODO: if we ever care about optimizing VLAs, there are no-op
2454 // optimizations available here.
2455 case Type::Pointer:
2456 result = getPointerType(getVariableArrayDecayedType(
2457 cast<PointerType>(ty)->getPointeeType()));
2458 break;
2459
2460 case Type::LValueReference: {
2461 const LValueReferenceType *lv = cast<LValueReferenceType>(ty);
2462 result = getLValueReferenceType(
2463 getVariableArrayDecayedType(lv->getPointeeType()),
2464 lv->isSpelledAsLValue());
2465 break;
2466 }
2467
2468 case Type::RValueReference: {
2469 const RValueReferenceType *lv = cast<RValueReferenceType>(ty);
2470 result = getRValueReferenceType(
2471 getVariableArrayDecayedType(lv->getPointeeType()));
2472 break;
2473 }
2474
Eli Friedmanb001de72011-10-06 23:00:33 +00002475 case Type::Atomic: {
2476 const AtomicType *at = cast<AtomicType>(ty);
2477 result = getAtomicType(getVariableArrayDecayedType(at->getValueType()));
2478 break;
2479 }
2480
John McCallce889032011-01-18 08:40:38 +00002481 case Type::ConstantArray: {
2482 const ConstantArrayType *cat = cast<ConstantArrayType>(ty);
2483 result = getConstantArrayType(
2484 getVariableArrayDecayedType(cat->getElementType()),
2485 cat->getSize(),
2486 cat->getSizeModifier(),
2487 cat->getIndexTypeCVRQualifiers());
2488 break;
2489 }
2490
2491 case Type::DependentSizedArray: {
2492 const DependentSizedArrayType *dat = cast<DependentSizedArrayType>(ty);
2493 result = getDependentSizedArrayType(
2494 getVariableArrayDecayedType(dat->getElementType()),
2495 dat->getSizeExpr(),
2496 dat->getSizeModifier(),
2497 dat->getIndexTypeCVRQualifiers(),
2498 dat->getBracketsRange());
2499 break;
2500 }
2501
2502 // Turn incomplete types into [*] types.
2503 case Type::IncompleteArray: {
2504 const IncompleteArrayType *iat = cast<IncompleteArrayType>(ty);
2505 result = getVariableArrayType(
2506 getVariableArrayDecayedType(iat->getElementType()),
2507 /*size*/ 0,
2508 ArrayType::Normal,
2509 iat->getIndexTypeCVRQualifiers(),
2510 SourceRange());
2511 break;
2512 }
2513
2514 // Turn VLA types into [*] types.
2515 case Type::VariableArray: {
2516 const VariableArrayType *vat = cast<VariableArrayType>(ty);
2517 result = getVariableArrayType(
2518 getVariableArrayDecayedType(vat->getElementType()),
2519 /*size*/ 0,
2520 ArrayType::Star,
2521 vat->getIndexTypeCVRQualifiers(),
2522 vat->getBracketsRange());
2523 break;
2524 }
2525 }
2526
2527 // Apply the top-level qualifiers from the original.
John McCall200fa532012-02-08 00:46:36 +00002528 return getQualifiedType(result, split.Quals);
John McCallce889032011-01-18 08:40:38 +00002529}
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00002530
Steve Naroffbdbf7b02007-08-30 18:14:25 +00002531/// getVariableArrayType - Returns a non-unique reference to the type for a
2532/// variable array of the specified element type.
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002533QualType ASTContext::getVariableArrayType(QualType EltTy,
2534 Expr *NumElts,
Steve Naroffc9406122007-08-30 18:10:14 +00002535 ArrayType::ArraySizeModifier ASM,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002536 unsigned IndexTypeQuals,
Jay Foad4ba2a172011-01-12 09:06:06 +00002537 SourceRange Brackets) const {
Eli Friedmanc5773c42008-02-15 18:16:39 +00002538 // Since we don't unique expressions, it isn't possible to unique VLA's
2539 // that have an expression provided for their size.
John McCall3b657512011-01-19 10:06:00 +00002540 QualType Canon;
Douglas Gregor715e9c82010-05-23 16:10:32 +00002541
John McCall3b657512011-01-19 10:06:00 +00002542 // Be sure to pull qualifiers off the element type.
2543 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
2544 SplitQualType canonSplit = getCanonicalType(EltTy).split();
John McCall200fa532012-02-08 00:46:36 +00002545 Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002546 IndexTypeQuals, Brackets);
John McCall200fa532012-02-08 00:46:36 +00002547 Canon = getQualifiedType(Canon, canonSplit.Quals);
Douglas Gregor715e9c82010-05-23 16:10:32 +00002548 }
2549
John McCall6b304a02009-09-24 23:30:46 +00002550 VariableArrayType *New = new(*this, TypeAlignment)
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002551 VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002552
2553 VariableArrayTypes.push_back(New);
2554 Types.push_back(New);
2555 return QualType(New, 0);
2556}
2557
Douglas Gregor898574e2008-12-05 23:32:09 +00002558/// getDependentSizedArrayType - Returns a non-unique reference to
2559/// the type for a dependently-sized array of the specified element
Douglas Gregor04d4bee2009-07-31 00:23:35 +00002560/// type.
John McCall3b657512011-01-19 10:06:00 +00002561QualType ASTContext::getDependentSizedArrayType(QualType elementType,
2562 Expr *numElements,
Douglas Gregor898574e2008-12-05 23:32:09 +00002563 ArrayType::ArraySizeModifier ASM,
John McCall3b657512011-01-19 10:06:00 +00002564 unsigned elementTypeQuals,
2565 SourceRange brackets) const {
2566 assert((!numElements || numElements->isTypeDependent() ||
2567 numElements->isValueDependent()) &&
Douglas Gregor898574e2008-12-05 23:32:09 +00002568 "Size must be type- or value-dependent!");
2569
John McCall3b657512011-01-19 10:06:00 +00002570 // Dependently-sized array types that do not have a specified number
2571 // of elements will have their sizes deduced from a dependent
2572 // initializer. We do no canonicalization here at all, which is okay
2573 // because they can't be used in most locations.
2574 if (!numElements) {
2575 DependentSizedArrayType *newType
2576 = new (*this, TypeAlignment)
2577 DependentSizedArrayType(*this, elementType, QualType(),
2578 numElements, ASM, elementTypeQuals,
2579 brackets);
2580 Types.push_back(newType);
2581 return QualType(newType, 0);
2582 }
2583
2584 // Otherwise, we actually build a new type every time, but we
2585 // also build a canonical type.
2586
2587 SplitQualType canonElementType = getCanonicalType(elementType).split();
2588
2589 void *insertPos = 0;
Douglas Gregor789b1f62010-02-04 18:10:26 +00002590 llvm::FoldingSetNodeID ID;
John McCall3b657512011-01-19 10:06:00 +00002591 DependentSizedArrayType::Profile(ID, *this,
John McCall200fa532012-02-08 00:46:36 +00002592 QualType(canonElementType.Ty, 0),
John McCall3b657512011-01-19 10:06:00 +00002593 ASM, elementTypeQuals, numElements);
Douglas Gregorcb78d882009-11-19 18:03:26 +00002594
John McCall3b657512011-01-19 10:06:00 +00002595 // Look for an existing type with these properties.
2596 DependentSizedArrayType *canonTy =
2597 DependentSizedArrayTypes.FindNodeOrInsertPos(ID, insertPos);
Douglas Gregorcb78d882009-11-19 18:03:26 +00002598
John McCall3b657512011-01-19 10:06:00 +00002599 // If we don't have one, build one.
2600 if (!canonTy) {
2601 canonTy = new (*this, TypeAlignment)
John McCall200fa532012-02-08 00:46:36 +00002602 DependentSizedArrayType(*this, QualType(canonElementType.Ty, 0),
John McCall3b657512011-01-19 10:06:00 +00002603 QualType(), numElements, ASM, elementTypeQuals,
2604 brackets);
2605 DependentSizedArrayTypes.InsertNode(canonTy, insertPos);
2606 Types.push_back(canonTy);
Douglas Gregorcb78d882009-11-19 18:03:26 +00002607 }
2608
John McCall3b657512011-01-19 10:06:00 +00002609 // Apply qualifiers from the element type to the array.
2610 QualType canon = getQualifiedType(QualType(canonTy,0),
John McCall200fa532012-02-08 00:46:36 +00002611 canonElementType.Quals);
Mike Stump1eb44332009-09-09 15:08:12 +00002612
John McCall3b657512011-01-19 10:06:00 +00002613 // If we didn't need extra canonicalization for the element type,
2614 // then just use that as our result.
John McCall200fa532012-02-08 00:46:36 +00002615 if (QualType(canonElementType.Ty, 0) == elementType)
John McCall3b657512011-01-19 10:06:00 +00002616 return canon;
2617
2618 // Otherwise, we need to build a type which follows the spelling
2619 // of the element type.
2620 DependentSizedArrayType *sugaredType
2621 = new (*this, TypeAlignment)
2622 DependentSizedArrayType(*this, elementType, canon, numElements,
2623 ASM, elementTypeQuals, brackets);
2624 Types.push_back(sugaredType);
2625 return QualType(sugaredType, 0);
Douglas Gregor898574e2008-12-05 23:32:09 +00002626}
2627
John McCall3b657512011-01-19 10:06:00 +00002628QualType ASTContext::getIncompleteArrayType(QualType elementType,
Eli Friedmanc5773c42008-02-15 18:16:39 +00002629 ArrayType::ArraySizeModifier ASM,
John McCall3b657512011-01-19 10:06:00 +00002630 unsigned elementTypeQuals) const {
Eli Friedmanc5773c42008-02-15 18:16:39 +00002631 llvm::FoldingSetNodeID ID;
John McCall3b657512011-01-19 10:06:00 +00002632 IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002633
John McCall3b657512011-01-19 10:06:00 +00002634 void *insertPos = 0;
2635 if (IncompleteArrayType *iat =
2636 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos))
2637 return QualType(iat, 0);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002638
2639 // If the element type isn't canonical, this won't be a canonical type
John McCall3b657512011-01-19 10:06:00 +00002640 // either, so fill in the canonical type field. We also have to pull
2641 // qualifiers off the element type.
2642 QualType canon;
Eli Friedmanc5773c42008-02-15 18:16:39 +00002643
John McCall3b657512011-01-19 10:06:00 +00002644 if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) {
2645 SplitQualType canonSplit = getCanonicalType(elementType).split();
John McCall200fa532012-02-08 00:46:36 +00002646 canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0),
John McCall3b657512011-01-19 10:06:00 +00002647 ASM, elementTypeQuals);
John McCall200fa532012-02-08 00:46:36 +00002648 canon = getQualifiedType(canon, canonSplit.Quals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002649
2650 // Get the new insert position for the node we care about.
John McCall3b657512011-01-19 10:06:00 +00002651 IncompleteArrayType *existing =
2652 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos);
2653 assert(!existing && "Shouldn't be in the map!"); (void) existing;
Ted Kremenek2bd24ba2007-10-29 23:37:31 +00002654 }
Eli Friedmanc5773c42008-02-15 18:16:39 +00002655
John McCall3b657512011-01-19 10:06:00 +00002656 IncompleteArrayType *newType = new (*this, TypeAlignment)
2657 IncompleteArrayType(elementType, canon, ASM, elementTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002658
John McCall3b657512011-01-19 10:06:00 +00002659 IncompleteArrayTypes.InsertNode(newType, insertPos);
2660 Types.push_back(newType);
2661 return QualType(newType, 0);
Steve Narofffb22d962007-08-30 01:06:46 +00002662}
2663
Steve Naroff73322922007-07-18 18:00:27 +00002664/// getVectorType - Return the unique reference to a vector type of
2665/// the specified element type and size. VectorType must be a built-in type.
John Thompson82287d12010-02-05 00:12:22 +00002666QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts,
Jay Foad4ba2a172011-01-12 09:06:06 +00002667 VectorType::VectorKind VecKind) const {
John McCall3b657512011-01-19 10:06:00 +00002668 assert(vecType->isBuiltinType());
Mike Stump1eb44332009-09-09 15:08:12 +00002669
Reid Spencer5f016e22007-07-11 17:01:13 +00002670 // Check if we've already instantiated a vector of this type.
2671 llvm::FoldingSetNodeID ID;
Bob Wilsone86d78c2010-11-10 21:56:12 +00002672 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
Chris Lattner788b0fd2010-06-23 06:00:24 +00002673
Reid Spencer5f016e22007-07-11 17:01:13 +00002674 void *InsertPos = 0;
2675 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
2676 return QualType(VTP, 0);
2677
2678 // If the element type isn't canonical, this won't be a canonical type either,
2679 // so fill in the canonical type field.
2680 QualType Canonical;
Douglas Gregor255210e2010-08-06 10:14:59 +00002681 if (!vecType.isCanonical()) {
Bob Wilson231da7e2010-11-16 00:32:20 +00002682 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
Mike Stump1eb44332009-09-09 15:08:12 +00002683
Reid Spencer5f016e22007-07-11 17:01:13 +00002684 // Get the new insert position for the node we care about.
2685 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002686 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002687 }
John McCall6b304a02009-09-24 23:30:46 +00002688 VectorType *New = new (*this, TypeAlignment)
Bob Wilsone86d78c2010-11-10 21:56:12 +00002689 VectorType(vecType, NumElts, Canonical, VecKind);
Reid Spencer5f016e22007-07-11 17:01:13 +00002690 VectorTypes.InsertNode(New, InsertPos);
2691 Types.push_back(New);
2692 return QualType(New, 0);
2693}
2694
Nate Begeman213541a2008-04-18 23:10:10 +00002695/// getExtVectorType - Return the unique reference to an extended vector type of
Steve Naroff73322922007-07-18 18:00:27 +00002696/// the specified element type and size. VectorType must be a built-in type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002697QualType
2698ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const {
Douglas Gregor4ac01402011-06-15 16:02:29 +00002699 assert(vecType->isBuiltinType() || vecType->isDependentType());
Mike Stump1eb44332009-09-09 15:08:12 +00002700
Steve Naroff73322922007-07-18 18:00:27 +00002701 // Check if we've already instantiated a vector of this type.
2702 llvm::FoldingSetNodeID ID;
Chris Lattner788b0fd2010-06-23 06:00:24 +00002703 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector,
Bob Wilsone86d78c2010-11-10 21:56:12 +00002704 VectorType::GenericVector);
Steve Naroff73322922007-07-18 18:00:27 +00002705 void *InsertPos = 0;
2706 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
2707 return QualType(VTP, 0);
2708
2709 // If the element type isn't canonical, this won't be a canonical type either,
2710 // so fill in the canonical type field.
2711 QualType Canonical;
John McCall467b27b2009-10-22 20:10:53 +00002712 if (!vecType.isCanonical()) {
Nate Begeman213541a2008-04-18 23:10:10 +00002713 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
Mike Stump1eb44332009-09-09 15:08:12 +00002714
Steve Naroff73322922007-07-18 18:00:27 +00002715 // Get the new insert position for the node we care about.
2716 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002717 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Steve Naroff73322922007-07-18 18:00:27 +00002718 }
John McCall6b304a02009-09-24 23:30:46 +00002719 ExtVectorType *New = new (*this, TypeAlignment)
2720 ExtVectorType(vecType, NumElts, Canonical);
Steve Naroff73322922007-07-18 18:00:27 +00002721 VectorTypes.InsertNode(New, InsertPos);
2722 Types.push_back(New);
2723 return QualType(New, 0);
2724}
2725
Jay Foad4ba2a172011-01-12 09:06:06 +00002726QualType
2727ASTContext::getDependentSizedExtVectorType(QualType vecType,
2728 Expr *SizeExpr,
2729 SourceLocation AttrLoc) const {
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002730 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +00002731 DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType),
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002732 SizeExpr);
Mike Stump1eb44332009-09-09 15:08:12 +00002733
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002734 void *InsertPos = 0;
2735 DependentSizedExtVectorType *Canon
2736 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
2737 DependentSizedExtVectorType *New;
2738 if (Canon) {
2739 // We already have a canonical version of this array type; use it as
2740 // the canonical type for a newly-built type.
John McCall6b304a02009-09-24 23:30:46 +00002741 New = new (*this, TypeAlignment)
2742 DependentSizedExtVectorType(*this, vecType, QualType(Canon, 0),
2743 SizeExpr, AttrLoc);
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002744 } else {
2745 QualType CanonVecTy = getCanonicalType(vecType);
2746 if (CanonVecTy == vecType) {
John McCall6b304a02009-09-24 23:30:46 +00002747 New = new (*this, TypeAlignment)
2748 DependentSizedExtVectorType(*this, vecType, QualType(), SizeExpr,
2749 AttrLoc);
Douglas Gregor789b1f62010-02-04 18:10:26 +00002750
2751 DependentSizedExtVectorType *CanonCheck
2752 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
2753 assert(!CanonCheck && "Dependent-sized ext_vector canonical type broken");
2754 (void)CanonCheck;
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002755 DependentSizedExtVectorTypes.InsertNode(New, InsertPos);
2756 } else {
2757 QualType Canon = getDependentSizedExtVectorType(CanonVecTy, SizeExpr,
2758 SourceLocation());
John McCall6b304a02009-09-24 23:30:46 +00002759 New = new (*this, TypeAlignment)
2760 DependentSizedExtVectorType(*this, vecType, Canon, SizeExpr, AttrLoc);
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002761 }
2762 }
Mike Stump1eb44332009-09-09 15:08:12 +00002763
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002764 Types.push_back(New);
2765 return QualType(New, 0);
2766}
2767
Douglas Gregor72564e72009-02-26 23:50:07 +00002768/// getFunctionNoProtoType - Return a K&R style C function type like 'int()'.
Reid Spencer5f016e22007-07-11 17:01:13 +00002769///
Jay Foad4ba2a172011-01-12 09:06:06 +00002770QualType
2771ASTContext::getFunctionNoProtoType(QualType ResultTy,
2772 const FunctionType::ExtInfo &Info) const {
Roman Divackycfe9af22011-03-01 17:40:53 +00002773 const CallingConv DefaultCC = Info.getCC();
2774 const CallingConv CallConv = (LangOpts.MRTD && DefaultCC == CC_Default) ?
2775 CC_X86StdCall : DefaultCC;
Reid Spencer5f016e22007-07-11 17:01:13 +00002776 // Unique functions, to guarantee there is only one function of a particular
2777 // structure.
2778 llvm::FoldingSetNodeID ID;
Rafael Espindola264ba482010-03-30 20:24:48 +00002779 FunctionNoProtoType::Profile(ID, ResultTy, Info);
Mike Stump1eb44332009-09-09 15:08:12 +00002780
Reid Spencer5f016e22007-07-11 17:01:13 +00002781 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002782 if (FunctionNoProtoType *FT =
Douglas Gregor72564e72009-02-26 23:50:07 +00002783 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002784 return QualType(FT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002785
Reid Spencer5f016e22007-07-11 17:01:13 +00002786 QualType Canonical;
Douglas Gregorab8bbf42010-01-18 17:14:39 +00002787 if (!ResultTy.isCanonical() ||
John McCall04a67a62010-02-05 21:31:56 +00002788 getCanonicalCallConv(CallConv) != CallConv) {
Rafael Espindola264ba482010-03-30 20:24:48 +00002789 Canonical =
2790 getFunctionNoProtoType(getCanonicalType(ResultTy),
2791 Info.withCallingConv(getCanonicalCallConv(CallConv)));
Mike Stump1eb44332009-09-09 15:08:12 +00002792
Reid Spencer5f016e22007-07-11 17:01:13 +00002793 // Get the new insert position for the node we care about.
Douglas Gregor72564e72009-02-26 23:50:07 +00002794 FunctionNoProtoType *NewIP =
2795 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002796 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002797 }
Mike Stump1eb44332009-09-09 15:08:12 +00002798
Roman Divackycfe9af22011-03-01 17:40:53 +00002799 FunctionProtoType::ExtInfo newInfo = Info.withCallingConv(CallConv);
John McCall6b304a02009-09-24 23:30:46 +00002800 FunctionNoProtoType *New = new (*this, TypeAlignment)
Roman Divackycfe9af22011-03-01 17:40:53 +00002801 FunctionNoProtoType(ResultTy, Canonical, newInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00002802 Types.push_back(New);
Douglas Gregor72564e72009-02-26 23:50:07 +00002803 FunctionNoProtoTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002804 return QualType(New, 0);
2805}
2806
Douglas Gregor02dd7982013-01-17 23:36:45 +00002807/// \brief Determine whether \p T is canonical as the result type of a function.
2808static bool isCanonicalResultType(QualType T) {
2809 return T.isCanonical() &&
2810 (T.getObjCLifetime() == Qualifiers::OCL_None ||
2811 T.getObjCLifetime() == Qualifiers::OCL_ExplicitNone);
2812}
2813
Reid Spencer5f016e22007-07-11 17:01:13 +00002814/// getFunctionType - Return a normal function type with a typed argument
2815/// list. isVariadic indicates whether the argument list includes '...'.
Jay Foad4ba2a172011-01-12 09:06:06 +00002816QualType
Jordan Rosebea522f2013-03-08 21:51:21 +00002817ASTContext::getFunctionType(QualType ResultTy, ArrayRef<QualType> ArgArray,
Jay Foad4ba2a172011-01-12 09:06:06 +00002818 const FunctionProtoType::ExtProtoInfo &EPI) const {
Jordan Rosebea522f2013-03-08 21:51:21 +00002819 size_t NumArgs = ArgArray.size();
2820
Reid Spencer5f016e22007-07-11 17:01:13 +00002821 // Unique functions, to guarantee there is only one function of a particular
2822 // structure.
2823 llvm::FoldingSetNodeID ID;
Jordan Rosebea522f2013-03-08 21:51:21 +00002824 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
2825 *this);
Reid Spencer5f016e22007-07-11 17:01:13 +00002826
2827 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002828 if (FunctionProtoType *FTP =
Douglas Gregor72564e72009-02-26 23:50:07 +00002829 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002830 return QualType(FTP, 0);
Sebastian Redl465226e2009-05-27 22:11:52 +00002831
2832 // Determine whether the type being created is already canonical or not.
Richard Smitheefb3d52012-02-10 09:58:53 +00002833 bool isCanonical =
Douglas Gregor02dd7982013-01-17 23:36:45 +00002834 EPI.ExceptionSpecType == EST_None && isCanonicalResultType(ResultTy) &&
Richard Smitheefb3d52012-02-10 09:58:53 +00002835 !EPI.HasTrailingReturn;
Reid Spencer5f016e22007-07-11 17:01:13 +00002836 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
John McCall54e14c42009-10-22 22:37:11 +00002837 if (!ArgArray[i].isCanonicalAsParam())
Reid Spencer5f016e22007-07-11 17:01:13 +00002838 isCanonical = false;
2839
Roman Divackycfe9af22011-03-01 17:40:53 +00002840 const CallingConv DefaultCC = EPI.ExtInfo.getCC();
2841 const CallingConv CallConv = (LangOpts.MRTD && DefaultCC == CC_Default) ?
2842 CC_X86StdCall : DefaultCC;
John McCalle23cf432010-12-14 08:05:40 +00002843
Reid Spencer5f016e22007-07-11 17:01:13 +00002844 // If this type isn't canonical, get the canonical version of it.
Sebastian Redl465226e2009-05-27 22:11:52 +00002845 // The exception spec is not part of the canonical type.
Reid Spencer5f016e22007-07-11 17:01:13 +00002846 QualType Canonical;
John McCall04a67a62010-02-05 21:31:56 +00002847 if (!isCanonical || getCanonicalCallConv(CallConv) != CallConv) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002848 SmallVector<QualType, 16> CanonicalArgs;
Reid Spencer5f016e22007-07-11 17:01:13 +00002849 CanonicalArgs.reserve(NumArgs);
2850 for (unsigned i = 0; i != NumArgs; ++i)
John McCall54e14c42009-10-22 22:37:11 +00002851 CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i]));
Sebastian Redl465226e2009-05-27 22:11:52 +00002852
John McCalle23cf432010-12-14 08:05:40 +00002853 FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI;
Richard Smitheefb3d52012-02-10 09:58:53 +00002854 CanonicalEPI.HasTrailingReturn = false;
Sebastian Redl8b5b4092011-03-06 10:52:04 +00002855 CanonicalEPI.ExceptionSpecType = EST_None;
2856 CanonicalEPI.NumExceptions = 0;
John McCalle23cf432010-12-14 08:05:40 +00002857 CanonicalEPI.ExtInfo
2858 = CanonicalEPI.ExtInfo.withCallingConv(getCanonicalCallConv(CallConv));
2859
Douglas Gregor02dd7982013-01-17 23:36:45 +00002860 // Result types do not have ARC lifetime qualifiers.
2861 QualType CanResultTy = getCanonicalType(ResultTy);
2862 if (ResultTy.getQualifiers().hasObjCLifetime()) {
2863 Qualifiers Qs = CanResultTy.getQualifiers();
2864 Qs.removeObjCLifetime();
2865 CanResultTy = getQualifiedType(CanResultTy.getUnqualifiedType(), Qs);
2866 }
2867
Jordan Rosebea522f2013-03-08 21:51:21 +00002868 Canonical = getFunctionType(CanResultTy, CanonicalArgs, CanonicalEPI);
Sebastian Redl465226e2009-05-27 22:11:52 +00002869
Reid Spencer5f016e22007-07-11 17:01:13 +00002870 // Get the new insert position for the node we care about.
Douglas Gregor72564e72009-02-26 23:50:07 +00002871 FunctionProtoType *NewIP =
2872 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002873 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002874 }
Sebastian Redl465226e2009-05-27 22:11:52 +00002875
John McCallf85e1932011-06-15 23:02:42 +00002876 // FunctionProtoType objects are allocated with extra bytes after
2877 // them for three variable size arrays at the end:
2878 // - parameter types
2879 // - exception types
2880 // - consumed-arguments flags
2881 // Instead of the exception types, there could be a noexcept
Richard Smithb9d0b762012-07-27 04:22:15 +00002882 // expression, or information used to resolve the exception
2883 // specification.
John McCalle23cf432010-12-14 08:05:40 +00002884 size_t Size = sizeof(FunctionProtoType) +
Sebastian Redl60618fa2011-03-12 11:50:43 +00002885 NumArgs * sizeof(QualType);
Richard Smithb9d0b762012-07-27 04:22:15 +00002886 if (EPI.ExceptionSpecType == EST_Dynamic) {
Sebastian Redl60618fa2011-03-12 11:50:43 +00002887 Size += EPI.NumExceptions * sizeof(QualType);
Richard Smithb9d0b762012-07-27 04:22:15 +00002888 } else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) {
Sebastian Redl8026f6d2011-03-13 17:09:40 +00002889 Size += sizeof(Expr*);
Richard Smithe6975e92012-04-17 00:58:00 +00002890 } else if (EPI.ExceptionSpecType == EST_Uninstantiated) {
Richard Smith13bffc52012-04-19 00:08:28 +00002891 Size += 2 * sizeof(FunctionDecl*);
Richard Smithb9d0b762012-07-27 04:22:15 +00002892 } else if (EPI.ExceptionSpecType == EST_Unevaluated) {
2893 Size += sizeof(FunctionDecl*);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002894 }
John McCallf85e1932011-06-15 23:02:42 +00002895 if (EPI.ConsumedArguments)
2896 Size += NumArgs * sizeof(bool);
2897
John McCalle23cf432010-12-14 08:05:40 +00002898 FunctionProtoType *FTP = (FunctionProtoType*) Allocate(Size, TypeAlignment);
Roman Divackycfe9af22011-03-01 17:40:53 +00002899 FunctionProtoType::ExtProtoInfo newEPI = EPI;
2900 newEPI.ExtInfo = EPI.ExtInfo.withCallingConv(CallConv);
Jordan Rosebea522f2013-03-08 21:51:21 +00002901 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
Reid Spencer5f016e22007-07-11 17:01:13 +00002902 Types.push_back(FTP);
Douglas Gregor72564e72009-02-26 23:50:07 +00002903 FunctionProtoTypes.InsertNode(FTP, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002904 return QualType(FTP, 0);
2905}
2906
John McCall3cb0ebd2010-03-10 03:28:59 +00002907#ifndef NDEBUG
2908static bool NeedsInjectedClassNameType(const RecordDecl *D) {
2909 if (!isa<CXXRecordDecl>(D)) return false;
2910 const CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
2911 if (isa<ClassTemplatePartialSpecializationDecl>(RD))
2912 return true;
2913 if (RD->getDescribedClassTemplate() &&
2914 !isa<ClassTemplateSpecializationDecl>(RD))
2915 return true;
2916 return false;
2917}
2918#endif
2919
2920/// getInjectedClassNameType - Return the unique reference to the
2921/// injected class name type for the specified templated declaration.
2922QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl,
Jay Foad4ba2a172011-01-12 09:06:06 +00002923 QualType TST) const {
John McCall3cb0ebd2010-03-10 03:28:59 +00002924 assert(NeedsInjectedClassNameType(Decl));
2925 if (Decl->TypeForDecl) {
2926 assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
Douglas Gregoref96ee02012-01-14 16:38:05 +00002927 } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) {
John McCall3cb0ebd2010-03-10 03:28:59 +00002928 assert(PrevDecl->TypeForDecl && "previous declaration has no type");
2929 Decl->TypeForDecl = PrevDecl->TypeForDecl;
2930 assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
2931 } else {
John McCallf4c73712011-01-19 06:33:43 +00002932 Type *newType =
John McCall31f17ec2010-04-27 00:57:59 +00002933 new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
John McCallf4c73712011-01-19 06:33:43 +00002934 Decl->TypeForDecl = newType;
2935 Types.push_back(newType);
John McCall3cb0ebd2010-03-10 03:28:59 +00002936 }
2937 return QualType(Decl->TypeForDecl, 0);
2938}
2939
Douglas Gregor2ce52f32008-04-13 21:07:44 +00002940/// getTypeDeclType - Return the unique reference to the type for the
2941/// specified type declaration.
Jay Foad4ba2a172011-01-12 09:06:06 +00002942QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const {
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00002943 assert(Decl && "Passed null for Decl param");
John McCallbecb8d52010-03-10 06:48:02 +00002944 assert(!Decl->TypeForDecl && "TypeForDecl present in slow case");
Mike Stump1eb44332009-09-09 15:08:12 +00002945
Richard Smith162e1c12011-04-15 14:24:37 +00002946 if (const TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00002947 return getTypedefType(Typedef);
John McCallbecb8d52010-03-10 06:48:02 +00002948
John McCallbecb8d52010-03-10 06:48:02 +00002949 assert(!isa<TemplateTypeParmDecl>(Decl) &&
2950 "Template type parameter types are always available.");
2951
John McCall19c85762010-02-16 03:57:14 +00002952 if (const RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
Douglas Gregoref96ee02012-01-14 16:38:05 +00002953 assert(!Record->getPreviousDecl() &&
John McCallbecb8d52010-03-10 06:48:02 +00002954 "struct/union has previous declaration");
2955 assert(!NeedsInjectedClassNameType(Record));
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002956 return getRecordType(Record);
John McCall19c85762010-02-16 03:57:14 +00002957 } else if (const EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
Douglas Gregoref96ee02012-01-14 16:38:05 +00002958 assert(!Enum->getPreviousDecl() &&
John McCallbecb8d52010-03-10 06:48:02 +00002959 "enum has previous declaration");
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002960 return getEnumType(Enum);
John McCall19c85762010-02-16 03:57:14 +00002961 } else if (const UnresolvedUsingTypenameDecl *Using =
John McCalled976492009-12-04 22:46:56 +00002962 dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
John McCallf4c73712011-01-19 06:33:43 +00002963 Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using);
2964 Decl->TypeForDecl = newType;
2965 Types.push_back(newType);
Mike Stump9fdbab32009-07-31 02:02:20 +00002966 } else
John McCallbecb8d52010-03-10 06:48:02 +00002967 llvm_unreachable("TypeDecl without a type?");
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00002968
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00002969 return QualType(Decl->TypeForDecl, 0);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00002970}
2971
Reid Spencer5f016e22007-07-11 17:01:13 +00002972/// getTypedefType - Return the unique reference to the type for the
Richard Smith162e1c12011-04-15 14:24:37 +00002973/// specified typedef name decl.
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00002974QualType
Richard Smith162e1c12011-04-15 14:24:37 +00002975ASTContext::getTypedefType(const TypedefNameDecl *Decl,
2976 QualType Canonical) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00002977 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002978
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00002979 if (Canonical.isNull())
2980 Canonical = getCanonicalType(Decl->getUnderlyingType());
John McCallf4c73712011-01-19 06:33:43 +00002981 TypedefType *newType = new(*this, TypeAlignment)
John McCall6b304a02009-09-24 23:30:46 +00002982 TypedefType(Type::Typedef, Decl, Canonical);
John McCallf4c73712011-01-19 06:33:43 +00002983 Decl->TypeForDecl = newType;
2984 Types.push_back(newType);
2985 return QualType(newType, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00002986}
2987
Jay Foad4ba2a172011-01-12 09:06:06 +00002988QualType ASTContext::getRecordType(const RecordDecl *Decl) const {
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002989 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
2990
Douglas Gregoref96ee02012-01-14 16:38:05 +00002991 if (const RecordDecl *PrevDecl = Decl->getPreviousDecl())
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002992 if (PrevDecl->TypeForDecl)
2993 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
2994
John McCallf4c73712011-01-19 06:33:43 +00002995 RecordType *newType = new (*this, TypeAlignment) RecordType(Decl);
2996 Decl->TypeForDecl = newType;
2997 Types.push_back(newType);
2998 return QualType(newType, 0);
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002999}
3000
Jay Foad4ba2a172011-01-12 09:06:06 +00003001QualType ASTContext::getEnumType(const EnumDecl *Decl) const {
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00003002 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
3003
Douglas Gregoref96ee02012-01-14 16:38:05 +00003004 if (const EnumDecl *PrevDecl = Decl->getPreviousDecl())
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00003005 if (PrevDecl->TypeForDecl)
3006 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
3007
John McCallf4c73712011-01-19 06:33:43 +00003008 EnumType *newType = new (*this, TypeAlignment) EnumType(Decl);
3009 Decl->TypeForDecl = newType;
3010 Types.push_back(newType);
3011 return QualType(newType, 0);
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00003012}
3013
John McCall9d156a72011-01-06 01:58:22 +00003014QualType ASTContext::getAttributedType(AttributedType::Kind attrKind,
3015 QualType modifiedType,
3016 QualType equivalentType) {
3017 llvm::FoldingSetNodeID id;
3018 AttributedType::Profile(id, attrKind, modifiedType, equivalentType);
3019
3020 void *insertPos = 0;
3021 AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos);
3022 if (type) return QualType(type, 0);
3023
3024 QualType canon = getCanonicalType(equivalentType);
3025 type = new (*this, TypeAlignment)
3026 AttributedType(canon, attrKind, modifiedType, equivalentType);
3027
3028 Types.push_back(type);
3029 AttributedTypes.InsertNode(type, insertPos);
3030
3031 return QualType(type, 0);
3032}
3033
3034
John McCall49a832b2009-10-18 09:09:24 +00003035/// \brief Retrieve a substitution-result type.
3036QualType
3037ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm,
Jay Foad4ba2a172011-01-12 09:06:06 +00003038 QualType Replacement) const {
John McCall467b27b2009-10-22 20:10:53 +00003039 assert(Replacement.isCanonical()
John McCall49a832b2009-10-18 09:09:24 +00003040 && "replacement types must always be canonical");
3041
3042 llvm::FoldingSetNodeID ID;
3043 SubstTemplateTypeParmType::Profile(ID, Parm, Replacement);
3044 void *InsertPos = 0;
3045 SubstTemplateTypeParmType *SubstParm
3046 = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3047
3048 if (!SubstParm) {
3049 SubstParm = new (*this, TypeAlignment)
3050 SubstTemplateTypeParmType(Parm, Replacement);
3051 Types.push_back(SubstParm);
3052 SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
3053 }
3054
3055 return QualType(SubstParm, 0);
3056}
3057
Douglas Gregorc3069d62011-01-14 02:55:32 +00003058/// \brief Retrieve a
3059QualType ASTContext::getSubstTemplateTypeParmPackType(
3060 const TemplateTypeParmType *Parm,
3061 const TemplateArgument &ArgPack) {
3062#ifndef NDEBUG
3063 for (TemplateArgument::pack_iterator P = ArgPack.pack_begin(),
3064 PEnd = ArgPack.pack_end();
3065 P != PEnd; ++P) {
3066 assert(P->getKind() == TemplateArgument::Type &&"Pack contains a non-type");
3067 assert(P->getAsType().isCanonical() && "Pack contains non-canonical type");
3068 }
3069#endif
3070
3071 llvm::FoldingSetNodeID ID;
3072 SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack);
3073 void *InsertPos = 0;
3074 if (SubstTemplateTypeParmPackType *SubstParm
3075 = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos))
3076 return QualType(SubstParm, 0);
3077
3078 QualType Canon;
3079 if (!Parm->isCanonicalUnqualified()) {
3080 Canon = getCanonicalType(QualType(Parm, 0));
3081 Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon),
3082 ArgPack);
3083 SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos);
3084 }
3085
3086 SubstTemplateTypeParmPackType *SubstParm
3087 = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon,
3088 ArgPack);
3089 Types.push_back(SubstParm);
3090 SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
3091 return QualType(SubstParm, 0);
3092}
3093
Douglas Gregorfab9d672009-02-05 23:33:38 +00003094/// \brief Retrieve the template type parameter type for a template
Mike Stump1eb44332009-09-09 15:08:12 +00003095/// parameter or parameter pack with the given depth, index, and (optionally)
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003096/// name.
Mike Stump1eb44332009-09-09 15:08:12 +00003097QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003098 bool ParameterPack,
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003099 TemplateTypeParmDecl *TTPDecl) const {
Douglas Gregorfab9d672009-02-05 23:33:38 +00003100 llvm::FoldingSetNodeID ID;
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003101 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl);
Douglas Gregorfab9d672009-02-05 23:33:38 +00003102 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003103 TemplateTypeParmType *TypeParm
Douglas Gregorfab9d672009-02-05 23:33:38 +00003104 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3105
3106 if (TypeParm)
3107 return QualType(TypeParm, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00003108
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003109 if (TTPDecl) {
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003110 QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack);
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003111 TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003112
3113 TemplateTypeParmType *TypeCheck
3114 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3115 assert(!TypeCheck && "Template type parameter canonical type broken");
3116 (void)TypeCheck;
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003117 } else
John McCall6b304a02009-09-24 23:30:46 +00003118 TypeParm = new (*this, TypeAlignment)
3119 TemplateTypeParmType(Depth, Index, ParameterPack);
Douglas Gregorfab9d672009-02-05 23:33:38 +00003120
3121 Types.push_back(TypeParm);
3122 TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
3123
3124 return QualType(TypeParm, 0);
3125}
3126
John McCall3cb0ebd2010-03-10 03:28:59 +00003127TypeSourceInfo *
3128ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name,
3129 SourceLocation NameLoc,
3130 const TemplateArgumentListInfo &Args,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003131 QualType Underlying) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003132 assert(!Name.getAsDependentTemplateName() &&
3133 "No dependent template names here!");
Richard Smith3e4c6c42011-05-05 21:57:07 +00003134 QualType TST = getTemplateSpecializationType(Name, Args, Underlying);
John McCall3cb0ebd2010-03-10 03:28:59 +00003135
3136 TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
David Blaikie39e6ab42013-02-18 22:06:02 +00003137 TemplateSpecializationTypeLoc TL =
3138 DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>();
Abramo Bagnara55d23c92012-02-06 14:41:24 +00003139 TL.setTemplateKeywordLoc(SourceLocation());
John McCall3cb0ebd2010-03-10 03:28:59 +00003140 TL.setTemplateNameLoc(NameLoc);
3141 TL.setLAngleLoc(Args.getLAngleLoc());
3142 TL.setRAngleLoc(Args.getRAngleLoc());
3143 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
3144 TL.setArgLocInfo(i, Args[i].getLocInfo());
3145 return DI;
3146}
3147
Mike Stump1eb44332009-09-09 15:08:12 +00003148QualType
Douglas Gregor7532dc62009-03-30 22:58:21 +00003149ASTContext::getTemplateSpecializationType(TemplateName Template,
John McCalld5532b62009-11-23 01:53:49 +00003150 const TemplateArgumentListInfo &Args,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003151 QualType Underlying) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003152 assert(!Template.getAsDependentTemplateName() &&
3153 "No dependent template names here!");
3154
John McCalld5532b62009-11-23 01:53:49 +00003155 unsigned NumArgs = Args.size();
3156
Chris Lattner5f9e2722011-07-23 10:55:15 +00003157 SmallVector<TemplateArgument, 4> ArgVec;
John McCall833ca992009-10-29 08:12:44 +00003158 ArgVec.reserve(NumArgs);
3159 for (unsigned i = 0; i != NumArgs; ++i)
3160 ArgVec.push_back(Args[i].getArgument());
3161
John McCall31f17ec2010-04-27 00:57:59 +00003162 return getTemplateSpecializationType(Template, ArgVec.data(), NumArgs,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003163 Underlying);
John McCall833ca992009-10-29 08:12:44 +00003164}
3165
Douglas Gregorb70126a2012-02-03 17:16:23 +00003166#ifndef NDEBUG
3167static bool hasAnyPackExpansions(const TemplateArgument *Args,
3168 unsigned NumArgs) {
3169 for (unsigned I = 0; I != NumArgs; ++I)
3170 if (Args[I].isPackExpansion())
3171 return true;
3172
3173 return true;
3174}
3175#endif
3176
John McCall833ca992009-10-29 08:12:44 +00003177QualType
3178ASTContext::getTemplateSpecializationType(TemplateName Template,
Douglas Gregor7532dc62009-03-30 22:58:21 +00003179 const TemplateArgument *Args,
3180 unsigned NumArgs,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003181 QualType Underlying) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003182 assert(!Template.getAsDependentTemplateName() &&
3183 "No dependent template names here!");
Douglas Gregor0f0ea2a2011-03-03 17:04:51 +00003184 // Look through qualified template names.
3185 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3186 Template = TemplateName(QTN->getTemplateDecl());
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003187
Douglas Gregorb70126a2012-02-03 17:16:23 +00003188 bool IsTypeAlias =
Richard Smith3e4c6c42011-05-05 21:57:07 +00003189 Template.getAsTemplateDecl() &&
3190 isa<TypeAliasTemplateDecl>(Template.getAsTemplateDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00003191 QualType CanonType;
3192 if (!Underlying.isNull())
3193 CanonType = getCanonicalType(Underlying);
3194 else {
Douglas Gregorb70126a2012-02-03 17:16:23 +00003195 // We can get here with an alias template when the specialization contains
3196 // a pack expansion that does not match up with a parameter pack.
3197 assert((!IsTypeAlias || hasAnyPackExpansions(Args, NumArgs)) &&
3198 "Caller must compute aliased type");
3199 IsTypeAlias = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00003200 CanonType = getCanonicalTemplateSpecializationType(Template, Args,
3201 NumArgs);
3202 }
Douglas Gregorfc705b82009-02-26 22:19:44 +00003203
Douglas Gregor1275ae02009-07-28 23:00:59 +00003204 // Allocate the (non-canonical) template specialization type, but don't
3205 // try to unique it: these types typically have location information that
3206 // we don't unique and don't want to lose.
Richard Smith3e4c6c42011-05-05 21:57:07 +00003207 void *Mem = Allocate(sizeof(TemplateSpecializationType) +
3208 sizeof(TemplateArgument) * NumArgs +
Douglas Gregorb70126a2012-02-03 17:16:23 +00003209 (IsTypeAlias? sizeof(QualType) : 0),
John McCall6b304a02009-09-24 23:30:46 +00003210 TypeAlignment);
Mike Stump1eb44332009-09-09 15:08:12 +00003211 TemplateSpecializationType *Spec
Douglas Gregorb70126a2012-02-03 17:16:23 +00003212 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
3213 IsTypeAlias ? Underlying : QualType());
Mike Stump1eb44332009-09-09 15:08:12 +00003214
Douglas Gregor55f6b142009-02-09 18:46:07 +00003215 Types.push_back(Spec);
Mike Stump1eb44332009-09-09 15:08:12 +00003216 return QualType(Spec, 0);
Douglas Gregor55f6b142009-02-09 18:46:07 +00003217}
3218
Mike Stump1eb44332009-09-09 15:08:12 +00003219QualType
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003220ASTContext::getCanonicalTemplateSpecializationType(TemplateName Template,
3221 const TemplateArgument *Args,
Jay Foad4ba2a172011-01-12 09:06:06 +00003222 unsigned NumArgs) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003223 assert(!Template.getAsDependentTemplateName() &&
3224 "No dependent template names here!");
Richard Smith3e4c6c42011-05-05 21:57:07 +00003225
Douglas Gregor0f0ea2a2011-03-03 17:04:51 +00003226 // Look through qualified template names.
3227 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3228 Template = TemplateName(QTN->getTemplateDecl());
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003229
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003230 // Build the canonical template specialization type.
3231 TemplateName CanonTemplate = getCanonicalTemplateName(Template);
Chris Lattner5f9e2722011-07-23 10:55:15 +00003232 SmallVector<TemplateArgument, 4> CanonArgs;
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003233 CanonArgs.reserve(NumArgs);
3234 for (unsigned I = 0; I != NumArgs; ++I)
3235 CanonArgs.push_back(getCanonicalTemplateArgument(Args[I]));
3236
3237 // Determine whether this canonical template specialization type already
3238 // exists.
3239 llvm::FoldingSetNodeID ID;
3240 TemplateSpecializationType::Profile(ID, CanonTemplate,
3241 CanonArgs.data(), NumArgs, *this);
3242
3243 void *InsertPos = 0;
3244 TemplateSpecializationType *Spec
3245 = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3246
3247 if (!Spec) {
3248 // Allocate a new canonical template specialization type.
3249 void *Mem = Allocate((sizeof(TemplateSpecializationType) +
3250 sizeof(TemplateArgument) * NumArgs),
3251 TypeAlignment);
3252 Spec = new (Mem) TemplateSpecializationType(CanonTemplate,
3253 CanonArgs.data(), NumArgs,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003254 QualType(), QualType());
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003255 Types.push_back(Spec);
3256 TemplateSpecializationTypes.InsertNode(Spec, InsertPos);
3257 }
3258
3259 assert(Spec->isDependentType() &&
3260 "Non-dependent template-id type must have a canonical type");
3261 return QualType(Spec, 0);
3262}
3263
3264QualType
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003265ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword,
3266 NestedNameSpecifier *NNS,
Jay Foad4ba2a172011-01-12 09:06:06 +00003267 QualType NamedType) const {
Douglas Gregore4e5b052009-03-19 00:18:19 +00003268 llvm::FoldingSetNodeID ID;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003269 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003270
3271 void *InsertPos = 0;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003272 ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003273 if (T)
3274 return QualType(T, 0);
3275
Douglas Gregor789b1f62010-02-04 18:10:26 +00003276 QualType Canon = NamedType;
3277 if (!Canon.isCanonical()) {
3278 Canon = getCanonicalType(NamedType);
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003279 ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
3280 assert(!CheckT && "Elaborated canonical type broken");
Douglas Gregor789b1f62010-02-04 18:10:26 +00003281 (void)CheckT;
3282 }
3283
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003284 T = new (*this) ElaboratedType(Keyword, NNS, NamedType, Canon);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003285 Types.push_back(T);
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003286 ElaboratedTypes.InsertNode(T, InsertPos);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003287 return QualType(T, 0);
3288}
3289
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003290QualType
Jay Foad4ba2a172011-01-12 09:06:06 +00003291ASTContext::getParenType(QualType InnerType) const {
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003292 llvm::FoldingSetNodeID ID;
3293 ParenType::Profile(ID, InnerType);
3294
3295 void *InsertPos = 0;
3296 ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3297 if (T)
3298 return QualType(T, 0);
3299
3300 QualType Canon = InnerType;
3301 if (!Canon.isCanonical()) {
3302 Canon = getCanonicalType(InnerType);
3303 ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3304 assert(!CheckT && "Paren canonical type broken");
3305 (void)CheckT;
3306 }
3307
3308 T = new (*this) ParenType(InnerType, Canon);
3309 Types.push_back(T);
3310 ParenTypes.InsertNode(T, InsertPos);
3311 return QualType(T, 0);
3312}
3313
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003314QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword,
3315 NestedNameSpecifier *NNS,
3316 const IdentifierInfo *Name,
Jay Foad4ba2a172011-01-12 09:06:06 +00003317 QualType Canon) const {
Douglas Gregord57959a2009-03-27 23:10:48 +00003318 assert(NNS->isDependent() && "nested-name-specifier must be dependent");
3319
3320 if (Canon.isNull()) {
3321 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003322 ElaboratedTypeKeyword CanonKeyword = Keyword;
3323 if (Keyword == ETK_None)
3324 CanonKeyword = ETK_Typename;
3325
3326 if (CanonNNS != NNS || CanonKeyword != Keyword)
3327 Canon = getDependentNameType(CanonKeyword, CanonNNS, Name);
Douglas Gregord57959a2009-03-27 23:10:48 +00003328 }
3329
3330 llvm::FoldingSetNodeID ID;
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003331 DependentNameType::Profile(ID, Keyword, NNS, Name);
Douglas Gregord57959a2009-03-27 23:10:48 +00003332
3333 void *InsertPos = 0;
Douglas Gregor4714c122010-03-31 17:34:00 +00003334 DependentNameType *T
3335 = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregord57959a2009-03-27 23:10:48 +00003336 if (T)
3337 return QualType(T, 0);
3338
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003339 T = new (*this) DependentNameType(Keyword, NNS, Name, Canon);
Douglas Gregord57959a2009-03-27 23:10:48 +00003340 Types.push_back(T);
Douglas Gregor4714c122010-03-31 17:34:00 +00003341 DependentNameTypes.InsertNode(T, InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00003342 return QualType(T, 0);
Douglas Gregord57959a2009-03-27 23:10:48 +00003343}
3344
Mike Stump1eb44332009-09-09 15:08:12 +00003345QualType
John McCall33500952010-06-11 00:33:02 +00003346ASTContext::getDependentTemplateSpecializationType(
3347 ElaboratedTypeKeyword Keyword,
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003348 NestedNameSpecifier *NNS,
John McCall33500952010-06-11 00:33:02 +00003349 const IdentifierInfo *Name,
Jay Foad4ba2a172011-01-12 09:06:06 +00003350 const TemplateArgumentListInfo &Args) const {
John McCall33500952010-06-11 00:33:02 +00003351 // TODO: avoid this copy
Chris Lattner5f9e2722011-07-23 10:55:15 +00003352 SmallVector<TemplateArgument, 16> ArgCopy;
John McCall33500952010-06-11 00:33:02 +00003353 for (unsigned I = 0, E = Args.size(); I != E; ++I)
3354 ArgCopy.push_back(Args[I].getArgument());
3355 return getDependentTemplateSpecializationType(Keyword, NNS, Name,
3356 ArgCopy.size(),
3357 ArgCopy.data());
3358}
3359
3360QualType
3361ASTContext::getDependentTemplateSpecializationType(
3362 ElaboratedTypeKeyword Keyword,
3363 NestedNameSpecifier *NNS,
3364 const IdentifierInfo *Name,
3365 unsigned NumArgs,
Jay Foad4ba2a172011-01-12 09:06:06 +00003366 const TemplateArgument *Args) const {
Douglas Gregoraa2187d2011-02-28 00:04:36 +00003367 assert((!NNS || NNS->isDependent()) &&
3368 "nested-name-specifier must be dependent");
Douglas Gregor17343172009-04-01 00:28:59 +00003369
Douglas Gregor789b1f62010-02-04 18:10:26 +00003370 llvm::FoldingSetNodeID ID;
John McCall33500952010-06-11 00:33:02 +00003371 DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS,
3372 Name, NumArgs, Args);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003373
3374 void *InsertPos = 0;
John McCall33500952010-06-11 00:33:02 +00003375 DependentTemplateSpecializationType *T
3376 = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003377 if (T)
3378 return QualType(T, 0);
3379
John McCall33500952010-06-11 00:33:02 +00003380 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003381
John McCall33500952010-06-11 00:33:02 +00003382 ElaboratedTypeKeyword CanonKeyword = Keyword;
3383 if (Keyword == ETK_None) CanonKeyword = ETK_Typename;
3384
3385 bool AnyNonCanonArgs = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003386 SmallVector<TemplateArgument, 16> CanonArgs(NumArgs);
John McCall33500952010-06-11 00:33:02 +00003387 for (unsigned I = 0; I != NumArgs; ++I) {
3388 CanonArgs[I] = getCanonicalTemplateArgument(Args[I]);
3389 if (!CanonArgs[I].structurallyEquals(Args[I]))
3390 AnyNonCanonArgs = true;
Douglas Gregor17343172009-04-01 00:28:59 +00003391 }
3392
John McCall33500952010-06-11 00:33:02 +00003393 QualType Canon;
3394 if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) {
3395 Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS,
3396 Name, NumArgs,
3397 CanonArgs.data());
3398
3399 // Find the insert position again.
3400 DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3401 }
3402
3403 void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) +
3404 sizeof(TemplateArgument) * NumArgs),
3405 TypeAlignment);
John McCallef990012010-06-11 11:07:21 +00003406 T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS,
John McCall33500952010-06-11 00:33:02 +00003407 Name, NumArgs, Args, Canon);
Douglas Gregor17343172009-04-01 00:28:59 +00003408 Types.push_back(T);
John McCall33500952010-06-11 00:33:02 +00003409 DependentTemplateSpecializationTypes.InsertNode(T, InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00003410 return QualType(T, 0);
Douglas Gregor17343172009-04-01 00:28:59 +00003411}
3412
Douglas Gregorcded4f62011-01-14 17:04:44 +00003413QualType ASTContext::getPackExpansionType(QualType Pattern,
David Blaikiedc84cd52013-02-20 22:23:23 +00003414 Optional<unsigned> NumExpansions) {
Douglas Gregor7536dd52010-12-20 02:24:11 +00003415 llvm::FoldingSetNodeID ID;
Douglas Gregorcded4f62011-01-14 17:04:44 +00003416 PackExpansionType::Profile(ID, Pattern, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00003417
3418 assert(Pattern->containsUnexpandedParameterPack() &&
3419 "Pack expansions must expand one or more parameter packs");
3420 void *InsertPos = 0;
3421 PackExpansionType *T
3422 = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3423 if (T)
3424 return QualType(T, 0);
3425
3426 QualType Canon;
3427 if (!Pattern.isCanonical()) {
Richard Smithd8672ef2012-07-16 00:20:35 +00003428 Canon = getCanonicalType(Pattern);
3429 // The canonical type might not contain an unexpanded parameter pack, if it
3430 // contains an alias template specialization which ignores one of its
3431 // parameters.
3432 if (Canon->containsUnexpandedParameterPack()) {
3433 Canon = getPackExpansionType(getCanonicalType(Pattern), NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00003434
Richard Smithd8672ef2012-07-16 00:20:35 +00003435 // Find the insert position again, in case we inserted an element into
3436 // PackExpansionTypes and invalidated our insert position.
3437 PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3438 }
Douglas Gregor7536dd52010-12-20 02:24:11 +00003439 }
3440
Douglas Gregorcded4f62011-01-14 17:04:44 +00003441 T = new (*this) PackExpansionType(Pattern, Canon, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00003442 Types.push_back(T);
3443 PackExpansionTypes.InsertNode(T, InsertPos);
3444 return QualType(T, 0);
3445}
3446
Chris Lattner88cb27a2008-04-07 04:56:42 +00003447/// CmpProtocolNames - Comparison predicate for sorting protocols
3448/// alphabetically.
3449static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
3450 const ObjCProtocolDecl *RHS) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +00003451 return LHS->getDeclName() < RHS->getDeclName();
Chris Lattner88cb27a2008-04-07 04:56:42 +00003452}
3453
John McCallc12c5bb2010-05-15 11:32:37 +00003454static bool areSortedAndUniqued(ObjCProtocolDecl * const *Protocols,
John McCall54e14c42009-10-22 22:37:11 +00003455 unsigned NumProtocols) {
3456 if (NumProtocols == 0) return true;
3457
Douglas Gregor61cc2962012-01-02 02:00:30 +00003458 if (Protocols[0]->getCanonicalDecl() != Protocols[0])
3459 return false;
3460
John McCall54e14c42009-10-22 22:37:11 +00003461 for (unsigned i = 1; i != NumProtocols; ++i)
Douglas Gregor61cc2962012-01-02 02:00:30 +00003462 if (!CmpProtocolNames(Protocols[i-1], Protocols[i]) ||
3463 Protocols[i]->getCanonicalDecl() != Protocols[i])
John McCall54e14c42009-10-22 22:37:11 +00003464 return false;
3465 return true;
3466}
3467
3468static void SortAndUniqueProtocols(ObjCProtocolDecl **Protocols,
Chris Lattner88cb27a2008-04-07 04:56:42 +00003469 unsigned &NumProtocols) {
3470 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
Mike Stump1eb44332009-09-09 15:08:12 +00003471
Chris Lattner88cb27a2008-04-07 04:56:42 +00003472 // Sort protocols, keyed by name.
3473 std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
3474
Douglas Gregor61cc2962012-01-02 02:00:30 +00003475 // Canonicalize.
3476 for (unsigned I = 0, N = NumProtocols; I != N; ++I)
3477 Protocols[I] = Protocols[I]->getCanonicalDecl();
3478
Chris Lattner88cb27a2008-04-07 04:56:42 +00003479 // Remove duplicates.
3480 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
3481 NumProtocols = ProtocolsEnd-Protocols;
3482}
3483
John McCallc12c5bb2010-05-15 11:32:37 +00003484QualType ASTContext::getObjCObjectType(QualType BaseType,
3485 ObjCProtocolDecl * const *Protocols,
Jay Foad4ba2a172011-01-12 09:06:06 +00003486 unsigned NumProtocols) const {
John McCallc12c5bb2010-05-15 11:32:37 +00003487 // If the base type is an interface and there aren't any protocols
3488 // to add, then the interface type will do just fine.
3489 if (!NumProtocols && isa<ObjCInterfaceType>(BaseType))
3490 return BaseType;
3491
3492 // Look in the folding set for an existing type.
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003493 llvm::FoldingSetNodeID ID;
John McCallc12c5bb2010-05-15 11:32:37 +00003494 ObjCObjectTypeImpl::Profile(ID, BaseType, Protocols, NumProtocols);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003495 void *InsertPos = 0;
John McCallc12c5bb2010-05-15 11:32:37 +00003496 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
3497 return QualType(QT, 0);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003498
John McCallc12c5bb2010-05-15 11:32:37 +00003499 // Build the canonical type, which has the canonical base type and
3500 // a sorted-and-uniqued list of protocols.
John McCall54e14c42009-10-22 22:37:11 +00003501 QualType Canonical;
John McCallc12c5bb2010-05-15 11:32:37 +00003502 bool ProtocolsSorted = areSortedAndUniqued(Protocols, NumProtocols);
3503 if (!ProtocolsSorted || !BaseType.isCanonical()) {
3504 if (!ProtocolsSorted) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00003505 SmallVector<ObjCProtocolDecl*, 8> Sorted(Protocols,
Benjamin Kramer02379412010-04-27 17:12:11 +00003506 Protocols + NumProtocols);
John McCall54e14c42009-10-22 22:37:11 +00003507 unsigned UniqueCount = NumProtocols;
3508
John McCall54e14c42009-10-22 22:37:11 +00003509 SortAndUniqueProtocols(&Sorted[0], UniqueCount);
John McCallc12c5bb2010-05-15 11:32:37 +00003510 Canonical = getObjCObjectType(getCanonicalType(BaseType),
3511 &Sorted[0], UniqueCount);
John McCall54e14c42009-10-22 22:37:11 +00003512 } else {
John McCallc12c5bb2010-05-15 11:32:37 +00003513 Canonical = getObjCObjectType(getCanonicalType(BaseType),
3514 Protocols, NumProtocols);
John McCall54e14c42009-10-22 22:37:11 +00003515 }
3516
3517 // Regenerate InsertPos.
John McCallc12c5bb2010-05-15 11:32:37 +00003518 ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos);
3519 }
3520
3521 unsigned Size = sizeof(ObjCObjectTypeImpl);
3522 Size += NumProtocols * sizeof(ObjCProtocolDecl *);
3523 void *Mem = Allocate(Size, TypeAlignment);
3524 ObjCObjectTypeImpl *T =
3525 new (Mem) ObjCObjectTypeImpl(Canonical, BaseType, Protocols, NumProtocols);
3526
3527 Types.push_back(T);
3528 ObjCObjectTypes.InsertNode(T, InsertPos);
3529 return QualType(T, 0);
3530}
3531
3532/// getObjCObjectPointerType - Return a ObjCObjectPointerType type for
3533/// the given object type.
Jay Foad4ba2a172011-01-12 09:06:06 +00003534QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const {
John McCallc12c5bb2010-05-15 11:32:37 +00003535 llvm::FoldingSetNodeID ID;
3536 ObjCObjectPointerType::Profile(ID, ObjectT);
3537
3538 void *InsertPos = 0;
3539 if (ObjCObjectPointerType *QT =
3540 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3541 return QualType(QT, 0);
3542
3543 // Find the canonical object type.
3544 QualType Canonical;
3545 if (!ObjectT.isCanonical()) {
3546 Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT));
3547
3548 // Regenerate InsertPos.
John McCall54e14c42009-10-22 22:37:11 +00003549 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3550 }
3551
Douglas Gregorfd6a0882010-02-08 22:59:26 +00003552 // No match.
John McCallc12c5bb2010-05-15 11:32:37 +00003553 void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment);
3554 ObjCObjectPointerType *QType =
3555 new (Mem) ObjCObjectPointerType(Canonical, ObjectT);
Mike Stump1eb44332009-09-09 15:08:12 +00003556
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003557 Types.push_back(QType);
3558 ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
John McCallc12c5bb2010-05-15 11:32:37 +00003559 return QualType(QType, 0);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003560}
Chris Lattner88cb27a2008-04-07 04:56:42 +00003561
Douglas Gregordeacbdc2010-08-11 12:19:30 +00003562/// getObjCInterfaceType - Return the unique reference to the type for the
3563/// specified ObjC interface decl. The list of protocols is optional.
Douglas Gregor0af55012011-12-16 03:12:41 +00003564QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl,
3565 ObjCInterfaceDecl *PrevDecl) const {
Douglas Gregordeacbdc2010-08-11 12:19:30 +00003566 if (Decl->TypeForDecl)
3567 return QualType(Decl->TypeForDecl, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00003568
Douglas Gregor0af55012011-12-16 03:12:41 +00003569 if (PrevDecl) {
3570 assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl");
3571 Decl->TypeForDecl = PrevDecl->TypeForDecl;
3572 return QualType(PrevDecl->TypeForDecl, 0);
3573 }
3574
Douglas Gregor8d2dbbf2011-12-16 16:34:57 +00003575 // Prefer the definition, if there is one.
3576 if (const ObjCInterfaceDecl *Def = Decl->getDefinition())
3577 Decl = Def;
3578
Douglas Gregordeacbdc2010-08-11 12:19:30 +00003579 void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment);
3580 ObjCInterfaceType *T = new (Mem) ObjCInterfaceType(Decl);
3581 Decl->TypeForDecl = T;
3582 Types.push_back(T);
3583 return QualType(T, 0);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00003584}
3585
Douglas Gregor72564e72009-02-26 23:50:07 +00003586/// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique
3587/// TypeOfExprType AST's (since expression's are never shared). For example,
Steve Naroff9752f252007-08-01 18:02:17 +00003588/// multiple declarations that refer to "typeof(x)" all contain different
Mike Stump1eb44332009-09-09 15:08:12 +00003589/// DeclRefExpr's. This doesn't effect the type checker, since it operates
Steve Naroff9752f252007-08-01 18:02:17 +00003590/// on canonical type's (which are always unique).
Jay Foad4ba2a172011-01-12 09:06:06 +00003591QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const {
Douglas Gregordd0257c2009-07-08 00:03:05 +00003592 TypeOfExprType *toe;
Douglas Gregorb1975722009-07-30 23:18:24 +00003593 if (tofExpr->isTypeDependent()) {
3594 llvm::FoldingSetNodeID ID;
3595 DependentTypeOfExprType::Profile(ID, *this, tofExpr);
Mike Stump1eb44332009-09-09 15:08:12 +00003596
Douglas Gregorb1975722009-07-30 23:18:24 +00003597 void *InsertPos = 0;
3598 DependentTypeOfExprType *Canon
3599 = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos);
3600 if (Canon) {
3601 // We already have a "canonical" version of an identical, dependent
3602 // typeof(expr) type. Use that as our canonical type.
John McCall6b304a02009-09-24 23:30:46 +00003603 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr,
Douglas Gregorb1975722009-07-30 23:18:24 +00003604 QualType((TypeOfExprType*)Canon, 0));
Chad Rosier30601782011-08-17 23:08:45 +00003605 } else {
Douglas Gregorb1975722009-07-30 23:18:24 +00003606 // Build a new, canonical typeof(expr) type.
John McCall6b304a02009-09-24 23:30:46 +00003607 Canon
3608 = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr);
Douglas Gregorb1975722009-07-30 23:18:24 +00003609 DependentTypeOfExprTypes.InsertNode(Canon, InsertPos);
3610 toe = Canon;
3611 }
3612 } else {
Douglas Gregordd0257c2009-07-08 00:03:05 +00003613 QualType Canonical = getCanonicalType(tofExpr->getType());
John McCall6b304a02009-09-24 23:30:46 +00003614 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical);
Douglas Gregordd0257c2009-07-08 00:03:05 +00003615 }
Steve Naroff9752f252007-08-01 18:02:17 +00003616 Types.push_back(toe);
3617 return QualType(toe, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00003618}
3619
Steve Naroff9752f252007-08-01 18:02:17 +00003620/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
3621/// TypeOfType AST's. The only motivation to unique these nodes would be
3622/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
Mike Stump1eb44332009-09-09 15:08:12 +00003623/// an issue. This doesn't effect the type checker, since it operates
Steve Naroff9752f252007-08-01 18:02:17 +00003624/// on canonical type's (which are always unique).
Jay Foad4ba2a172011-01-12 09:06:06 +00003625QualType ASTContext::getTypeOfType(QualType tofType) const {
Chris Lattnerf52ab252008-04-06 22:59:24 +00003626 QualType Canonical = getCanonicalType(tofType);
John McCall6b304a02009-09-24 23:30:46 +00003627 TypeOfType *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical);
Steve Naroff9752f252007-08-01 18:02:17 +00003628 Types.push_back(tot);
3629 return QualType(tot, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00003630}
3631
Anders Carlsson60a9a2a2009-06-24 21:24:56 +00003632
Anders Carlsson395b4752009-06-24 19:06:50 +00003633/// getDecltypeType - Unlike many "get<Type>" functions, we don't unique
3634/// DecltypeType AST's. The only motivation to unique these nodes would be
3635/// memory savings. Since decltype(t) is fairly uncommon, space shouldn't be
Mike Stump1eb44332009-09-09 15:08:12 +00003636/// an issue. This doesn't effect the type checker, since it operates
David Blaikie39e02032011-11-06 22:28:03 +00003637/// on canonical types (which are always unique).
Douglas Gregorf8af9822012-02-12 18:42:33 +00003638QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const {
Douglas Gregordd0257c2009-07-08 00:03:05 +00003639 DecltypeType *dt;
Douglas Gregor561f8122011-07-01 01:22:09 +00003640
3641 // C++0x [temp.type]p2:
3642 // If an expression e involves a template parameter, decltype(e) denotes a
3643 // unique dependent type. Two such decltype-specifiers refer to the same
3644 // type only if their expressions are equivalent (14.5.6.1).
3645 if (e->isInstantiationDependent()) {
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003646 llvm::FoldingSetNodeID ID;
3647 DependentDecltypeType::Profile(ID, *this, e);
Mike Stump1eb44332009-09-09 15:08:12 +00003648
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003649 void *InsertPos = 0;
3650 DependentDecltypeType *Canon
3651 = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos);
3652 if (Canon) {
3653 // We already have a "canonical" version of an equivalent, dependent
3654 // decltype type. Use that as our canonical type.
Richard Smith0d729102012-08-13 20:08:14 +00003655 dt = new (*this, TypeAlignment) DecltypeType(e, UnderlyingType,
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003656 QualType((DecltypeType*)Canon, 0));
Chad Rosier30601782011-08-17 23:08:45 +00003657 } else {
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003658 // Build a new, canonical typeof(expr) type.
John McCall6b304a02009-09-24 23:30:46 +00003659 Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e);
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003660 DependentDecltypeTypes.InsertNode(Canon, InsertPos);
3661 dt = Canon;
3662 }
3663 } else {
Douglas Gregorf8af9822012-02-12 18:42:33 +00003664 dt = new (*this, TypeAlignment) DecltypeType(e, UnderlyingType,
3665 getCanonicalType(UnderlyingType));
Douglas Gregordd0257c2009-07-08 00:03:05 +00003666 }
Anders Carlsson395b4752009-06-24 19:06:50 +00003667 Types.push_back(dt);
3668 return QualType(dt, 0);
3669}
3670
Sean Huntca63c202011-05-24 22:41:36 +00003671/// getUnaryTransformationType - We don't unique these, since the memory
3672/// savings are minimal and these are rare.
3673QualType ASTContext::getUnaryTransformType(QualType BaseType,
3674 QualType UnderlyingType,
3675 UnaryTransformType::UTTKind Kind)
3676 const {
3677 UnaryTransformType *Ty =
Douglas Gregor69d97752011-05-25 17:51:54 +00003678 new (*this, TypeAlignment) UnaryTransformType (BaseType, UnderlyingType,
3679 Kind,
3680 UnderlyingType->isDependentType() ?
Peter Collingbourne12fc4b02012-03-05 16:02:06 +00003681 QualType() : getCanonicalType(UnderlyingType));
Sean Huntca63c202011-05-24 22:41:36 +00003682 Types.push_back(Ty);
3683 return QualType(Ty, 0);
3684}
3685
Richard Smith60e141e2013-05-04 07:00:32 +00003686/// getAutoType - Return the uniqued reference to the 'auto' type which has been
3687/// deduced to the given type, or to the canonical undeduced 'auto' type, or the
3688/// canonical deduced-but-dependent 'auto' type.
3689QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto,
Richard Smithdc7a4f52013-04-30 13:56:41 +00003690 bool IsDependent) const {
Richard Smith60e141e2013-05-04 07:00:32 +00003691 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent)
3692 return getAutoDeductType();
3693
3694 // Look in the folding set for an existing type.
Richard Smith483b9f32011-02-21 20:05:19 +00003695 void *InsertPos = 0;
Richard Smith60e141e2013-05-04 07:00:32 +00003696 llvm::FoldingSetNodeID ID;
3697 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent);
3698 if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos))
3699 return QualType(AT, 0);
Richard Smith483b9f32011-02-21 20:05:19 +00003700
Richard Smitha2c36462013-04-26 16:15:35 +00003701 AutoType *AT = new (*this, TypeAlignment) AutoType(DeducedType,
Richard Smithdc7a4f52013-04-30 13:56:41 +00003702 IsDecltypeAuto,
3703 IsDependent);
Richard Smith483b9f32011-02-21 20:05:19 +00003704 Types.push_back(AT);
3705 if (InsertPos)
3706 AutoTypes.InsertNode(AT, InsertPos);
3707 return QualType(AT, 0);
Richard Smith34b41d92011-02-20 03:19:35 +00003708}
3709
Eli Friedmanb001de72011-10-06 23:00:33 +00003710/// getAtomicType - Return the uniqued reference to the atomic type for
3711/// the given value type.
3712QualType ASTContext::getAtomicType(QualType T) const {
3713 // Unique pointers, to guarantee there is only one pointer of a particular
3714 // structure.
3715 llvm::FoldingSetNodeID ID;
3716 AtomicType::Profile(ID, T);
3717
3718 void *InsertPos = 0;
3719 if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos))
3720 return QualType(AT, 0);
3721
3722 // If the atomic value type isn't canonical, this won't be a canonical type
3723 // either, so fill in the canonical type field.
3724 QualType Canonical;
3725 if (!T.isCanonical()) {
3726 Canonical = getAtomicType(getCanonicalType(T));
3727
3728 // Get the new insert position for the node we care about.
3729 AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos);
3730 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
3731 }
3732 AtomicType *New = new (*this, TypeAlignment) AtomicType(T, Canonical);
3733 Types.push_back(New);
3734 AtomicTypes.InsertNode(New, InsertPos);
3735 return QualType(New, 0);
3736}
3737
Richard Smithad762fc2011-04-14 22:09:26 +00003738/// getAutoDeductType - Get type pattern for deducing against 'auto'.
3739QualType ASTContext::getAutoDeductType() const {
3740 if (AutoDeductTy.isNull())
Richard Smith60e141e2013-05-04 07:00:32 +00003741 AutoDeductTy = QualType(
3742 new (*this, TypeAlignment) AutoType(QualType(), /*decltype(auto)*/false,
3743 /*dependent*/false),
3744 0);
Richard Smithad762fc2011-04-14 22:09:26 +00003745 return AutoDeductTy;
3746}
3747
3748/// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'.
3749QualType ASTContext::getAutoRRefDeductType() const {
3750 if (AutoRRefDeductTy.isNull())
3751 AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType());
3752 assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern");
3753 return AutoRRefDeductTy;
3754}
3755
Reid Spencer5f016e22007-07-11 17:01:13 +00003756/// getTagDeclType - Return the unique reference to the type for the
3757/// specified TagDecl (struct/union/class/enum) decl.
Jay Foad4ba2a172011-01-12 09:06:06 +00003758QualType ASTContext::getTagDeclType(const TagDecl *Decl) const {
Ted Kremenekd778f882007-11-26 21:16:01 +00003759 assert (Decl);
Mike Stumpe607ed02009-08-07 18:05:12 +00003760 // FIXME: What is the design on getTagDeclType when it requires casting
3761 // away const? mutable?
3762 return getTypeDeclType(const_cast<TagDecl*>(Decl));
Reid Spencer5f016e22007-07-11 17:01:13 +00003763}
3764
Mike Stump1eb44332009-09-09 15:08:12 +00003765/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
3766/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
3767/// needs to agree with the definition in <stddef.h>.
Anders Carlssona3ccda52009-12-12 00:26:23 +00003768CanQualType ASTContext::getSizeType() const {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003769 return getFromTargetType(Target->getSizeType());
Reid Spencer5f016e22007-07-11 17:01:13 +00003770}
3771
Hans Wennborg29e97cb2011-10-27 08:29:09 +00003772/// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5).
3773CanQualType ASTContext::getIntMaxType() const {
3774 return getFromTargetType(Target->getIntMaxType());
3775}
3776
3777/// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5).
3778CanQualType ASTContext::getUIntMaxType() const {
3779 return getFromTargetType(Target->getUIntMaxType());
3780}
3781
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00003782/// getSignedWCharType - Return the type of "signed wchar_t".
3783/// Used when in C++, as a GCC extension.
3784QualType ASTContext::getSignedWCharType() const {
3785 // FIXME: derive from "Target" ?
3786 return WCharTy;
3787}
3788
3789/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
3790/// Used when in C++, as a GCC extension.
3791QualType ASTContext::getUnsignedWCharType() const {
3792 // FIXME: derive from "Target" ?
3793 return UnsignedIntTy;
3794}
3795
Enea Zaffanella9677eb82013-01-26 17:08:37 +00003796QualType ASTContext::getIntPtrType() const {
3797 return getFromTargetType(Target->getIntPtrType());
3798}
3799
3800QualType ASTContext::getUIntPtrType() const {
3801 return getCorrespondingUnsignedType(getIntPtrType());
3802}
3803
Hans Wennborg29e97cb2011-10-27 08:29:09 +00003804/// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17)
Chris Lattner8b9023b2007-07-13 03:05:23 +00003805/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
3806QualType ASTContext::getPointerDiffType() const {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003807 return getFromTargetType(Target->getPtrDiffType(0));
Chris Lattner8b9023b2007-07-13 03:05:23 +00003808}
3809
Eli Friedman6902e412012-11-27 02:58:24 +00003810/// \brief Return the unique type for "pid_t" defined in
3811/// <sys/types.h>. We need this to compute the correct type for vfork().
3812QualType ASTContext::getProcessIDType() const {
3813 return getFromTargetType(Target->getProcessIDType());
3814}
3815
Chris Lattnere6327742008-04-02 05:18:44 +00003816//===----------------------------------------------------------------------===//
3817// Type Operators
3818//===----------------------------------------------------------------------===//
3819
Jay Foad4ba2a172011-01-12 09:06:06 +00003820CanQualType ASTContext::getCanonicalParamType(QualType T) const {
John McCall54e14c42009-10-22 22:37:11 +00003821 // Push qualifiers into arrays, and then discard any remaining
3822 // qualifiers.
3823 T = getCanonicalType(T);
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00003824 T = getVariableArrayDecayedType(T);
John McCall54e14c42009-10-22 22:37:11 +00003825 const Type *Ty = T.getTypePtr();
John McCall54e14c42009-10-22 22:37:11 +00003826 QualType Result;
3827 if (isa<ArrayType>(Ty)) {
3828 Result = getArrayDecayedType(QualType(Ty,0));
3829 } else if (isa<FunctionType>(Ty)) {
3830 Result = getPointerType(QualType(Ty, 0));
3831 } else {
3832 Result = QualType(Ty, 0);
3833 }
3834
3835 return CanQualType::CreateUnsafe(Result);
3836}
3837
John McCall62c28c82011-01-18 07:41:22 +00003838QualType ASTContext::getUnqualifiedArrayType(QualType type,
3839 Qualifiers &quals) {
3840 SplitQualType splitType = type.getSplitUnqualifiedType();
3841
3842 // FIXME: getSplitUnqualifiedType() actually walks all the way to
3843 // the unqualified desugared type and then drops it on the floor.
3844 // We then have to strip that sugar back off with
3845 // getUnqualifiedDesugaredType(), which is silly.
3846 const ArrayType *AT =
John McCall200fa532012-02-08 00:46:36 +00003847 dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType());
John McCall62c28c82011-01-18 07:41:22 +00003848
3849 // If we don't have an array, just use the results in splitType.
Douglas Gregor9dadd942010-05-17 18:45:21 +00003850 if (!AT) {
John McCall200fa532012-02-08 00:46:36 +00003851 quals = splitType.Quals;
3852 return QualType(splitType.Ty, 0);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003853 }
3854
John McCall62c28c82011-01-18 07:41:22 +00003855 // Otherwise, recurse on the array's element type.
3856 QualType elementType = AT->getElementType();
3857 QualType unqualElementType = getUnqualifiedArrayType(elementType, quals);
3858
3859 // If that didn't change the element type, AT has no qualifiers, so we
3860 // can just use the results in splitType.
3861 if (elementType == unqualElementType) {
3862 assert(quals.empty()); // from the recursive call
John McCall200fa532012-02-08 00:46:36 +00003863 quals = splitType.Quals;
3864 return QualType(splitType.Ty, 0);
John McCall62c28c82011-01-18 07:41:22 +00003865 }
3866
3867 // Otherwise, add in the qualifiers from the outermost type, then
3868 // build the type back up.
John McCall200fa532012-02-08 00:46:36 +00003869 quals.addConsistentQualifiers(splitType.Quals);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003870
Douglas Gregor9dadd942010-05-17 18:45:21 +00003871 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
John McCall62c28c82011-01-18 07:41:22 +00003872 return getConstantArrayType(unqualElementType, CAT->getSize(),
Chandler Carruth28e318c2009-12-29 07:16:59 +00003873 CAT->getSizeModifier(), 0);
3874 }
3875
Douglas Gregor9dadd942010-05-17 18:45:21 +00003876 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
John McCall62c28c82011-01-18 07:41:22 +00003877 return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003878 }
3879
Douglas Gregor9dadd942010-05-17 18:45:21 +00003880 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(AT)) {
John McCall62c28c82011-01-18 07:41:22 +00003881 return getVariableArrayType(unqualElementType,
John McCall3fa5cae2010-10-26 07:05:15 +00003882 VAT->getSizeExpr(),
Douglas Gregor9dadd942010-05-17 18:45:21 +00003883 VAT->getSizeModifier(),
3884 VAT->getIndexTypeCVRQualifiers(),
3885 VAT->getBracketsRange());
3886 }
3887
3888 const DependentSizedArrayType *DSAT = cast<DependentSizedArrayType>(AT);
John McCall62c28c82011-01-18 07:41:22 +00003889 return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(),
Chandler Carruth28e318c2009-12-29 07:16:59 +00003890 DSAT->getSizeModifier(), 0,
3891 SourceRange());
3892}
3893
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003894/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
3895/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
3896/// they point to and return true. If T1 and T2 aren't pointer types
3897/// or pointer-to-member types, or if they are not similar at this
3898/// level, returns false and leaves T1 and T2 unchanged. Top-level
3899/// qualifiers on T1 and T2 are ignored. This function will typically
3900/// be called in a loop that successively "unwraps" pointer and
3901/// pointer-to-member types to compare them at each level.
3902bool ASTContext::UnwrapSimilarPointerTypes(QualType &T1, QualType &T2) {
3903 const PointerType *T1PtrType = T1->getAs<PointerType>(),
3904 *T2PtrType = T2->getAs<PointerType>();
3905 if (T1PtrType && T2PtrType) {
3906 T1 = T1PtrType->getPointeeType();
3907 T2 = T2PtrType->getPointeeType();
3908 return true;
3909 }
3910
3911 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
3912 *T2MPType = T2->getAs<MemberPointerType>();
3913 if (T1MPType && T2MPType &&
3914 hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0),
3915 QualType(T2MPType->getClass(), 0))) {
3916 T1 = T1MPType->getPointeeType();
3917 T2 = T2MPType->getPointeeType();
3918 return true;
3919 }
3920
David Blaikie4e4d0842012-03-11 07:00:24 +00003921 if (getLangOpts().ObjC1) {
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003922 const ObjCObjectPointerType *T1OPType = T1->getAs<ObjCObjectPointerType>(),
3923 *T2OPType = T2->getAs<ObjCObjectPointerType>();
3924 if (T1OPType && T2OPType) {
3925 T1 = T1OPType->getPointeeType();
3926 T2 = T2OPType->getPointeeType();
3927 return true;
3928 }
3929 }
3930
3931 // FIXME: Block pointers, too?
3932
3933 return false;
3934}
3935
Jay Foad4ba2a172011-01-12 09:06:06 +00003936DeclarationNameInfo
3937ASTContext::getNameForTemplate(TemplateName Name,
3938 SourceLocation NameLoc) const {
John McCall14606042011-06-30 08:33:18 +00003939 switch (Name.getKind()) {
3940 case TemplateName::QualifiedTemplate:
3941 case TemplateName::Template:
Abramo Bagnara25777432010-08-11 22:01:17 +00003942 // DNInfo work in progress: CHECKME: what about DNLoc?
John McCall14606042011-06-30 08:33:18 +00003943 return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(),
3944 NameLoc);
Abramo Bagnara25777432010-08-11 22:01:17 +00003945
John McCall14606042011-06-30 08:33:18 +00003946 case TemplateName::OverloadedTemplate: {
3947 OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate();
3948 // DNInfo work in progress: CHECKME: what about DNLoc?
3949 return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc);
3950 }
3951
3952 case TemplateName::DependentTemplate: {
3953 DependentTemplateName *DTN = Name.getAsDependentTemplateName();
Abramo Bagnara25777432010-08-11 22:01:17 +00003954 DeclarationName DName;
John McCall80ad16f2009-11-24 18:42:40 +00003955 if (DTN->isIdentifier()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00003956 DName = DeclarationNames.getIdentifier(DTN->getIdentifier());
3957 return DeclarationNameInfo(DName, NameLoc);
John McCall80ad16f2009-11-24 18:42:40 +00003958 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00003959 DName = DeclarationNames.getCXXOperatorName(DTN->getOperator());
3960 // DNInfo work in progress: FIXME: source locations?
3961 DeclarationNameLoc DNLoc;
3962 DNLoc.CXXOperatorName.BeginOpNameLoc = SourceLocation().getRawEncoding();
3963 DNLoc.CXXOperatorName.EndOpNameLoc = SourceLocation().getRawEncoding();
3964 return DeclarationNameInfo(DName, NameLoc, DNLoc);
John McCall80ad16f2009-11-24 18:42:40 +00003965 }
3966 }
3967
John McCall14606042011-06-30 08:33:18 +00003968 case TemplateName::SubstTemplateTemplateParm: {
3969 SubstTemplateTemplateParmStorage *subst
3970 = Name.getAsSubstTemplateTemplateParm();
3971 return DeclarationNameInfo(subst->getParameter()->getDeclName(),
3972 NameLoc);
3973 }
3974
3975 case TemplateName::SubstTemplateTemplateParmPack: {
3976 SubstTemplateTemplateParmPackStorage *subst
3977 = Name.getAsSubstTemplateTemplateParmPack();
3978 return DeclarationNameInfo(subst->getParameterPack()->getDeclName(),
3979 NameLoc);
3980 }
3981 }
3982
3983 llvm_unreachable("bad template name kind!");
John McCall80ad16f2009-11-24 18:42:40 +00003984}
3985
Jay Foad4ba2a172011-01-12 09:06:06 +00003986TemplateName ASTContext::getCanonicalTemplateName(TemplateName Name) const {
John McCall14606042011-06-30 08:33:18 +00003987 switch (Name.getKind()) {
3988 case TemplateName::QualifiedTemplate:
3989 case TemplateName::Template: {
3990 TemplateDecl *Template = Name.getAsTemplateDecl();
Douglas Gregor3e1274f2010-06-16 21:09:37 +00003991 if (TemplateTemplateParmDecl *TTP
John McCall14606042011-06-30 08:33:18 +00003992 = dyn_cast<TemplateTemplateParmDecl>(Template))
Douglas Gregor3e1274f2010-06-16 21:09:37 +00003993 Template = getCanonicalTemplateTemplateParmDecl(TTP);
3994
3995 // The canonical template name is the canonical template declaration.
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00003996 return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl()));
Douglas Gregor3e1274f2010-06-16 21:09:37 +00003997 }
Douglas Gregor25a3ef72009-05-07 06:41:52 +00003998
John McCall14606042011-06-30 08:33:18 +00003999 case TemplateName::OverloadedTemplate:
4000 llvm_unreachable("cannot canonicalize overloaded template");
Mike Stump1eb44332009-09-09 15:08:12 +00004001
John McCall14606042011-06-30 08:33:18 +00004002 case TemplateName::DependentTemplate: {
4003 DependentTemplateName *DTN = Name.getAsDependentTemplateName();
4004 assert(DTN && "Non-dependent template names must refer to template decls.");
4005 return DTN->CanonicalTemplateName;
4006 }
4007
4008 case TemplateName::SubstTemplateTemplateParm: {
4009 SubstTemplateTemplateParmStorage *subst
4010 = Name.getAsSubstTemplateTemplateParm();
4011 return getCanonicalTemplateName(subst->getReplacement());
4012 }
4013
4014 case TemplateName::SubstTemplateTemplateParmPack: {
4015 SubstTemplateTemplateParmPackStorage *subst
4016 = Name.getAsSubstTemplateTemplateParmPack();
4017 TemplateTemplateParmDecl *canonParameter
4018 = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack());
4019 TemplateArgument canonArgPack
4020 = getCanonicalTemplateArgument(subst->getArgumentPack());
4021 return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack);
4022 }
4023 }
4024
4025 llvm_unreachable("bad template name!");
Douglas Gregor25a3ef72009-05-07 06:41:52 +00004026}
4027
Douglas Gregordb0d4b72009-11-11 23:06:43 +00004028bool ASTContext::hasSameTemplateName(TemplateName X, TemplateName Y) {
4029 X = getCanonicalTemplateName(X);
4030 Y = getCanonicalTemplateName(Y);
4031 return X.getAsVoidPointer() == Y.getAsVoidPointer();
4032}
4033
Mike Stump1eb44332009-09-09 15:08:12 +00004034TemplateArgument
Jay Foad4ba2a172011-01-12 09:06:06 +00004035ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const {
Douglas Gregor1275ae02009-07-28 23:00:59 +00004036 switch (Arg.getKind()) {
4037 case TemplateArgument::Null:
4038 return Arg;
Mike Stump1eb44332009-09-09 15:08:12 +00004039
Douglas Gregor1275ae02009-07-28 23:00:59 +00004040 case TemplateArgument::Expression:
Douglas Gregor1275ae02009-07-28 23:00:59 +00004041 return Arg;
Mike Stump1eb44332009-09-09 15:08:12 +00004042
Douglas Gregord2008e22012-04-06 22:40:38 +00004043 case TemplateArgument::Declaration: {
Eli Friedmand7a6b162012-09-26 02:36:12 +00004044 ValueDecl *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl());
4045 return TemplateArgument(D, Arg.isDeclForReferenceParam());
Douglas Gregord2008e22012-04-06 22:40:38 +00004046 }
Mike Stump1eb44332009-09-09 15:08:12 +00004047
Eli Friedmand7a6b162012-09-26 02:36:12 +00004048 case TemplateArgument::NullPtr:
4049 return TemplateArgument(getCanonicalType(Arg.getNullPtrType()),
4050 /*isNullPtr*/true);
4051
Douglas Gregor788cd062009-11-11 01:00:40 +00004052 case TemplateArgument::Template:
4053 return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate()));
Douglas Gregora7fc9012011-01-05 18:58:31 +00004054
4055 case TemplateArgument::TemplateExpansion:
4056 return TemplateArgument(getCanonicalTemplateName(
4057 Arg.getAsTemplateOrTemplatePattern()),
Douglas Gregor2be29f42011-01-14 23:41:42 +00004058 Arg.getNumTemplateExpansions());
Douglas Gregora7fc9012011-01-05 18:58:31 +00004059
Douglas Gregor1275ae02009-07-28 23:00:59 +00004060 case TemplateArgument::Integral:
Benjamin Kramer85524372012-06-07 15:09:51 +00004061 return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType()));
Mike Stump1eb44332009-09-09 15:08:12 +00004062
Douglas Gregor1275ae02009-07-28 23:00:59 +00004063 case TemplateArgument::Type:
John McCall833ca992009-10-29 08:12:44 +00004064 return TemplateArgument(getCanonicalType(Arg.getAsType()));
Mike Stump1eb44332009-09-09 15:08:12 +00004065
Douglas Gregor1275ae02009-07-28 23:00:59 +00004066 case TemplateArgument::Pack: {
Douglas Gregor87dd6972010-12-20 16:52:59 +00004067 if (Arg.pack_size() == 0)
4068 return Arg;
4069
Douglas Gregor910f8002010-11-07 23:05:16 +00004070 TemplateArgument *CanonArgs
4071 = new (*this) TemplateArgument[Arg.pack_size()];
Douglas Gregor1275ae02009-07-28 23:00:59 +00004072 unsigned Idx = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004073 for (TemplateArgument::pack_iterator A = Arg.pack_begin(),
Douglas Gregor1275ae02009-07-28 23:00:59 +00004074 AEnd = Arg.pack_end();
4075 A != AEnd; (void)++A, ++Idx)
4076 CanonArgs[Idx] = getCanonicalTemplateArgument(*A);
Mike Stump1eb44332009-09-09 15:08:12 +00004077
Douglas Gregor910f8002010-11-07 23:05:16 +00004078 return TemplateArgument(CanonArgs, Arg.pack_size());
Douglas Gregor1275ae02009-07-28 23:00:59 +00004079 }
4080 }
4081
4082 // Silence GCC warning
David Blaikieb219cfc2011-09-23 05:06:16 +00004083 llvm_unreachable("Unhandled template argument kind");
Douglas Gregor1275ae02009-07-28 23:00:59 +00004084}
4085
Douglas Gregord57959a2009-03-27 23:10:48 +00004086NestedNameSpecifier *
Jay Foad4ba2a172011-01-12 09:06:06 +00004087ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const {
Mike Stump1eb44332009-09-09 15:08:12 +00004088 if (!NNS)
Douglas Gregord57959a2009-03-27 23:10:48 +00004089 return 0;
4090
4091 switch (NNS->getKind()) {
4092 case NestedNameSpecifier::Identifier:
4093 // Canonicalize the prefix but keep the identifier the same.
Mike Stump1eb44332009-09-09 15:08:12 +00004094 return NestedNameSpecifier::Create(*this,
Douglas Gregord57959a2009-03-27 23:10:48 +00004095 getCanonicalNestedNameSpecifier(NNS->getPrefix()),
4096 NNS->getAsIdentifier());
4097
4098 case NestedNameSpecifier::Namespace:
4099 // A namespace is canonical; build a nested-name-specifier with
4100 // this namespace and no prefix.
Douglas Gregor14aba762011-02-24 02:36:08 +00004101 return NestedNameSpecifier::Create(*this, 0,
4102 NNS->getAsNamespace()->getOriginalNamespace());
4103
4104 case NestedNameSpecifier::NamespaceAlias:
4105 // A namespace is canonical; build a nested-name-specifier with
4106 // this namespace and no prefix.
4107 return NestedNameSpecifier::Create(*this, 0,
4108 NNS->getAsNamespaceAlias()->getNamespace()
4109 ->getOriginalNamespace());
Douglas Gregord57959a2009-03-27 23:10:48 +00004110
4111 case NestedNameSpecifier::TypeSpec:
4112 case NestedNameSpecifier::TypeSpecWithTemplate: {
4113 QualType T = getCanonicalType(QualType(NNS->getAsType(), 0));
Douglas Gregor264bf662010-11-04 00:09:33 +00004114
4115 // If we have some kind of dependent-named type (e.g., "typename T::type"),
4116 // break it apart into its prefix and identifier, then reconsititute those
4117 // as the canonical nested-name-specifier. This is required to canonicalize
4118 // a dependent nested-name-specifier involving typedefs of dependent-name
4119 // types, e.g.,
4120 // typedef typename T::type T1;
4121 // typedef typename T1::type T2;
Eli Friedman16412ef2012-03-03 04:09:56 +00004122 if (const DependentNameType *DNT = T->getAs<DependentNameType>())
4123 return NestedNameSpecifier::Create(*this, DNT->getQualifier(),
Douglas Gregor264bf662010-11-04 00:09:33 +00004124 const_cast<IdentifierInfo *>(DNT->getIdentifier()));
Douglas Gregor264bf662010-11-04 00:09:33 +00004125
Eli Friedman16412ef2012-03-03 04:09:56 +00004126 // Otherwise, just canonicalize the type, and force it to be a TypeSpec.
4127 // FIXME: Why are TypeSpec and TypeSpecWithTemplate distinct in the
4128 // first place?
John McCall3b657512011-01-19 10:06:00 +00004129 return NestedNameSpecifier::Create(*this, 0, false,
4130 const_cast<Type*>(T.getTypePtr()));
Douglas Gregord57959a2009-03-27 23:10:48 +00004131 }
4132
4133 case NestedNameSpecifier::Global:
4134 // The global specifier is canonical and unique.
4135 return NNS;
4136 }
4137
David Blaikie7530c032012-01-17 06:56:22 +00004138 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregord57959a2009-03-27 23:10:48 +00004139}
4140
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004141
Jay Foad4ba2a172011-01-12 09:06:06 +00004142const ArrayType *ASTContext::getAsArrayType(QualType T) const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004143 // Handle the non-qualified case efficiently.
Douglas Gregora4923eb2009-11-16 21:35:15 +00004144 if (!T.hasLocalQualifiers()) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004145 // Handle the common positive case fast.
4146 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
4147 return AT;
4148 }
Mike Stump1eb44332009-09-09 15:08:12 +00004149
John McCall0953e762009-09-24 19:53:00 +00004150 // Handle the common negative case fast.
John McCall3b657512011-01-19 10:06:00 +00004151 if (!isa<ArrayType>(T.getCanonicalType()))
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004152 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004153
John McCall0953e762009-09-24 19:53:00 +00004154 // Apply any qualifiers from the array type to the element type. This
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004155 // implements C99 6.7.3p8: "If the specification of an array type includes
4156 // any type qualifiers, the element type is so qualified, not the array type."
Mike Stump1eb44332009-09-09 15:08:12 +00004157
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004158 // If we get here, we either have type qualifiers on the type, or we have
4159 // sugar such as a typedef in the way. If we have type qualifiers on the type
Douglas Gregor50d62d12009-08-05 05:36:45 +00004160 // we must propagate them down into the element type.
Mike Stump1eb44332009-09-09 15:08:12 +00004161
John McCall3b657512011-01-19 10:06:00 +00004162 SplitQualType split = T.getSplitDesugaredType();
John McCall200fa532012-02-08 00:46:36 +00004163 Qualifiers qs = split.Quals;
Mike Stump1eb44332009-09-09 15:08:12 +00004164
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004165 // If we have a simple case, just return now.
John McCall200fa532012-02-08 00:46:36 +00004166 const ArrayType *ATy = dyn_cast<ArrayType>(split.Ty);
John McCall3b657512011-01-19 10:06:00 +00004167 if (ATy == 0 || qs.empty())
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004168 return ATy;
Mike Stump1eb44332009-09-09 15:08:12 +00004169
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004170 // Otherwise, we have an array and we have qualifiers on it. Push the
4171 // qualifiers into the array element type and return a new array type.
John McCall3b657512011-01-19 10:06:00 +00004172 QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs);
Mike Stump1eb44332009-09-09 15:08:12 +00004173
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004174 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
4175 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
4176 CAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004177 CAT->getIndexTypeCVRQualifiers()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004178 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
4179 return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
4180 IAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004181 IAT->getIndexTypeCVRQualifiers()));
Douglas Gregor898574e2008-12-05 23:32:09 +00004182
Mike Stump1eb44332009-09-09 15:08:12 +00004183 if (const DependentSizedArrayType *DSAT
Douglas Gregor898574e2008-12-05 23:32:09 +00004184 = dyn_cast<DependentSizedArrayType>(ATy))
4185 return cast<ArrayType>(
Mike Stump1eb44332009-09-09 15:08:12 +00004186 getDependentSizedArrayType(NewEltTy,
John McCall3fa5cae2010-10-26 07:05:15 +00004187 DSAT->getSizeExpr(),
Douglas Gregor898574e2008-12-05 23:32:09 +00004188 DSAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004189 DSAT->getIndexTypeCVRQualifiers(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004190 DSAT->getBracketsRange()));
Mike Stump1eb44332009-09-09 15:08:12 +00004191
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004192 const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004193 return cast<ArrayType>(getVariableArrayType(NewEltTy,
John McCall3fa5cae2010-10-26 07:05:15 +00004194 VAT->getSizeExpr(),
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004195 VAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004196 VAT->getIndexTypeCVRQualifiers(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004197 VAT->getBracketsRange()));
Chris Lattner77c96472008-04-06 22:41:35 +00004198}
4199
Abramo Bagnaraad9689f2012-05-17 12:44:05 +00004200QualType ASTContext::getAdjustedParameterType(QualType T) const {
Reid Kleckner12df2462013-06-24 17:51:48 +00004201 if (T->isArrayType() || T->isFunctionType())
4202 return getDecayedType(T);
4203 return T;
Douglas Gregor79e6bd32011-07-12 04:42:08 +00004204}
4205
Abramo Bagnaraad9689f2012-05-17 12:44:05 +00004206QualType ASTContext::getSignatureParameterType(QualType T) const {
Douglas Gregor79e6bd32011-07-12 04:42:08 +00004207 T = getVariableArrayDecayedType(T);
4208 T = getAdjustedParameterType(T);
4209 return T.getUnqualifiedType();
4210}
4211
Chris Lattnere6327742008-04-02 05:18:44 +00004212/// getArrayDecayedType - Return the properly qualified result of decaying the
4213/// specified array type to a pointer. This operation is non-trivial when
4214/// handling typedefs etc. The canonical type of "T" must be an array type,
4215/// this returns a pointer to a properly qualified element of the array.
4216///
4217/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
Jay Foad4ba2a172011-01-12 09:06:06 +00004218QualType ASTContext::getArrayDecayedType(QualType Ty) const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004219 // Get the element type with 'getAsArrayType' so that we don't lose any
4220 // typedefs in the element type of the array. This also handles propagation
4221 // of type qualifiers from the array type into the element type if present
4222 // (C99 6.7.3p8).
4223 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
4224 assert(PrettyArrayType && "Not an array type!");
Mike Stump1eb44332009-09-09 15:08:12 +00004225
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004226 QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
Chris Lattnere6327742008-04-02 05:18:44 +00004227
4228 // int x[restrict 4] -> int *restrict
John McCall0953e762009-09-24 19:53:00 +00004229 return getQualifiedType(PtrTy, PrettyArrayType->getIndexTypeQualifiers());
Chris Lattnere6327742008-04-02 05:18:44 +00004230}
4231
John McCall3b657512011-01-19 10:06:00 +00004232QualType ASTContext::getBaseElementType(const ArrayType *array) const {
4233 return getBaseElementType(array->getElementType());
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00004234}
4235
John McCall3b657512011-01-19 10:06:00 +00004236QualType ASTContext::getBaseElementType(QualType type) const {
4237 Qualifiers qs;
4238 while (true) {
4239 SplitQualType split = type.getSplitDesugaredType();
John McCall200fa532012-02-08 00:46:36 +00004240 const ArrayType *array = split.Ty->getAsArrayTypeUnsafe();
John McCall3b657512011-01-19 10:06:00 +00004241 if (!array) break;
Mike Stump1eb44332009-09-09 15:08:12 +00004242
John McCall3b657512011-01-19 10:06:00 +00004243 type = array->getElementType();
John McCall200fa532012-02-08 00:46:36 +00004244 qs.addConsistentQualifiers(split.Quals);
John McCall3b657512011-01-19 10:06:00 +00004245 }
Mike Stump1eb44332009-09-09 15:08:12 +00004246
John McCall3b657512011-01-19 10:06:00 +00004247 return getQualifiedType(type, qs);
Anders Carlsson6183a992008-12-21 03:44:36 +00004248}
4249
Fariborz Jahanian0de78992009-08-21 16:31:06 +00004250/// getConstantArrayElementCount - Returns number of constant array elements.
Mike Stump1eb44332009-09-09 15:08:12 +00004251uint64_t
Fariborz Jahanian0de78992009-08-21 16:31:06 +00004252ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA) const {
4253 uint64_t ElementCount = 1;
4254 do {
4255 ElementCount *= CA->getSize().getZExtValue();
Richard Smithd5e83942012-12-06 03:04:50 +00004256 CA = dyn_cast_or_null<ConstantArrayType>(
4257 CA->getElementType()->getAsArrayTypeUnsafe());
Fariborz Jahanian0de78992009-08-21 16:31:06 +00004258 } while (CA);
4259 return ElementCount;
4260}
4261
Reid Spencer5f016e22007-07-11 17:01:13 +00004262/// getFloatingRank - Return a relative rank for floating point types.
4263/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnera75cea32008-04-06 23:38:49 +00004264static FloatingRank getFloatingRank(QualType T) {
John McCall183700f2009-09-21 23:43:11 +00004265 if (const ComplexType *CT = T->getAs<ComplexType>())
Reid Spencer5f016e22007-07-11 17:01:13 +00004266 return getFloatingRank(CT->getElementType());
Chris Lattnera75cea32008-04-06 23:38:49 +00004267
John McCall183700f2009-09-21 23:43:11 +00004268 assert(T->getAs<BuiltinType>() && "getFloatingRank(): not a floating type");
4269 switch (T->getAs<BuiltinType>()->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00004270 default: llvm_unreachable("getFloatingRank(): not a floating type");
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004271 case BuiltinType::Half: return HalfRank;
Reid Spencer5f016e22007-07-11 17:01:13 +00004272 case BuiltinType::Float: return FloatRank;
4273 case BuiltinType::Double: return DoubleRank;
4274 case BuiltinType::LongDouble: return LongDoubleRank;
4275 }
4276}
4277
Mike Stump1eb44332009-09-09 15:08:12 +00004278/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
4279/// point or a complex type (based on typeDomain/typeSize).
Steve Naroff716c7302007-08-27 01:41:48 +00004280/// 'typeDomain' is a real floating point or complex type.
4281/// 'typeSize' is a real floating point or complex type.
Chris Lattner1361b112008-04-06 23:58:54 +00004282QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
4283 QualType Domain) const {
4284 FloatingRank EltRank = getFloatingRank(Size);
4285 if (Domain->isComplexType()) {
4286 switch (EltRank) {
David Blaikie561d3ab2012-01-17 02:30:50 +00004287 case HalfRank: llvm_unreachable("Complex half is not supported");
Steve Narofff1448a02007-08-27 01:27:54 +00004288 case FloatRank: return FloatComplexTy;
4289 case DoubleRank: return DoubleComplexTy;
4290 case LongDoubleRank: return LongDoubleComplexTy;
4291 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004292 }
Chris Lattner1361b112008-04-06 23:58:54 +00004293
4294 assert(Domain->isRealFloatingType() && "Unknown domain!");
4295 switch (EltRank) {
Joey Gouly19dbb202013-01-23 11:56:20 +00004296 case HalfRank: return HalfTy;
Chris Lattner1361b112008-04-06 23:58:54 +00004297 case FloatRank: return FloatTy;
4298 case DoubleRank: return DoubleTy;
4299 case LongDoubleRank: return LongDoubleTy;
Steve Narofff1448a02007-08-27 01:27:54 +00004300 }
David Blaikie561d3ab2012-01-17 02:30:50 +00004301 llvm_unreachable("getFloatingRank(): illegal value for rank");
Reid Spencer5f016e22007-07-11 17:01:13 +00004302}
4303
Chris Lattner7cfeb082008-04-06 23:55:33 +00004304/// getFloatingTypeOrder - Compare the rank of the two specified floating
4305/// point types, ignoring the domain of the type (i.e. 'double' ==
4306/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
Mike Stump1eb44332009-09-09 15:08:12 +00004307/// LHS < RHS, return -1.
Jay Foad4ba2a172011-01-12 09:06:06 +00004308int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const {
Chris Lattnera75cea32008-04-06 23:38:49 +00004309 FloatingRank LHSR = getFloatingRank(LHS);
4310 FloatingRank RHSR = getFloatingRank(RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00004311
Chris Lattnera75cea32008-04-06 23:38:49 +00004312 if (LHSR == RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00004313 return 0;
Chris Lattnera75cea32008-04-06 23:38:49 +00004314 if (LHSR > RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00004315 return 1;
4316 return -1;
Reid Spencer5f016e22007-07-11 17:01:13 +00004317}
4318
Chris Lattnerf52ab252008-04-06 22:59:24 +00004319/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
4320/// routine will assert if passed a built-in type that isn't an integer or enum,
4321/// or if it is not canonicalized.
John McCallf4c73712011-01-19 06:33:43 +00004322unsigned ASTContext::getIntegerRank(const Type *T) const {
John McCall467b27b2009-10-22 20:10:53 +00004323 assert(T->isCanonicalUnqualified() && "T should be canonicalized");
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00004324
Chris Lattnerf52ab252008-04-06 22:59:24 +00004325 switch (cast<BuiltinType>(T)->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00004326 default: llvm_unreachable("getIntegerRank(): not a built-in integer");
Chris Lattner7cfeb082008-04-06 23:55:33 +00004327 case BuiltinType::Bool:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004328 return 1 + (getIntWidth(BoolTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004329 case BuiltinType::Char_S:
4330 case BuiltinType::Char_U:
4331 case BuiltinType::SChar:
4332 case BuiltinType::UChar:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004333 return 2 + (getIntWidth(CharTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004334 case BuiltinType::Short:
4335 case BuiltinType::UShort:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004336 return 3 + (getIntWidth(ShortTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004337 case BuiltinType::Int:
4338 case BuiltinType::UInt:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004339 return 4 + (getIntWidth(IntTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004340 case BuiltinType::Long:
4341 case BuiltinType::ULong:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004342 return 5 + (getIntWidth(LongTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004343 case BuiltinType::LongLong:
4344 case BuiltinType::ULongLong:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004345 return 6 + (getIntWidth(LongLongTy) << 3);
Chris Lattner2df9ced2009-04-30 02:43:43 +00004346 case BuiltinType::Int128:
4347 case BuiltinType::UInt128:
4348 return 7 + (getIntWidth(Int128Ty) << 3);
Chris Lattnerf52ab252008-04-06 22:59:24 +00004349 }
4350}
4351
Eli Friedman04e83572009-08-20 04:21:42 +00004352/// \brief Whether this is a promotable bitfield reference according
4353/// to C99 6.3.1.1p2, bullet 2 (and GCC extensions).
4354///
4355/// \returns the type this bit-field will promote to, or NULL if no
4356/// promotion occurs.
Jay Foad4ba2a172011-01-12 09:06:06 +00004357QualType ASTContext::isPromotableBitField(Expr *E) const {
Douglas Gregorceafbde2010-05-24 20:13:53 +00004358 if (E->isTypeDependent() || E->isValueDependent())
4359 return QualType();
4360
John McCall993f43f2013-05-06 21:39:12 +00004361 FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields?
Eli Friedman04e83572009-08-20 04:21:42 +00004362 if (!Field)
4363 return QualType();
4364
4365 QualType FT = Field->getType();
4366
Richard Smitha6b8b2c2011-10-10 18:28:20 +00004367 uint64_t BitWidth = Field->getBitWidthValue(*this);
Eli Friedman04e83572009-08-20 04:21:42 +00004368 uint64_t IntSize = getTypeSize(IntTy);
4369 // GCC extension compatibility: if the bit-field size is less than or equal
4370 // to the size of int, it gets promoted no matter what its type is.
4371 // For instance, unsigned long bf : 4 gets promoted to signed int.
4372 if (BitWidth < IntSize)
4373 return IntTy;
4374
4375 if (BitWidth == IntSize)
4376 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
4377
4378 // Types bigger than int are not subject to promotions, and therefore act
4379 // like the base type.
4380 // FIXME: This doesn't quite match what gcc does, but what gcc does here
4381 // is ridiculous.
4382 return QualType();
4383}
4384
Eli Friedmana95d7572009-08-19 07:44:53 +00004385/// getPromotedIntegerType - Returns the type that Promotable will
4386/// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
4387/// integer type.
Jay Foad4ba2a172011-01-12 09:06:06 +00004388QualType ASTContext::getPromotedIntegerType(QualType Promotable) const {
Eli Friedmana95d7572009-08-19 07:44:53 +00004389 assert(!Promotable.isNull());
4390 assert(Promotable->isPromotableIntegerType());
John McCall842aef82009-12-09 09:09:27 +00004391 if (const EnumType *ET = Promotable->getAs<EnumType>())
4392 return ET->getDecl()->getPromotionType();
Eli Friedman68a2dc42011-10-26 07:22:48 +00004393
4394 if (const BuiltinType *BT = Promotable->getAs<BuiltinType>()) {
4395 // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t
4396 // (3.9.1) can be converted to a prvalue of the first of the following
4397 // types that can represent all the values of its underlying type:
4398 // int, unsigned int, long int, unsigned long int, long long int, or
4399 // unsigned long long int [...]
4400 // FIXME: Is there some better way to compute this?
4401 if (BT->getKind() == BuiltinType::WChar_S ||
4402 BT->getKind() == BuiltinType::WChar_U ||
4403 BT->getKind() == BuiltinType::Char16 ||
4404 BT->getKind() == BuiltinType::Char32) {
4405 bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S;
4406 uint64_t FromSize = getTypeSize(BT);
4407 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy,
4408 LongLongTy, UnsignedLongLongTy };
4409 for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) {
4410 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]);
4411 if (FromSize < ToSize ||
4412 (FromSize == ToSize &&
4413 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType()))
4414 return PromoteTypes[Idx];
4415 }
4416 llvm_unreachable("char type should fit into long long");
4417 }
4418 }
4419
4420 // At this point, we should have a signed or unsigned integer type.
Eli Friedmana95d7572009-08-19 07:44:53 +00004421 if (Promotable->isSignedIntegerType())
4422 return IntTy;
Eli Friedman5b64e772012-11-15 01:21:59 +00004423 uint64_t PromotableSize = getIntWidth(Promotable);
4424 uint64_t IntSize = getIntWidth(IntTy);
Eli Friedmana95d7572009-08-19 07:44:53 +00004425 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
4426 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
4427}
4428
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +00004429/// \brief Recurses in pointer/array types until it finds an objc retainable
4430/// type and returns its ownership.
4431Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const {
4432 while (!T.isNull()) {
4433 if (T.getObjCLifetime() != Qualifiers::OCL_None)
4434 return T.getObjCLifetime();
4435 if (T->isArrayType())
4436 T = getBaseElementType(T);
4437 else if (const PointerType *PT = T->getAs<PointerType>())
4438 T = PT->getPointeeType();
4439 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
Argyrios Kyrtzidis28445f02011-07-01 23:01:46 +00004440 T = RT->getPointeeType();
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +00004441 else
4442 break;
4443 }
4444
4445 return Qualifiers::OCL_None;
4446}
4447
Mike Stump1eb44332009-09-09 15:08:12 +00004448/// getIntegerTypeOrder - Returns the highest ranked integer type:
Chris Lattner7cfeb082008-04-06 23:55:33 +00004449/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
Mike Stump1eb44332009-09-09 15:08:12 +00004450/// LHS < RHS, return -1.
Jay Foad4ba2a172011-01-12 09:06:06 +00004451int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const {
John McCallf4c73712011-01-19 06:33:43 +00004452 const Type *LHSC = getCanonicalType(LHS).getTypePtr();
4453 const Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner7cfeb082008-04-06 23:55:33 +00004454 if (LHSC == RHSC) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004455
Chris Lattnerf52ab252008-04-06 22:59:24 +00004456 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
4457 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +00004458
Chris Lattner7cfeb082008-04-06 23:55:33 +00004459 unsigned LHSRank = getIntegerRank(LHSC);
4460 unsigned RHSRank = getIntegerRank(RHSC);
Mike Stump1eb44332009-09-09 15:08:12 +00004461
Chris Lattner7cfeb082008-04-06 23:55:33 +00004462 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
4463 if (LHSRank == RHSRank) return 0;
4464 return LHSRank > RHSRank ? 1 : -1;
4465 }
Mike Stump1eb44332009-09-09 15:08:12 +00004466
Chris Lattner7cfeb082008-04-06 23:55:33 +00004467 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
4468 if (LHSUnsigned) {
4469 // If the unsigned [LHS] type is larger, return it.
4470 if (LHSRank >= RHSRank)
4471 return 1;
Mike Stump1eb44332009-09-09 15:08:12 +00004472
Chris Lattner7cfeb082008-04-06 23:55:33 +00004473 // If the signed type can represent all values of the unsigned type, it
4474 // wins. Because we are dealing with 2's complement and types that are
Mike Stump1eb44332009-09-09 15:08:12 +00004475 // powers of two larger than each other, this is always safe.
Chris Lattner7cfeb082008-04-06 23:55:33 +00004476 return -1;
4477 }
Chris Lattnerf52ab252008-04-06 22:59:24 +00004478
Chris Lattner7cfeb082008-04-06 23:55:33 +00004479 // If the unsigned [RHS] type is larger, return it.
4480 if (RHSRank >= LHSRank)
4481 return -1;
Mike Stump1eb44332009-09-09 15:08:12 +00004482
Chris Lattner7cfeb082008-04-06 23:55:33 +00004483 // If the signed type can represent all values of the unsigned type, it
4484 // wins. Because we are dealing with 2's complement and types that are
Mike Stump1eb44332009-09-09 15:08:12 +00004485 // powers of two larger than each other, this is always safe.
Chris Lattner7cfeb082008-04-06 23:55:33 +00004486 return 1;
Reid Spencer5f016e22007-07-11 17:01:13 +00004487}
Anders Carlsson71993dd2007-08-17 05:31:46 +00004488
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004489static RecordDecl *
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004490CreateRecordDecl(const ASTContext &Ctx, RecordDecl::TagKind TK,
4491 DeclContext *DC, IdentifierInfo *Id) {
4492 SourceLocation Loc;
David Blaikie4e4d0842012-03-11 07:00:24 +00004493 if (Ctx.getLangOpts().CPlusPlus)
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004494 return CXXRecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004495 else
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004496 return RecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004497}
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004498
Mike Stump1eb44332009-09-09 15:08:12 +00004499// getCFConstantStringType - Return the type used for constant CFStrings.
Jay Foad4ba2a172011-01-12 09:06:06 +00004500QualType ASTContext::getCFConstantStringType() const {
Anders Carlsson71993dd2007-08-17 05:31:46 +00004501 if (!CFConstantStringTypeDecl) {
Mike Stump1eb44332009-09-09 15:08:12 +00004502 CFConstantStringTypeDecl =
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004503 CreateRecordDecl(*this, TTK_Struct, TUDecl,
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004504 &Idents.get("NSConstantString"));
John McCall5cfa0112010-02-05 01:33:36 +00004505 CFConstantStringTypeDecl->startDefinition();
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004506
Anders Carlssonf06273f2007-11-19 00:25:30 +00004507 QualType FieldTypes[4];
Mike Stump1eb44332009-09-09 15:08:12 +00004508
Anders Carlsson71993dd2007-08-17 05:31:46 +00004509 // const int *isa;
John McCall0953e762009-09-24 19:53:00 +00004510 FieldTypes[0] = getPointerType(IntTy.withConst());
Anders Carlssonf06273f2007-11-19 00:25:30 +00004511 // int flags;
4512 FieldTypes[1] = IntTy;
Anders Carlsson71993dd2007-08-17 05:31:46 +00004513 // const char *str;
John McCall0953e762009-09-24 19:53:00 +00004514 FieldTypes[2] = getPointerType(CharTy.withConst());
Anders Carlsson71993dd2007-08-17 05:31:46 +00004515 // long length;
Mike Stump1eb44332009-09-09 15:08:12 +00004516 FieldTypes[3] = LongTy;
4517
Anders Carlsson71993dd2007-08-17 05:31:46 +00004518 // Create fields
Douglas Gregor44b43212008-12-11 16:49:14 +00004519 for (unsigned i = 0; i < 4; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +00004520 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004521 SourceLocation(),
Douglas Gregor44b43212008-12-11 16:49:14 +00004522 SourceLocation(), 0,
John McCalla93c9342009-12-07 02:54:59 +00004523 FieldTypes[i], /*TInfo=*/0,
Mike Stump1eb44332009-09-09 15:08:12 +00004524 /*BitWidth=*/0,
Richard Smith7a614d82011-06-11 17:19:42 +00004525 /*Mutable=*/false,
Richard Smithca523302012-06-10 03:12:00 +00004526 ICIS_NoInit);
John McCall2888b652010-04-30 21:35:41 +00004527 Field->setAccess(AS_public);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004528 CFConstantStringTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00004529 }
4530
Douglas Gregor838db382010-02-11 01:19:42 +00004531 CFConstantStringTypeDecl->completeDefinition();
Anders Carlsson71993dd2007-08-17 05:31:46 +00004532 }
Mike Stump1eb44332009-09-09 15:08:12 +00004533
Anders Carlsson71993dd2007-08-17 05:31:46 +00004534 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif84675832007-09-11 15:32:40 +00004535}
Anders Carlssonb2cf3572007-10-11 01:00:40 +00004536
Fariborz Jahanianf7992132013-01-04 18:45:40 +00004537QualType ASTContext::getObjCSuperType() const {
4538 if (ObjCSuperType.isNull()) {
4539 RecordDecl *ObjCSuperTypeDecl =
4540 CreateRecordDecl(*this, TTK_Struct, TUDecl, &Idents.get("objc_super"));
4541 TUDecl->addDecl(ObjCSuperTypeDecl);
4542 ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl);
4543 }
4544 return ObjCSuperType;
4545}
4546
Douglas Gregor319ac892009-04-23 22:29:11 +00004547void ASTContext::setCFConstantStringType(QualType T) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004548 const RecordType *Rec = T->getAs<RecordType>();
Douglas Gregor319ac892009-04-23 22:29:11 +00004549 assert(Rec && "Invalid CFConstantStringType");
4550 CFConstantStringTypeDecl = Rec->getDecl();
4551}
4552
Jay Foad4ba2a172011-01-12 09:06:06 +00004553QualType ASTContext::getBlockDescriptorType() const {
Mike Stumpadaaad32009-10-20 02:12:22 +00004554 if (BlockDescriptorType)
4555 return getTagDeclType(BlockDescriptorType);
4556
4557 RecordDecl *T;
4558 // FIXME: Needs the FlagAppleBlock bit.
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004559 T = CreateRecordDecl(*this, TTK_Struct, TUDecl,
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004560 &Idents.get("__block_descriptor"));
John McCall5cfa0112010-02-05 01:33:36 +00004561 T->startDefinition();
Mike Stumpadaaad32009-10-20 02:12:22 +00004562
4563 QualType FieldTypes[] = {
4564 UnsignedLongTy,
4565 UnsignedLongTy,
4566 };
4567
4568 const char *FieldNames[] = {
4569 "reserved",
Mike Stump083c25e2009-10-22 00:49:09 +00004570 "Size"
Mike Stumpadaaad32009-10-20 02:12:22 +00004571 };
4572
4573 for (size_t i = 0; i < 2; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004574 FieldDecl *Field = FieldDecl::Create(*this, T, SourceLocation(),
Mike Stumpadaaad32009-10-20 02:12:22 +00004575 SourceLocation(),
4576 &Idents.get(FieldNames[i]),
John McCalla93c9342009-12-07 02:54:59 +00004577 FieldTypes[i], /*TInfo=*/0,
Mike Stumpadaaad32009-10-20 02:12:22 +00004578 /*BitWidth=*/0,
Richard Smith7a614d82011-06-11 17:19:42 +00004579 /*Mutable=*/false,
Richard Smithca523302012-06-10 03:12:00 +00004580 ICIS_NoInit);
John McCall2888b652010-04-30 21:35:41 +00004581 Field->setAccess(AS_public);
Mike Stumpadaaad32009-10-20 02:12:22 +00004582 T->addDecl(Field);
4583 }
4584
Douglas Gregor838db382010-02-11 01:19:42 +00004585 T->completeDefinition();
Mike Stumpadaaad32009-10-20 02:12:22 +00004586
4587 BlockDescriptorType = T;
4588
4589 return getTagDeclType(BlockDescriptorType);
4590}
4591
Jay Foad4ba2a172011-01-12 09:06:06 +00004592QualType ASTContext::getBlockDescriptorExtendedType() const {
Mike Stump083c25e2009-10-22 00:49:09 +00004593 if (BlockDescriptorExtendedType)
4594 return getTagDeclType(BlockDescriptorExtendedType);
4595
4596 RecordDecl *T;
4597 // FIXME: Needs the FlagAppleBlock bit.
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004598 T = CreateRecordDecl(*this, TTK_Struct, TUDecl,
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004599 &Idents.get("__block_descriptor_withcopydispose"));
John McCall5cfa0112010-02-05 01:33:36 +00004600 T->startDefinition();
Mike Stump083c25e2009-10-22 00:49:09 +00004601
4602 QualType FieldTypes[] = {
4603 UnsignedLongTy,
4604 UnsignedLongTy,
4605 getPointerType(VoidPtrTy),
4606 getPointerType(VoidPtrTy)
4607 };
4608
4609 const char *FieldNames[] = {
4610 "reserved",
4611 "Size",
4612 "CopyFuncPtr",
4613 "DestroyFuncPtr"
4614 };
4615
4616 for (size_t i = 0; i < 4; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004617 FieldDecl *Field = FieldDecl::Create(*this, T, SourceLocation(),
Mike Stump083c25e2009-10-22 00:49:09 +00004618 SourceLocation(),
4619 &Idents.get(FieldNames[i]),
John McCalla93c9342009-12-07 02:54:59 +00004620 FieldTypes[i], /*TInfo=*/0,
Mike Stump083c25e2009-10-22 00:49:09 +00004621 /*BitWidth=*/0,
Richard Smith7a614d82011-06-11 17:19:42 +00004622 /*Mutable=*/false,
Richard Smithca523302012-06-10 03:12:00 +00004623 ICIS_NoInit);
John McCall2888b652010-04-30 21:35:41 +00004624 Field->setAccess(AS_public);
Mike Stump083c25e2009-10-22 00:49:09 +00004625 T->addDecl(Field);
4626 }
4627
Douglas Gregor838db382010-02-11 01:19:42 +00004628 T->completeDefinition();
Mike Stump083c25e2009-10-22 00:49:09 +00004629
4630 BlockDescriptorExtendedType = T;
4631
4632 return getTagDeclType(BlockDescriptorExtendedType);
4633}
4634
Fariborz Jahanianb15c8982012-11-28 23:12:17 +00004635/// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty"
4636/// requires copy/dispose. Note that this must match the logic
4637/// in buildByrefHelpers.
4638bool ASTContext::BlockRequiresCopying(QualType Ty,
4639 const VarDecl *D) {
4640 if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) {
4641 const Expr *copyExpr = getBlockVarCopyInits(D);
4642 if (!copyExpr && record->hasTrivialDestructor()) return false;
4643
Mike Stumpaf7b44d2009-10-21 18:16:27 +00004644 return true;
Fariborz Jahaniane38be612010-11-17 00:21:28 +00004645 }
Fariborz Jahanianb15c8982012-11-28 23:12:17 +00004646
4647 if (!Ty->isObjCRetainableType()) return false;
4648
4649 Qualifiers qs = Ty.getQualifiers();
4650
4651 // If we have lifetime, that dominates.
4652 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
4653 assert(getLangOpts().ObjCAutoRefCount);
4654
4655 switch (lifetime) {
4656 case Qualifiers::OCL_None: llvm_unreachable("impossible");
4657
4658 // These are just bits as far as the runtime is concerned.
4659 case Qualifiers::OCL_ExplicitNone:
4660 case Qualifiers::OCL_Autoreleasing:
4661 return false;
4662
4663 // Tell the runtime that this is ARC __weak, called by the
4664 // byref routines.
4665 case Qualifiers::OCL_Weak:
4666 // ARC __strong __block variables need to be retained.
4667 case Qualifiers::OCL_Strong:
4668 return true;
4669 }
4670 llvm_unreachable("fell out of lifetime switch!");
4671 }
4672 return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) ||
4673 Ty->isObjCObjectPointerType());
Mike Stumpaf7b44d2009-10-21 18:16:27 +00004674}
4675
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00004676bool ASTContext::getByrefLifetime(QualType Ty,
4677 Qualifiers::ObjCLifetime &LifeTime,
4678 bool &HasByrefExtendedLayout) const {
4679
4680 if (!getLangOpts().ObjC1 ||
4681 getLangOpts().getGC() != LangOptions::NonGC)
4682 return false;
4683
4684 HasByrefExtendedLayout = false;
Fariborz Jahanian34db84f2012-12-11 19:58:01 +00004685 if (Ty->isRecordType()) {
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00004686 HasByrefExtendedLayout = true;
4687 LifeTime = Qualifiers::OCL_None;
4688 }
4689 else if (getLangOpts().ObjCAutoRefCount)
4690 LifeTime = Ty.getObjCLifetime();
4691 // MRR.
4692 else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
4693 LifeTime = Qualifiers::OCL_ExplicitNone;
4694 else
4695 LifeTime = Qualifiers::OCL_None;
4696 return true;
4697}
4698
Douglas Gregore97179c2011-09-08 01:46:34 +00004699TypedefDecl *ASTContext::getObjCInstanceTypeDecl() {
4700 if (!ObjCInstanceTypeDecl)
4701 ObjCInstanceTypeDecl = TypedefDecl::Create(*this,
4702 getTranslationUnitDecl(),
4703 SourceLocation(),
4704 SourceLocation(),
4705 &Idents.get("instancetype"),
4706 getTrivialTypeSourceInfo(getObjCIdType()));
4707 return ObjCInstanceTypeDecl;
4708}
4709
Anders Carlssone8c49532007-10-29 06:33:42 +00004710// This returns true if a type has been typedefed to BOOL:
4711// typedef <type> BOOL;
Chris Lattner2d998332007-10-30 20:27:44 +00004712static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone8c49532007-10-29 06:33:42 +00004713 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattnerbb49c3e2008-11-24 03:52:59 +00004714 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
4715 return II->isStr("BOOL");
Mike Stump1eb44332009-09-09 15:08:12 +00004716
Anders Carlsson85f9bce2007-10-29 05:01:08 +00004717 return false;
4718}
4719
Ted Kremeneka526c5c2008-01-07 19:49:32 +00004720/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004721/// purpose.
Jay Foad4ba2a172011-01-12 09:06:06 +00004722CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const {
Douglas Gregorf968d832011-05-27 01:19:52 +00004723 if (!type->isIncompleteArrayType() && type->isIncompleteType())
4724 return CharUnits::Zero();
4725
Ken Dyck199c3d62010-01-11 17:06:35 +00004726 CharUnits sz = getTypeSizeInChars(type);
Mike Stump1eb44332009-09-09 15:08:12 +00004727
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004728 // Make all integer and enum types at least as large as an int
Douglas Gregor2ade35e2010-06-16 00:17:44 +00004729 if (sz.isPositive() && type->isIntegralOrEnumerationType())
Ken Dyck199c3d62010-01-11 17:06:35 +00004730 sz = std::max(sz, getTypeSizeInChars(IntTy));
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004731 // Treat arrays as pointers, since that's how they're passed in.
4732 else if (type->isArrayType())
Ken Dyck199c3d62010-01-11 17:06:35 +00004733 sz = getTypeSizeInChars(VoidPtrTy);
Ken Dyckaa8741a2010-01-11 19:19:56 +00004734 return sz;
Ken Dyck199c3d62010-01-11 17:06:35 +00004735}
4736
4737static inline
4738std::string charUnitsToString(const CharUnits &CU) {
4739 return llvm::itostr(CU.getQuantity());
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004740}
4741
John McCall6b5a61b2011-02-07 10:33:21 +00004742/// getObjCEncodingForBlock - Return the encoded type for this block
David Chisnall5e530af2009-11-17 19:33:30 +00004743/// declaration.
John McCall6b5a61b2011-02-07 10:33:21 +00004744std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const {
4745 std::string S;
4746
David Chisnall5e530af2009-11-17 19:33:30 +00004747 const BlockDecl *Decl = Expr->getBlockDecl();
4748 QualType BlockTy =
4749 Expr->getType()->getAs<BlockPointerType>()->getPointeeType();
4750 // Encode result type.
Fariborz Jahanian3d145f62012-11-15 19:02:45 +00004751 if (getLangOpts().EncodeExtendedBlockSig)
Fariborz Jahanian06cffc02012-11-14 23:11:38 +00004752 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None,
4753 BlockTy->getAs<FunctionType>()->getResultType(),
4754 S, true /*Extended*/);
4755 else
4756 getObjCEncodingForType(BlockTy->getAs<FunctionType>()->getResultType(),
4757 S);
David Chisnall5e530af2009-11-17 19:33:30 +00004758 // Compute size of all parameters.
4759 // Start with computing size of a pointer in number of bytes.
4760 // FIXME: There might(should) be a better way of doing this computation!
4761 SourceLocation Loc;
Ken Dyck199c3d62010-01-11 17:06:35 +00004762 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
4763 CharUnits ParmOffset = PtrSize;
Fariborz Jahanian6f46c262010-04-08 18:06:22 +00004764 for (BlockDecl::param_const_iterator PI = Decl->param_begin(),
David Chisnall5e530af2009-11-17 19:33:30 +00004765 E = Decl->param_end(); PI != E; ++PI) {
4766 QualType PType = (*PI)->getType();
Ken Dyckaa8741a2010-01-11 19:19:56 +00004767 CharUnits sz = getObjCEncodingTypeSize(PType);
Fariborz Jahanian075a5432012-06-30 00:48:59 +00004768 if (sz.isZero())
4769 continue;
Ken Dyck199c3d62010-01-11 17:06:35 +00004770 assert (sz.isPositive() && "BlockExpr - Incomplete param type");
David Chisnall5e530af2009-11-17 19:33:30 +00004771 ParmOffset += sz;
4772 }
4773 // Size of the argument frame
Ken Dyck199c3d62010-01-11 17:06:35 +00004774 S += charUnitsToString(ParmOffset);
David Chisnall5e530af2009-11-17 19:33:30 +00004775 // Block pointer and offset.
4776 S += "@?0";
David Chisnall5e530af2009-11-17 19:33:30 +00004777
4778 // Argument types.
4779 ParmOffset = PtrSize;
4780 for (BlockDecl::param_const_iterator PI = Decl->param_begin(), E =
4781 Decl->param_end(); PI != E; ++PI) {
4782 ParmVarDecl *PVDecl = *PI;
4783 QualType PType = PVDecl->getOriginalType();
4784 if (const ArrayType *AT =
4785 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
4786 // Use array's original type only if it has known number of
4787 // elements.
4788 if (!isa<ConstantArrayType>(AT))
4789 PType = PVDecl->getType();
4790 } else if (PType->isFunctionType())
4791 PType = PVDecl->getType();
Fariborz Jahanian3d145f62012-11-15 19:02:45 +00004792 if (getLangOpts().EncodeExtendedBlockSig)
Fariborz Jahanian06cffc02012-11-14 23:11:38 +00004793 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType,
4794 S, true /*Extended*/);
4795 else
4796 getObjCEncodingForType(PType, S);
Ken Dyck199c3d62010-01-11 17:06:35 +00004797 S += charUnitsToString(ParmOffset);
Ken Dyckaa8741a2010-01-11 19:19:56 +00004798 ParmOffset += getObjCEncodingTypeSize(PType);
David Chisnall5e530af2009-11-17 19:33:30 +00004799 }
John McCall6b5a61b2011-02-07 10:33:21 +00004800
4801 return S;
David Chisnall5e530af2009-11-17 19:33:30 +00004802}
4803
Douglas Gregorf968d832011-05-27 01:19:52 +00004804bool ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl,
David Chisnall5389f482010-12-30 14:05:53 +00004805 std::string& S) {
4806 // Encode result type.
4807 getObjCEncodingForType(Decl->getResultType(), S);
4808 CharUnits ParmOffset;
4809 // Compute size of all parameters.
4810 for (FunctionDecl::param_const_iterator PI = Decl->param_begin(),
4811 E = Decl->param_end(); PI != E; ++PI) {
4812 QualType PType = (*PI)->getType();
4813 CharUnits sz = getObjCEncodingTypeSize(PType);
Douglas Gregorf968d832011-05-27 01:19:52 +00004814 if (sz.isZero())
Fariborz Jahanian7e68ba52012-06-29 22:54:56 +00004815 continue;
4816
David Chisnall5389f482010-12-30 14:05:53 +00004817 assert (sz.isPositive() &&
Douglas Gregorf968d832011-05-27 01:19:52 +00004818 "getObjCEncodingForFunctionDecl - Incomplete param type");
David Chisnall5389f482010-12-30 14:05:53 +00004819 ParmOffset += sz;
4820 }
4821 S += charUnitsToString(ParmOffset);
4822 ParmOffset = CharUnits::Zero();
4823
4824 // Argument types.
4825 for (FunctionDecl::param_const_iterator PI = Decl->param_begin(),
4826 E = Decl->param_end(); PI != E; ++PI) {
4827 ParmVarDecl *PVDecl = *PI;
4828 QualType PType = PVDecl->getOriginalType();
4829 if (const ArrayType *AT =
4830 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
4831 // Use array's original type only if it has known number of
4832 // elements.
4833 if (!isa<ConstantArrayType>(AT))
4834 PType = PVDecl->getType();
4835 } else if (PType->isFunctionType())
4836 PType = PVDecl->getType();
4837 getObjCEncodingForType(PType, S);
4838 S += charUnitsToString(ParmOffset);
4839 ParmOffset += getObjCEncodingTypeSize(PType);
4840 }
Douglas Gregorf968d832011-05-27 01:19:52 +00004841
4842 return false;
David Chisnall5389f482010-12-30 14:05:53 +00004843}
4844
Bob Wilsondc8dab62011-11-30 01:57:58 +00004845/// getObjCEncodingForMethodParameter - Return the encoded type for a single
4846/// method parameter or return type. If Extended, include class names and
4847/// block object types.
4848void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
4849 QualType T, std::string& S,
4850 bool Extended) const {
4851 // Encode type qualifer, 'in', 'inout', etc. for the parameter.
4852 getObjCEncodingForTypeQualifier(QT, S);
4853 // Encode parameter type.
4854 getObjCEncodingForTypeImpl(T, S, true, true, 0,
4855 true /*OutermostType*/,
4856 false /*EncodingProperty*/,
4857 false /*StructField*/,
4858 Extended /*EncodeBlockParameters*/,
4859 Extended /*EncodeClassNames*/);
4860}
4861
Ted Kremeneka526c5c2008-01-07 19:49:32 +00004862/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004863/// declaration.
Douglas Gregorf968d832011-05-27 01:19:52 +00004864bool ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
Bob Wilsondc8dab62011-11-30 01:57:58 +00004865 std::string& S,
4866 bool Extended) const {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004867 // FIXME: This is not very efficient.
Bob Wilsondc8dab62011-11-30 01:57:58 +00004868 // Encode return type.
4869 getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(),
4870 Decl->getResultType(), S, Extended);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004871 // Compute size of all parameters.
4872 // Start with computing size of a pointer in number of bytes.
4873 // FIXME: There might(should) be a better way of doing this computation!
4874 SourceLocation Loc;
Ken Dyck199c3d62010-01-11 17:06:35 +00004875 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004876 // The first two arguments (self and _cmd) are pointers; account for
4877 // their size.
Ken Dyck199c3d62010-01-11 17:06:35 +00004878 CharUnits ParmOffset = 2 * PtrSize;
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00004879 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
Fariborz Jahanian7732cc92010-04-08 21:29:11 +00004880 E = Decl->sel_param_end(); PI != E; ++PI) {
Chris Lattner89951a82009-02-20 18:43:26 +00004881 QualType PType = (*PI)->getType();
Ken Dyckaa8741a2010-01-11 19:19:56 +00004882 CharUnits sz = getObjCEncodingTypeSize(PType);
Douglas Gregorf968d832011-05-27 01:19:52 +00004883 if (sz.isZero())
Fariborz Jahanian7e68ba52012-06-29 22:54:56 +00004884 continue;
4885
Ken Dyck199c3d62010-01-11 17:06:35 +00004886 assert (sz.isPositive() &&
4887 "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004888 ParmOffset += sz;
4889 }
Ken Dyck199c3d62010-01-11 17:06:35 +00004890 S += charUnitsToString(ParmOffset);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004891 S += "@0:";
Ken Dyck199c3d62010-01-11 17:06:35 +00004892 S += charUnitsToString(PtrSize);
Mike Stump1eb44332009-09-09 15:08:12 +00004893
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004894 // Argument types.
4895 ParmOffset = 2 * PtrSize;
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00004896 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
Fariborz Jahanian7732cc92010-04-08 21:29:11 +00004897 E = Decl->sel_param_end(); PI != E; ++PI) {
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00004898 const ParmVarDecl *PVDecl = *PI;
Mike Stump1eb44332009-09-09 15:08:12 +00004899 QualType PType = PVDecl->getOriginalType();
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00004900 if (const ArrayType *AT =
Steve Naroffab76d452009-04-14 00:03:58 +00004901 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
4902 // Use array's original type only if it has known number of
4903 // elements.
Steve Naroffbb3fde32009-04-14 00:40:09 +00004904 if (!isa<ConstantArrayType>(AT))
Steve Naroffab76d452009-04-14 00:03:58 +00004905 PType = PVDecl->getType();
4906 } else if (PType->isFunctionType())
4907 PType = PVDecl->getType();
Bob Wilsondc8dab62011-11-30 01:57:58 +00004908 getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(),
4909 PType, S, Extended);
Ken Dyck199c3d62010-01-11 17:06:35 +00004910 S += charUnitsToString(ParmOffset);
Ken Dyckaa8741a2010-01-11 19:19:56 +00004911 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004912 }
Douglas Gregorf968d832011-05-27 01:19:52 +00004913
4914 return false;
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004915}
4916
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004917/// getObjCEncodingForPropertyDecl - Return the encoded type for this
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00004918/// property declaration. If non-NULL, Container must be either an
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004919/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
4920/// NULL when getting encodings for protocol properties.
Mike Stump1eb44332009-09-09 15:08:12 +00004921/// Property attributes are stored as a comma-delimited C string. The simple
4922/// attributes readonly and bycopy are encoded as single characters. The
4923/// parametrized attributes, getter=name, setter=name, and ivar=name, are
4924/// encoded as single characters, followed by an identifier. Property types
4925/// are also encoded as a parametrized attribute. The characters used to encode
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00004926/// these attributes are defined by the following enumeration:
4927/// @code
4928/// enum PropertyAttributes {
4929/// kPropertyReadOnly = 'R', // property is read-only.
4930/// kPropertyBycopy = 'C', // property is a copy of the value last assigned
4931/// kPropertyByref = '&', // property is a reference to the value last assigned
4932/// kPropertyDynamic = 'D', // property is dynamic
4933/// kPropertyGetter = 'G', // followed by getter selector name
4934/// kPropertySetter = 'S', // followed by setter selector name
4935/// kPropertyInstanceVariable = 'V' // followed by instance variable name
Bob Wilson0d4cb852012-03-22 17:48:02 +00004936/// kPropertyType = 'T' // followed by old-style type encoding.
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00004937/// kPropertyWeak = 'W' // 'weak' property
4938/// kPropertyStrong = 'P' // property GC'able
4939/// kPropertyNonAtomic = 'N' // property non-atomic
4940/// };
4941/// @endcode
Mike Stump1eb44332009-09-09 15:08:12 +00004942void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004943 const Decl *Container,
Jay Foad4ba2a172011-01-12 09:06:06 +00004944 std::string& S) const {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004945 // Collect information from the property implementation decl(s).
4946 bool Dynamic = false;
4947 ObjCPropertyImplDecl *SynthesizePID = 0;
4948
4949 // FIXME: Duplicated code due to poor abstraction.
4950 if (Container) {
Mike Stump1eb44332009-09-09 15:08:12 +00004951 if (const ObjCCategoryImplDecl *CID =
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004952 dyn_cast<ObjCCategoryImplDecl>(Container)) {
4953 for (ObjCCategoryImplDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004954 i = CID->propimpl_begin(), e = CID->propimpl_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00004955 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00004956 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004957 if (PID->getPropertyDecl() == PD) {
4958 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4959 Dynamic = true;
4960 } else {
4961 SynthesizePID = PID;
4962 }
4963 }
4964 }
4965 } else {
Chris Lattner61710852008-10-05 17:34:18 +00004966 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004967 for (ObjCCategoryImplDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004968 i = OID->propimpl_begin(), e = OID->propimpl_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00004969 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00004970 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004971 if (PID->getPropertyDecl() == PD) {
4972 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4973 Dynamic = true;
4974 } else {
4975 SynthesizePID = PID;
4976 }
4977 }
Mike Stump1eb44332009-09-09 15:08:12 +00004978 }
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004979 }
4980 }
4981
4982 // FIXME: This is not very efficient.
4983 S = "T";
4984
4985 // Encode result type.
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00004986 // GCC has some special rules regarding encoding of properties which
4987 // closely resembles encoding of ivars.
Mike Stump1eb44332009-09-09 15:08:12 +00004988 getObjCEncodingForTypeImpl(PD->getType(), S, true, true, 0,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00004989 true /* outermost type */,
4990 true /* encoding for property */);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004991
4992 if (PD->isReadOnly()) {
4993 S += ",R";
Nico Weberd7ceab32013-05-08 23:47:40 +00004994 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy)
4995 S += ",C";
4996 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain)
4997 S += ",&";
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004998 } else {
4999 switch (PD->getSetterKind()) {
5000 case ObjCPropertyDecl::Assign: break;
5001 case ObjCPropertyDecl::Copy: S += ",C"; break;
Mike Stump1eb44332009-09-09 15:08:12 +00005002 case ObjCPropertyDecl::Retain: S += ",&"; break;
Fariborz Jahanian3a02b442011-08-12 20:47:08 +00005003 case ObjCPropertyDecl::Weak: S += ",W"; break;
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00005004 }
5005 }
5006
5007 // It really isn't clear at all what this means, since properties
5008 // are "dynamic by default".
5009 if (Dynamic)
5010 S += ",D";
5011
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00005012 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
5013 S += ",N";
Mike Stump1eb44332009-09-09 15:08:12 +00005014
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00005015 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
5016 S += ",G";
Chris Lattner077bf5e2008-11-24 03:33:13 +00005017 S += PD->getGetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00005018 }
5019
5020 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
5021 S += ",S";
Chris Lattner077bf5e2008-11-24 03:33:13 +00005022 S += PD->getSetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00005023 }
5024
5025 if (SynthesizePID) {
5026 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
5027 S += ",V";
Chris Lattner39f34e92008-11-24 04:00:27 +00005028 S += OID->getNameAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00005029 }
5030
5031 // FIXME: OBJCGC: weak & strong
5032}
5033
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005034/// getLegacyIntegralTypeEncoding -
Mike Stump1eb44332009-09-09 15:08:12 +00005035/// Another legacy compatibility encoding: 32-bit longs are encoded as
5036/// 'l' or 'L' , but not always. For typedefs, we need to use
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005037/// 'i' or 'I' instead if encoding a struct field, or a pointer!
5038///
5039void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
Mike Stump8e1fab22009-07-22 18:58:19 +00005040 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
John McCall183700f2009-09-21 23:43:11 +00005041 if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
Jay Foad4ba2a172011-01-12 09:06:06 +00005042 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005043 PointeeTy = UnsignedIntTy;
Mike Stump1eb44332009-09-09 15:08:12 +00005044 else
Jay Foad4ba2a172011-01-12 09:06:06 +00005045 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005046 PointeeTy = IntTy;
5047 }
5048 }
5049}
5050
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00005051void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
Jay Foad4ba2a172011-01-12 09:06:06 +00005052 const FieldDecl *Field) const {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00005053 // We follow the behavior of gcc, expanding structures which are
5054 // directly pointed to, and expanding embedded structures. Note that
5055 // these rules are sufficient to prevent recursive encoding of the
5056 // same type.
Mike Stump1eb44332009-09-09 15:08:12 +00005057 getObjCEncodingForTypeImpl(T, S, true, true, Field,
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00005058 true /* outermost type */);
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00005059}
5060
John McCall3624e9e2012-12-20 02:45:14 +00005061static char getObjCEncodingForPrimitiveKind(const ASTContext *C,
5062 BuiltinType::Kind kind) {
5063 switch (kind) {
David Chisnall64fd7e82010-06-04 01:10:52 +00005064 case BuiltinType::Void: return 'v';
5065 case BuiltinType::Bool: return 'B';
5066 case BuiltinType::Char_U:
5067 case BuiltinType::UChar: return 'C';
John McCall3624e9e2012-12-20 02:45:14 +00005068 case BuiltinType::Char16:
David Chisnall64fd7e82010-06-04 01:10:52 +00005069 case BuiltinType::UShort: return 'S';
John McCall3624e9e2012-12-20 02:45:14 +00005070 case BuiltinType::Char32:
David Chisnall64fd7e82010-06-04 01:10:52 +00005071 case BuiltinType::UInt: return 'I';
5072 case BuiltinType::ULong:
John McCall3624e9e2012-12-20 02:45:14 +00005073 return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q';
David Chisnall64fd7e82010-06-04 01:10:52 +00005074 case BuiltinType::UInt128: return 'T';
5075 case BuiltinType::ULongLong: return 'Q';
5076 case BuiltinType::Char_S:
5077 case BuiltinType::SChar: return 'c';
5078 case BuiltinType::Short: return 's';
Chris Lattner3f59c972010-12-25 23:25:43 +00005079 case BuiltinType::WChar_S:
5080 case BuiltinType::WChar_U:
David Chisnall64fd7e82010-06-04 01:10:52 +00005081 case BuiltinType::Int: return 'i';
5082 case BuiltinType::Long:
John McCall3624e9e2012-12-20 02:45:14 +00005083 return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q';
David Chisnall64fd7e82010-06-04 01:10:52 +00005084 case BuiltinType::LongLong: return 'q';
5085 case BuiltinType::Int128: return 't';
5086 case BuiltinType::Float: return 'f';
5087 case BuiltinType::Double: return 'd';
Daniel Dunbar3a0be842010-10-11 21:13:48 +00005088 case BuiltinType::LongDouble: return 'D';
John McCall3624e9e2012-12-20 02:45:14 +00005089 case BuiltinType::NullPtr: return '*'; // like char*
5090
5091 case BuiltinType::Half:
5092 // FIXME: potentially need @encodes for these!
5093 return ' ';
5094
5095 case BuiltinType::ObjCId:
5096 case BuiltinType::ObjCClass:
5097 case BuiltinType::ObjCSel:
5098 llvm_unreachable("@encoding ObjC primitive type");
5099
5100 // OpenCL and placeholder types don't need @encodings.
5101 case BuiltinType::OCLImage1d:
5102 case BuiltinType::OCLImage1dArray:
5103 case BuiltinType::OCLImage1dBuffer:
5104 case BuiltinType::OCLImage2d:
5105 case BuiltinType::OCLImage2dArray:
5106 case BuiltinType::OCLImage3d:
Guy Benyeie6b9d802013-01-20 12:31:11 +00005107 case BuiltinType::OCLEvent:
Guy Benyei21f18c42013-02-07 10:55:47 +00005108 case BuiltinType::OCLSampler:
John McCall3624e9e2012-12-20 02:45:14 +00005109 case BuiltinType::Dependent:
5110#define BUILTIN_TYPE(KIND, ID)
5111#define PLACEHOLDER_TYPE(KIND, ID) \
5112 case BuiltinType::KIND:
5113#include "clang/AST/BuiltinTypes.def"
5114 llvm_unreachable("invalid builtin type for @encode");
David Chisnall64fd7e82010-06-04 01:10:52 +00005115 }
David Blaikie719e53f2013-01-09 17:48:41 +00005116 llvm_unreachable("invalid BuiltinType::Kind value");
David Chisnall64fd7e82010-06-04 01:10:52 +00005117}
5118
Douglas Gregor5471bc82011-09-08 17:18:35 +00005119static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) {
5120 EnumDecl *Enum = ET->getDecl();
5121
5122 // The encoding of an non-fixed enum type is always 'i', regardless of size.
5123 if (!Enum->isFixed())
5124 return 'i';
5125
5126 // The encoding of a fixed enum type matches its fixed underlying type.
John McCall3624e9e2012-12-20 02:45:14 +00005127 const BuiltinType *BT = Enum->getIntegerType()->castAs<BuiltinType>();
5128 return getObjCEncodingForPrimitiveKind(C, BT->getKind());
Douglas Gregor5471bc82011-09-08 17:18:35 +00005129}
5130
Jay Foad4ba2a172011-01-12 09:06:06 +00005131static void EncodeBitField(const ASTContext *Ctx, std::string& S,
David Chisnall64fd7e82010-06-04 01:10:52 +00005132 QualType T, const FieldDecl *FD) {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00005133 assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl");
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00005134 S += 'b';
David Chisnall64fd7e82010-06-04 01:10:52 +00005135 // The NeXT runtime encodes bit fields as b followed by the number of bits.
5136 // The GNU runtime requires more information; bitfields are encoded as b,
5137 // then the offset (in bits) of the first element, then the type of the
5138 // bitfield, then the size in bits. For example, in this structure:
5139 //
5140 // struct
5141 // {
5142 // int integer;
5143 // int flags:2;
5144 // };
5145 // On a 32-bit system, the encoding for flags would be b2 for the NeXT
5146 // runtime, but b32i2 for the GNU runtime. The reason for this extra
5147 // information is not especially sensible, but we're stuck with it for
5148 // compatibility with GCC, although providing it breaks anything that
5149 // actually uses runtime introspection and wants to work on both runtimes...
John McCall260611a2012-06-20 06:18:46 +00005150 if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) {
David Chisnall64fd7e82010-06-04 01:10:52 +00005151 const RecordDecl *RD = FD->getParent();
5152 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD);
Eli Friedman82905742011-07-07 01:54:01 +00005153 S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));
Douglas Gregor5471bc82011-09-08 17:18:35 +00005154 if (const EnumType *ET = T->getAs<EnumType>())
5155 S += ObjCEncodingForEnumType(Ctx, ET);
John McCall3624e9e2012-12-20 02:45:14 +00005156 else {
5157 const BuiltinType *BT = T->castAs<BuiltinType>();
5158 S += getObjCEncodingForPrimitiveKind(Ctx, BT->getKind());
5159 }
David Chisnall64fd7e82010-06-04 01:10:52 +00005160 }
Richard Smitha6b8b2c2011-10-10 18:28:20 +00005161 S += llvm::utostr(FD->getBitWidthValue(*Ctx));
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00005162}
5163
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00005164// FIXME: Use SmallString for accumulating string.
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00005165void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
5166 bool ExpandPointedToStructures,
5167 bool ExpandStructures,
Daniel Dunbar153bfe52009-04-20 06:37:24 +00005168 const FieldDecl *FD,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00005169 bool OutermostType,
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005170 bool EncodingProperty,
Bob Wilsondc8dab62011-11-30 01:57:58 +00005171 bool StructField,
5172 bool EncodeBlockParameters,
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005173 bool EncodeClassNames,
5174 bool EncodePointerToObjCTypedef) const {
John McCall3624e9e2012-12-20 02:45:14 +00005175 CanQualType CT = getCanonicalType(T);
5176 switch (CT->getTypeClass()) {
5177 case Type::Builtin:
5178 case Type::Enum:
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005179 if (FD && FD->isBitField())
David Chisnall64fd7e82010-06-04 01:10:52 +00005180 return EncodeBitField(this, S, T, FD);
John McCall3624e9e2012-12-20 02:45:14 +00005181 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CT))
5182 S += getObjCEncodingForPrimitiveKind(this, BT->getKind());
5183 else
5184 S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005185 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005186
John McCall3624e9e2012-12-20 02:45:14 +00005187 case Type::Complex: {
5188 const ComplexType *CT = T->castAs<ComplexType>();
Anders Carlssonc612f7b2009-04-09 21:55:45 +00005189 S += 'j';
Mike Stump1eb44332009-09-09 15:08:12 +00005190 getObjCEncodingForTypeImpl(CT->getElementType(), S, false, false, 0, false,
Anders Carlssonc612f7b2009-04-09 21:55:45 +00005191 false);
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005192 return;
5193 }
John McCall3624e9e2012-12-20 02:45:14 +00005194
5195 case Type::Atomic: {
5196 const AtomicType *AT = T->castAs<AtomicType>();
5197 S += 'A';
5198 getObjCEncodingForTypeImpl(AT->getValueType(), S, false, false, 0,
5199 false, false);
5200 return;
Fariborz Jahanianaa1d7612010-04-13 23:45:47 +00005201 }
John McCall3624e9e2012-12-20 02:45:14 +00005202
5203 // encoding for pointer or reference types.
5204 case Type::Pointer:
5205 case Type::LValueReference:
5206 case Type::RValueReference: {
5207 QualType PointeeTy;
5208 if (isa<PointerType>(CT)) {
5209 const PointerType *PT = T->castAs<PointerType>();
5210 if (PT->isObjCSelType()) {
5211 S += ':';
5212 return;
5213 }
5214 PointeeTy = PT->getPointeeType();
5215 } else {
5216 PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
5217 }
5218
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005219 bool isReadOnly = false;
5220 // For historical/compatibility reasons, the read-only qualifier of the
5221 // pointee gets emitted _before_ the '^'. The read-only qualifier of
5222 // the pointer itself gets ignored, _unless_ we are looking at a typedef!
Mike Stump1eb44332009-09-09 15:08:12 +00005223 // Also, do not emit the 'r' for anything but the outermost type!
Mike Stump8e1fab22009-07-22 18:58:19 +00005224 if (isa<TypedefType>(T.getTypePtr())) {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005225 if (OutermostType && T.isConstQualified()) {
5226 isReadOnly = true;
5227 S += 'r';
5228 }
Mike Stump9fdbab32009-07-31 02:02:20 +00005229 } else if (OutermostType) {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005230 QualType P = PointeeTy;
Ted Kremenek6217b802009-07-29 21:53:49 +00005231 while (P->getAs<PointerType>())
5232 P = P->getAs<PointerType>()->getPointeeType();
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005233 if (P.isConstQualified()) {
5234 isReadOnly = true;
5235 S += 'r';
5236 }
5237 }
5238 if (isReadOnly) {
5239 // Another legacy compatibility encoding. Some ObjC qualifier and type
5240 // combinations need to be rearranged.
5241 // Rewrite "in const" from "nr" to "rn"
Chris Lattner5f9e2722011-07-23 10:55:15 +00005242 if (StringRef(S).endswith("nr"))
Benjamin Kramer02379412010-04-27 17:12:11 +00005243 S.replace(S.end()-2, S.end(), "rn");
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005244 }
Mike Stump1eb44332009-09-09 15:08:12 +00005245
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005246 if (PointeeTy->isCharType()) {
5247 // char pointer types should be encoded as '*' unless it is a
5248 // type that has been typedef'd to 'BOOL'.
Anders Carlssone8c49532007-10-29 06:33:42 +00005249 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005250 S += '*';
5251 return;
5252 }
Ted Kremenek6217b802009-07-29 21:53:49 +00005253 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
Steve Naroff9533a7f2009-07-22 17:14:51 +00005254 // GCC binary compat: Need to convert "struct objc_class *" to "#".
5255 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
5256 S += '#';
5257 return;
5258 }
5259 // GCC binary compat: Need to convert "struct objc_object *" to "@".
5260 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
5261 S += '@';
5262 return;
5263 }
5264 // fall through...
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005265 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005266 S += '^';
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005267 getLegacyIntegralTypeEncoding(PointeeTy);
5268
Mike Stump1eb44332009-09-09 15:08:12 +00005269 getObjCEncodingForTypeImpl(PointeeTy, S, false, ExpandPointedToStructures,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005270 NULL);
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005271 return;
5272 }
John McCall3624e9e2012-12-20 02:45:14 +00005273
5274 case Type::ConstantArray:
5275 case Type::IncompleteArray:
5276 case Type::VariableArray: {
5277 const ArrayType *AT = cast<ArrayType>(CT);
5278
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005279 if (isa<IncompleteArrayType>(AT) && !StructField) {
Anders Carlsson559a8332009-02-22 01:38:57 +00005280 // Incomplete arrays are encoded as a pointer to the array element.
5281 S += '^';
5282
Mike Stump1eb44332009-09-09 15:08:12 +00005283 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Anders Carlsson559a8332009-02-22 01:38:57 +00005284 false, ExpandStructures, FD);
5285 } else {
5286 S += '[';
Mike Stump1eb44332009-09-09 15:08:12 +00005287
Fariborz Jahanian48eff6c2013-06-04 16:04:37 +00005288 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
5289 S += llvm::utostr(CAT->getSize().getZExtValue());
5290 else {
Anders Carlsson559a8332009-02-22 01:38:57 +00005291 //Variable length arrays are encoded as a regular array with 0 elements.
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005292 assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) &&
5293 "Unknown array type!");
Anders Carlsson559a8332009-02-22 01:38:57 +00005294 S += '0';
5295 }
Mike Stump1eb44332009-09-09 15:08:12 +00005296
5297 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Anders Carlsson559a8332009-02-22 01:38:57 +00005298 false, ExpandStructures, FD);
5299 S += ']';
5300 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005301 return;
5302 }
Mike Stump1eb44332009-09-09 15:08:12 +00005303
John McCall3624e9e2012-12-20 02:45:14 +00005304 case Type::FunctionNoProto:
5305 case Type::FunctionProto:
Anders Carlssonc0a87b72007-10-30 00:06:20 +00005306 S += '?';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005307 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005308
John McCall3624e9e2012-12-20 02:45:14 +00005309 case Type::Record: {
5310 RecordDecl *RDecl = cast<RecordType>(CT)->getDecl();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00005311 S += RDecl->isUnion() ? '(' : '{';
Daniel Dunbar502a4a12008-10-17 06:22:57 +00005312 // Anonymous structures print as '?'
5313 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
5314 S += II->getName();
Fariborz Jahanian6fb94392010-05-07 00:28:49 +00005315 if (ClassTemplateSpecializationDecl *Spec
5316 = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) {
5317 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Benjamin Kramer5eada842013-02-22 15:46:01 +00005318 llvm::raw_string_ostream OS(S);
5319 TemplateSpecializationType::PrintTemplateArgumentList(OS,
Douglas Gregor910f8002010-11-07 23:05:16 +00005320 TemplateArgs.data(),
5321 TemplateArgs.size(),
Douglas Gregor30c42402011-09-27 22:38:19 +00005322 (*this).getPrintingPolicy());
Fariborz Jahanian6fb94392010-05-07 00:28:49 +00005323 }
Daniel Dunbar502a4a12008-10-17 06:22:57 +00005324 } else {
5325 S += '?';
5326 }
Daniel Dunbar0d504c12008-10-17 20:21:44 +00005327 if (ExpandStructures) {
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00005328 S += '=';
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005329 if (!RDecl->isUnion()) {
5330 getObjCEncodingForStructureImpl(RDecl, S, FD);
5331 } else {
5332 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
5333 FieldEnd = RDecl->field_end();
5334 Field != FieldEnd; ++Field) {
5335 if (FD) {
5336 S += '"';
5337 S += Field->getNameAsString();
5338 S += '"';
5339 }
Mike Stump1eb44332009-09-09 15:08:12 +00005340
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005341 // Special case bit-fields.
5342 if (Field->isBitField()) {
5343 getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
David Blaikie581deb32012-06-06 20:45:41 +00005344 *Field);
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005345 } else {
5346 QualType qt = Field->getType();
5347 getLegacyIntegralTypeEncoding(qt);
5348 getObjCEncodingForTypeImpl(qt, S, false, true,
5349 FD, /*OutermostType*/false,
5350 /*EncodingProperty*/false,
5351 /*StructField*/true);
5352 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00005353 }
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00005354 }
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00005355 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00005356 S += RDecl->isUnion() ? ')' : '}';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005357 return;
5358 }
Mike Stump1eb44332009-09-09 15:08:12 +00005359
John McCall3624e9e2012-12-20 02:45:14 +00005360 case Type::BlockPointer: {
5361 const BlockPointerType *BT = T->castAs<BlockPointerType>();
Steve Naroff21a98b12009-02-02 18:24:29 +00005362 S += "@?"; // Unlike a pointer-to-function, which is "^?".
Bob Wilsondc8dab62011-11-30 01:57:58 +00005363 if (EncodeBlockParameters) {
John McCall3624e9e2012-12-20 02:45:14 +00005364 const FunctionType *FT = BT->getPointeeType()->castAs<FunctionType>();
Bob Wilsondc8dab62011-11-30 01:57:58 +00005365
5366 S += '<';
5367 // Block return type
5368 getObjCEncodingForTypeImpl(FT->getResultType(), S,
5369 ExpandPointedToStructures, ExpandStructures,
5370 FD,
5371 false /* OutermostType */,
5372 EncodingProperty,
5373 false /* StructField */,
5374 EncodeBlockParameters,
5375 EncodeClassNames);
5376 // Block self
5377 S += "@?";
5378 // Block parameters
5379 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
5380 for (FunctionProtoType::arg_type_iterator I = FPT->arg_type_begin(),
5381 E = FPT->arg_type_end(); I && (I != E); ++I) {
5382 getObjCEncodingForTypeImpl(*I, S,
5383 ExpandPointedToStructures,
5384 ExpandStructures,
5385 FD,
5386 false /* OutermostType */,
5387 EncodingProperty,
5388 false /* StructField */,
5389 EncodeBlockParameters,
5390 EncodeClassNames);
5391 }
5392 }
5393 S += '>';
5394 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005395 return;
5396 }
Mike Stump1eb44332009-09-09 15:08:12 +00005397
John McCall3624e9e2012-12-20 02:45:14 +00005398 case Type::ObjCObject:
5399 case Type::ObjCInterface: {
5400 // Ignore protocol qualifiers when mangling at this level.
5401 T = T->castAs<ObjCObjectType>()->getBaseType();
John McCallc12c5bb2010-05-15 11:32:37 +00005402
John McCall3624e9e2012-12-20 02:45:14 +00005403 // The assumption seems to be that this assert will succeed
5404 // because nested levels will have filtered out 'id' and 'Class'.
5405 const ObjCInterfaceType *OIT = T->castAs<ObjCInterfaceType>();
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005406 // @encode(class_name)
John McCall0953e762009-09-24 19:53:00 +00005407 ObjCInterfaceDecl *OI = OIT->getDecl();
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005408 S += '{';
5409 const IdentifierInfo *II = OI->getIdentifier();
5410 S += II->getName();
5411 S += '=';
Jordy Rosedb8264e2011-07-22 02:08:32 +00005412 SmallVector<const ObjCIvarDecl*, 32> Ivars;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00005413 DeepCollectObjCIvars(OI, true, Ivars);
5414 for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00005415 const FieldDecl *Field = cast<FieldDecl>(Ivars[i]);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00005416 if (Field->isBitField())
5417 getObjCEncodingForTypeImpl(Field->getType(), S, false, true, Field);
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005418 else
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005419 getObjCEncodingForTypeImpl(Field->getType(), S, false, true, FD,
5420 false, false, false, false, false,
5421 EncodePointerToObjCTypedef);
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005422 }
5423 S += '}';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005424 return;
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005425 }
Mike Stump1eb44332009-09-09 15:08:12 +00005426
John McCall3624e9e2012-12-20 02:45:14 +00005427 case Type::ObjCObjectPointer: {
5428 const ObjCObjectPointerType *OPT = T->castAs<ObjCObjectPointerType>();
Steve Naroff14108da2009-07-10 23:34:53 +00005429 if (OPT->isObjCIdType()) {
5430 S += '@';
5431 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005432 }
Mike Stump1eb44332009-09-09 15:08:12 +00005433
Steve Naroff27d20a22009-10-28 22:03:49 +00005434 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
5435 // FIXME: Consider if we need to output qualifiers for 'Class<p>'.
5436 // Since this is a binary compatibility issue, need to consult with runtime
5437 // folks. Fortunately, this is a *very* obsure construct.
Steve Naroff14108da2009-07-10 23:34:53 +00005438 S += '#';
5439 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005440 }
Mike Stump1eb44332009-09-09 15:08:12 +00005441
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005442 if (OPT->isObjCQualifiedIdType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005443 getObjCEncodingForTypeImpl(getObjCIdType(), S,
Steve Naroff14108da2009-07-10 23:34:53 +00005444 ExpandPointedToStructures,
5445 ExpandStructures, FD);
Bob Wilsondc8dab62011-11-30 01:57:58 +00005446 if (FD || EncodingProperty || EncodeClassNames) {
Steve Naroff14108da2009-07-10 23:34:53 +00005447 // Note that we do extended encoding of protocol qualifer list
5448 // Only when doing ivar or property encoding.
Steve Naroff14108da2009-07-10 23:34:53 +00005449 S += '"';
Steve Naroff67ef8ea2009-07-20 17:56:53 +00005450 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
5451 E = OPT->qual_end(); I != E; ++I) {
Steve Naroff14108da2009-07-10 23:34:53 +00005452 S += '<';
5453 S += (*I)->getNameAsString();
5454 S += '>';
5455 }
5456 S += '"';
5457 }
5458 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005459 }
Mike Stump1eb44332009-09-09 15:08:12 +00005460
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005461 QualType PointeeTy = OPT->getPointeeType();
5462 if (!EncodingProperty &&
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005463 isa<TypedefType>(PointeeTy.getTypePtr()) &&
5464 !EncodePointerToObjCTypedef) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005465 // Another historical/compatibility reason.
Mike Stump1eb44332009-09-09 15:08:12 +00005466 // We encode the underlying type which comes out as
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005467 // {...};
5468 S += '^';
Mike Stump1eb44332009-09-09 15:08:12 +00005469 getObjCEncodingForTypeImpl(PointeeTy, S,
5470 false, ExpandPointedToStructures,
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005471 NULL,
5472 false, false, false, false, false,
5473 /*EncodePointerToObjCTypedef*/true);
Steve Naroff14108da2009-07-10 23:34:53 +00005474 return;
5475 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005476
5477 S += '@';
Bob Wilsondc8dab62011-11-30 01:57:58 +00005478 if (OPT->getInterfaceDecl() &&
5479 (FD || EncodingProperty || EncodeClassNames)) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005480 S += '"';
Steve Naroff27d20a22009-10-28 22:03:49 +00005481 S += OPT->getInterfaceDecl()->getIdentifier()->getName();
Steve Naroff67ef8ea2009-07-20 17:56:53 +00005482 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
5483 E = OPT->qual_end(); I != E; ++I) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005484 S += '<';
5485 S += (*I)->getNameAsString();
5486 S += '>';
Mike Stump1eb44332009-09-09 15:08:12 +00005487 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005488 S += '"';
5489 }
5490 return;
5491 }
Mike Stump1eb44332009-09-09 15:08:12 +00005492
John McCall532ec7b2010-05-17 23:56:34 +00005493 // gcc just blithely ignores member pointers.
John McCall3624e9e2012-12-20 02:45:14 +00005494 // FIXME: we shoul do better than that. 'M' is available.
5495 case Type::MemberPointer:
John McCall532ec7b2010-05-17 23:56:34 +00005496 return;
Fariborz Jahaniane6012c72010-10-07 21:25:25 +00005497
John McCall3624e9e2012-12-20 02:45:14 +00005498 case Type::Vector:
5499 case Type::ExtVector:
Fariborz Jahaniane6012c72010-10-07 21:25:25 +00005500 // This matches gcc's encoding, even though technically it is
5501 // insufficient.
5502 // FIXME. We should do a better job than gcc.
5503 return;
John McCall3624e9e2012-12-20 02:45:14 +00005504
Richard Smithdc7a4f52013-04-30 13:56:41 +00005505 case Type::Auto:
5506 // We could see an undeduced auto type here during error recovery.
5507 // Just ignore it.
5508 return;
5509
John McCall3624e9e2012-12-20 02:45:14 +00005510#define ABSTRACT_TYPE(KIND, BASE)
5511#define TYPE(KIND, BASE)
5512#define DEPENDENT_TYPE(KIND, BASE) \
5513 case Type::KIND:
5514#define NON_CANONICAL_TYPE(KIND, BASE) \
5515 case Type::KIND:
5516#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \
5517 case Type::KIND:
5518#include "clang/AST/TypeNodes.def"
5519 llvm_unreachable("@encode for dependent type!");
Fariborz Jahaniane6012c72010-10-07 21:25:25 +00005520 }
John McCall3624e9e2012-12-20 02:45:14 +00005521 llvm_unreachable("bad type kind!");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005522}
5523
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005524void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl,
5525 std::string &S,
5526 const FieldDecl *FD,
5527 bool includeVBases) const {
5528 assert(RDecl && "Expected non-null RecordDecl");
5529 assert(!RDecl->isUnion() && "Should not be called for unions");
5530 if (!RDecl->getDefinition())
5531 return;
5532
5533 CXXRecordDecl *CXXRec = dyn_cast<CXXRecordDecl>(RDecl);
5534 std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets;
5535 const ASTRecordLayout &layout = getASTRecordLayout(RDecl);
5536
5537 if (CXXRec) {
5538 for (CXXRecordDecl::base_class_iterator
5539 BI = CXXRec->bases_begin(),
5540 BE = CXXRec->bases_end(); BI != BE; ++BI) {
5541 if (!BI->isVirtual()) {
5542 CXXRecordDecl *base = BI->getType()->getAsCXXRecordDecl();
Argyrios Kyrtzidis829f2002011-06-17 23:19:38 +00005543 if (base->isEmpty())
5544 continue;
Benjamin Kramerd4f51982012-07-04 18:45:14 +00005545 uint64_t offs = toBits(layout.getBaseClassOffset(base));
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005546 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
5547 std::make_pair(offs, base));
5548 }
5549 }
5550 }
5551
5552 unsigned i = 0;
5553 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
5554 FieldEnd = RDecl->field_end();
5555 Field != FieldEnd; ++Field, ++i) {
5556 uint64_t offs = layout.getFieldOffset(i);
5557 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
David Blaikie581deb32012-06-06 20:45:41 +00005558 std::make_pair(offs, *Field));
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005559 }
5560
5561 if (CXXRec && includeVBases) {
5562 for (CXXRecordDecl::base_class_iterator
5563 BI = CXXRec->vbases_begin(),
5564 BE = CXXRec->vbases_end(); BI != BE; ++BI) {
5565 CXXRecordDecl *base = BI->getType()->getAsCXXRecordDecl();
Argyrios Kyrtzidis829f2002011-06-17 23:19:38 +00005566 if (base->isEmpty())
5567 continue;
Benjamin Kramerd4f51982012-07-04 18:45:14 +00005568 uint64_t offs = toBits(layout.getVBaseClassOffset(base));
Argyrios Kyrtzidis19aa8602011-09-26 18:14:24 +00005569 if (FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end())
5570 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(),
5571 std::make_pair(offs, base));
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005572 }
5573 }
5574
5575 CharUnits size;
5576 if (CXXRec) {
5577 size = includeVBases ? layout.getSize() : layout.getNonVirtualSize();
5578 } else {
5579 size = layout.getSize();
5580 }
5581
5582 uint64_t CurOffs = 0;
5583 std::multimap<uint64_t, NamedDecl *>::iterator
5584 CurLayObj = FieldOrBaseOffsets.begin();
5585
Douglas Gregor58db7a52012-04-27 22:30:01 +00005586 if (CXXRec && CXXRec->isDynamicClass() &&
5587 (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) {
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005588 if (FD) {
5589 S += "\"_vptr$";
5590 std::string recname = CXXRec->getNameAsString();
5591 if (recname.empty()) recname = "?";
5592 S += recname;
5593 S += '"';
5594 }
5595 S += "^^?";
5596 CurOffs += getTypeSize(VoidPtrTy);
5597 }
5598
5599 if (!RDecl->hasFlexibleArrayMember()) {
5600 // Mark the end of the structure.
5601 uint64_t offs = toBits(size);
5602 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
5603 std::make_pair(offs, (NamedDecl*)0));
5604 }
5605
5606 for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) {
5607 assert(CurOffs <= CurLayObj->first);
5608
5609 if (CurOffs < CurLayObj->first) {
5610 uint64_t padding = CurLayObj->first - CurOffs;
5611 // FIXME: There doesn't seem to be a way to indicate in the encoding that
5612 // packing/alignment of members is different that normal, in which case
5613 // the encoding will be out-of-sync with the real layout.
5614 // If the runtime switches to just consider the size of types without
5615 // taking into account alignment, we could make padding explicit in the
5616 // encoding (e.g. using arrays of chars). The encoding strings would be
5617 // longer then though.
5618 CurOffs += padding;
5619 }
5620
5621 NamedDecl *dcl = CurLayObj->second;
5622 if (dcl == 0)
5623 break; // reached end of structure.
5624
5625 if (CXXRecordDecl *base = dyn_cast<CXXRecordDecl>(dcl)) {
5626 // We expand the bases without their virtual bases since those are going
5627 // in the initial structure. Note that this differs from gcc which
5628 // expands virtual bases each time one is encountered in the hierarchy,
5629 // making the encoding type bigger than it really is.
5630 getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false);
Argyrios Kyrtzidis829f2002011-06-17 23:19:38 +00005631 assert(!base->isEmpty());
5632 CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize());
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005633 } else {
5634 FieldDecl *field = cast<FieldDecl>(dcl);
5635 if (FD) {
5636 S += '"';
5637 S += field->getNameAsString();
5638 S += '"';
5639 }
5640
5641 if (field->isBitField()) {
5642 EncodeBitField(this, S, field->getType(), field);
Richard Smitha6b8b2c2011-10-10 18:28:20 +00005643 CurOffs += field->getBitWidthValue(*this);
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005644 } else {
5645 QualType qt = field->getType();
5646 getLegacyIntegralTypeEncoding(qt);
5647 getObjCEncodingForTypeImpl(qt, S, false, true, FD,
5648 /*OutermostType*/false,
5649 /*EncodingProperty*/false,
5650 /*StructField*/true);
5651 CurOffs += getTypeSize(field->getType());
5652 }
5653 }
5654 }
5655}
5656
Mike Stump1eb44332009-09-09 15:08:12 +00005657void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00005658 std::string& S) const {
5659 if (QT & Decl::OBJC_TQ_In)
5660 S += 'n';
5661 if (QT & Decl::OBJC_TQ_Inout)
5662 S += 'N';
5663 if (QT & Decl::OBJC_TQ_Out)
5664 S += 'o';
5665 if (QT & Decl::OBJC_TQ_Bycopy)
5666 S += 'O';
5667 if (QT & Decl::OBJC_TQ_Byref)
5668 S += 'R';
5669 if (QT & Decl::OBJC_TQ_Oneway)
5670 S += 'V';
5671}
5672
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00005673TypedefDecl *ASTContext::getObjCIdDecl() const {
5674 if (!ObjCIdDecl) {
5675 QualType T = getObjCObjectType(ObjCBuiltinIdTy, 0, 0);
5676 T = getObjCObjectPointerType(T);
5677 TypeSourceInfo *IdInfo = getTrivialTypeSourceInfo(T);
5678 ObjCIdDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
5679 getTranslationUnitDecl(),
5680 SourceLocation(), SourceLocation(),
5681 &Idents.get("id"), IdInfo);
5682 }
5683
5684 return ObjCIdDecl;
Steve Naroff7e219e42007-10-15 14:41:52 +00005685}
5686
Douglas Gregor7a27ea52011-08-12 06:17:30 +00005687TypedefDecl *ASTContext::getObjCSelDecl() const {
5688 if (!ObjCSelDecl) {
5689 QualType SelT = getPointerType(ObjCBuiltinSelTy);
5690 TypeSourceInfo *SelInfo = getTrivialTypeSourceInfo(SelT);
5691 ObjCSelDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
5692 getTranslationUnitDecl(),
5693 SourceLocation(), SourceLocation(),
5694 &Idents.get("SEL"), SelInfo);
5695 }
5696 return ObjCSelDecl;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00005697}
5698
Douglas Gregor79d67262011-08-12 05:59:41 +00005699TypedefDecl *ASTContext::getObjCClassDecl() const {
5700 if (!ObjCClassDecl) {
5701 QualType T = getObjCObjectType(ObjCBuiltinClassTy, 0, 0);
5702 T = getObjCObjectPointerType(T);
5703 TypeSourceInfo *ClassInfo = getTrivialTypeSourceInfo(T);
5704 ObjCClassDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
5705 getTranslationUnitDecl(),
5706 SourceLocation(), SourceLocation(),
5707 &Idents.get("Class"), ClassInfo);
5708 }
5709
5710 return ObjCClassDecl;
Anders Carlsson8baaca52007-10-31 02:53:19 +00005711}
5712
Douglas Gregora6ea10e2012-01-17 18:09:05 +00005713ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const {
5714 if (!ObjCProtocolClassDecl) {
5715 ObjCProtocolClassDecl
5716 = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(),
5717 SourceLocation(),
5718 &Idents.get("Protocol"),
5719 /*PrevDecl=*/0,
5720 SourceLocation(), true);
5721 }
5722
5723 return ObjCProtocolClassDecl;
5724}
5725
Meador Ingec5613b22012-06-16 03:34:49 +00005726//===----------------------------------------------------------------------===//
5727// __builtin_va_list Construction Functions
5728//===----------------------------------------------------------------------===//
5729
5730static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) {
5731 // typedef char* __builtin_va_list;
5732 QualType CharPtrType = Context->getPointerType(Context->CharTy);
5733 TypeSourceInfo *TInfo
5734 = Context->getTrivialTypeSourceInfo(CharPtrType);
5735
5736 TypedefDecl *VaListTypeDecl
5737 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5738 Context->getTranslationUnitDecl(),
5739 SourceLocation(), SourceLocation(),
5740 &Context->Idents.get("__builtin_va_list"),
5741 TInfo);
5742 return VaListTypeDecl;
5743}
5744
5745static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) {
5746 // typedef void* __builtin_va_list;
5747 QualType VoidPtrType = Context->getPointerType(Context->VoidTy);
5748 TypeSourceInfo *TInfo
5749 = Context->getTrivialTypeSourceInfo(VoidPtrType);
5750
5751 TypedefDecl *VaListTypeDecl
5752 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5753 Context->getTranslationUnitDecl(),
5754 SourceLocation(), SourceLocation(),
5755 &Context->Idents.get("__builtin_va_list"),
5756 TInfo);
5757 return VaListTypeDecl;
5758}
5759
Tim Northoverc264e162013-01-31 12:13:10 +00005760static TypedefDecl *
5761CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) {
5762 RecordDecl *VaListTagDecl;
5763 if (Context->getLangOpts().CPlusPlus) {
5764 // namespace std { struct __va_list {
5765 NamespaceDecl *NS;
5766 NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
5767 Context->getTranslationUnitDecl(),
5768 /*Inline*/false, SourceLocation(),
5769 SourceLocation(), &Context->Idents.get("std"),
5770 /*PrevDecl*/0);
5771
5772 VaListTagDecl = CXXRecordDecl::Create(*Context, TTK_Struct,
5773 Context->getTranslationUnitDecl(),
5774 SourceLocation(), SourceLocation(),
5775 &Context->Idents.get("__va_list"));
5776 VaListTagDecl->setDeclContext(NS);
5777 } else {
5778 // struct __va_list
5779 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
5780 Context->getTranslationUnitDecl(),
5781 &Context->Idents.get("__va_list"));
5782 }
5783
5784 VaListTagDecl->startDefinition();
5785
5786 const size_t NumFields = 5;
5787 QualType FieldTypes[NumFields];
5788 const char *FieldNames[NumFields];
5789
5790 // void *__stack;
5791 FieldTypes[0] = Context->getPointerType(Context->VoidTy);
5792 FieldNames[0] = "__stack";
5793
5794 // void *__gr_top;
5795 FieldTypes[1] = Context->getPointerType(Context->VoidTy);
5796 FieldNames[1] = "__gr_top";
5797
5798 // void *__vr_top;
5799 FieldTypes[2] = Context->getPointerType(Context->VoidTy);
5800 FieldNames[2] = "__vr_top";
5801
5802 // int __gr_offs;
5803 FieldTypes[3] = Context->IntTy;
5804 FieldNames[3] = "__gr_offs";
5805
5806 // int __vr_offs;
5807 FieldTypes[4] = Context->IntTy;
5808 FieldNames[4] = "__vr_offs";
5809
5810 // Create fields
5811 for (unsigned i = 0; i < NumFields; ++i) {
5812 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
5813 VaListTagDecl,
5814 SourceLocation(),
5815 SourceLocation(),
5816 &Context->Idents.get(FieldNames[i]),
5817 FieldTypes[i], /*TInfo=*/0,
5818 /*BitWidth=*/0,
5819 /*Mutable=*/false,
5820 ICIS_NoInit);
5821 Field->setAccess(AS_public);
5822 VaListTagDecl->addDecl(Field);
5823 }
5824 VaListTagDecl->completeDefinition();
5825 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
5826 Context->VaListTagTy = VaListTagType;
5827
5828 // } __builtin_va_list;
5829 TypedefDecl *VaListTypedefDecl
5830 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5831 Context->getTranslationUnitDecl(),
5832 SourceLocation(), SourceLocation(),
5833 &Context->Idents.get("__builtin_va_list"),
5834 Context->getTrivialTypeSourceInfo(VaListTagType));
5835
5836 return VaListTypedefDecl;
5837}
5838
Meador Ingec5613b22012-06-16 03:34:49 +00005839static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) {
5840 // typedef struct __va_list_tag {
5841 RecordDecl *VaListTagDecl;
5842
5843 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
5844 Context->getTranslationUnitDecl(),
5845 &Context->Idents.get("__va_list_tag"));
5846 VaListTagDecl->startDefinition();
5847
5848 const size_t NumFields = 5;
5849 QualType FieldTypes[NumFields];
5850 const char *FieldNames[NumFields];
5851
5852 // unsigned char gpr;
5853 FieldTypes[0] = Context->UnsignedCharTy;
5854 FieldNames[0] = "gpr";
5855
5856 // unsigned char fpr;
5857 FieldTypes[1] = Context->UnsignedCharTy;
5858 FieldNames[1] = "fpr";
5859
5860 // unsigned short reserved;
5861 FieldTypes[2] = Context->UnsignedShortTy;
5862 FieldNames[2] = "reserved";
5863
5864 // void* overflow_arg_area;
5865 FieldTypes[3] = Context->getPointerType(Context->VoidTy);
5866 FieldNames[3] = "overflow_arg_area";
5867
5868 // void* reg_save_area;
5869 FieldTypes[4] = Context->getPointerType(Context->VoidTy);
5870 FieldNames[4] = "reg_save_area";
5871
5872 // Create fields
5873 for (unsigned i = 0; i < NumFields; ++i) {
5874 FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl,
5875 SourceLocation(),
5876 SourceLocation(),
5877 &Context->Idents.get(FieldNames[i]),
5878 FieldTypes[i], /*TInfo=*/0,
5879 /*BitWidth=*/0,
5880 /*Mutable=*/false,
5881 ICIS_NoInit);
5882 Field->setAccess(AS_public);
5883 VaListTagDecl->addDecl(Field);
5884 }
5885 VaListTagDecl->completeDefinition();
5886 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
Meador Ingefb40e3f2012-07-01 15:57:25 +00005887 Context->VaListTagTy = VaListTagType;
Meador Ingec5613b22012-06-16 03:34:49 +00005888
5889 // } __va_list_tag;
5890 TypedefDecl *VaListTagTypedefDecl
5891 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5892 Context->getTranslationUnitDecl(),
5893 SourceLocation(), SourceLocation(),
5894 &Context->Idents.get("__va_list_tag"),
5895 Context->getTrivialTypeSourceInfo(VaListTagType));
5896 QualType VaListTagTypedefType =
5897 Context->getTypedefType(VaListTagTypedefDecl);
5898
5899 // typedef __va_list_tag __builtin_va_list[1];
5900 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
5901 QualType VaListTagArrayType
5902 = Context->getConstantArrayType(VaListTagTypedefType,
5903 Size, ArrayType::Normal, 0);
5904 TypeSourceInfo *TInfo
5905 = Context->getTrivialTypeSourceInfo(VaListTagArrayType);
5906 TypedefDecl *VaListTypedefDecl
5907 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5908 Context->getTranslationUnitDecl(),
5909 SourceLocation(), SourceLocation(),
5910 &Context->Idents.get("__builtin_va_list"),
5911 TInfo);
5912
5913 return VaListTypedefDecl;
5914}
5915
5916static TypedefDecl *
5917CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) {
5918 // typedef struct __va_list_tag {
5919 RecordDecl *VaListTagDecl;
5920 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
5921 Context->getTranslationUnitDecl(),
5922 &Context->Idents.get("__va_list_tag"));
5923 VaListTagDecl->startDefinition();
5924
5925 const size_t NumFields = 4;
5926 QualType FieldTypes[NumFields];
5927 const char *FieldNames[NumFields];
5928
5929 // unsigned gp_offset;
5930 FieldTypes[0] = Context->UnsignedIntTy;
5931 FieldNames[0] = "gp_offset";
5932
5933 // unsigned fp_offset;
5934 FieldTypes[1] = Context->UnsignedIntTy;
5935 FieldNames[1] = "fp_offset";
5936
5937 // void* overflow_arg_area;
5938 FieldTypes[2] = Context->getPointerType(Context->VoidTy);
5939 FieldNames[2] = "overflow_arg_area";
5940
5941 // void* reg_save_area;
5942 FieldTypes[3] = Context->getPointerType(Context->VoidTy);
5943 FieldNames[3] = "reg_save_area";
5944
5945 // Create fields
5946 for (unsigned i = 0; i < NumFields; ++i) {
5947 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
5948 VaListTagDecl,
5949 SourceLocation(),
5950 SourceLocation(),
5951 &Context->Idents.get(FieldNames[i]),
5952 FieldTypes[i], /*TInfo=*/0,
5953 /*BitWidth=*/0,
5954 /*Mutable=*/false,
5955 ICIS_NoInit);
5956 Field->setAccess(AS_public);
5957 VaListTagDecl->addDecl(Field);
5958 }
5959 VaListTagDecl->completeDefinition();
5960 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
Meador Ingefb40e3f2012-07-01 15:57:25 +00005961 Context->VaListTagTy = VaListTagType;
Meador Ingec5613b22012-06-16 03:34:49 +00005962
5963 // } __va_list_tag;
5964 TypedefDecl *VaListTagTypedefDecl
5965 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5966 Context->getTranslationUnitDecl(),
5967 SourceLocation(), SourceLocation(),
5968 &Context->Idents.get("__va_list_tag"),
5969 Context->getTrivialTypeSourceInfo(VaListTagType));
5970 QualType VaListTagTypedefType =
5971 Context->getTypedefType(VaListTagTypedefDecl);
5972
5973 // typedef __va_list_tag __builtin_va_list[1];
5974 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
5975 QualType VaListTagArrayType
5976 = Context->getConstantArrayType(VaListTagTypedefType,
5977 Size, ArrayType::Normal,0);
5978 TypeSourceInfo *TInfo
5979 = Context->getTrivialTypeSourceInfo(VaListTagArrayType);
5980 TypedefDecl *VaListTypedefDecl
5981 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5982 Context->getTranslationUnitDecl(),
5983 SourceLocation(), SourceLocation(),
5984 &Context->Idents.get("__builtin_va_list"),
5985 TInfo);
5986
5987 return VaListTypedefDecl;
5988}
5989
5990static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) {
5991 // typedef int __builtin_va_list[4];
5992 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4);
5993 QualType IntArrayType
5994 = Context->getConstantArrayType(Context->IntTy,
5995 Size, ArrayType::Normal, 0);
5996 TypedefDecl *VaListTypedefDecl
5997 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5998 Context->getTranslationUnitDecl(),
5999 SourceLocation(), SourceLocation(),
6000 &Context->Idents.get("__builtin_va_list"),
6001 Context->getTrivialTypeSourceInfo(IntArrayType));
6002
6003 return VaListTypedefDecl;
6004}
6005
Logan Chieneae5a8202012-10-10 06:56:20 +00006006static TypedefDecl *
6007CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) {
6008 RecordDecl *VaListDecl;
6009 if (Context->getLangOpts().CPlusPlus) {
6010 // namespace std { struct __va_list {
6011 NamespaceDecl *NS;
6012 NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
6013 Context->getTranslationUnitDecl(),
6014 /*Inline*/false, SourceLocation(),
6015 SourceLocation(), &Context->Idents.get("std"),
6016 /*PrevDecl*/0);
6017
6018 VaListDecl = CXXRecordDecl::Create(*Context, TTK_Struct,
6019 Context->getTranslationUnitDecl(),
6020 SourceLocation(), SourceLocation(),
6021 &Context->Idents.get("__va_list"));
6022
6023 VaListDecl->setDeclContext(NS);
6024
6025 } else {
6026 // struct __va_list {
6027 VaListDecl = CreateRecordDecl(*Context, TTK_Struct,
6028 Context->getTranslationUnitDecl(),
6029 &Context->Idents.get("__va_list"));
6030 }
6031
6032 VaListDecl->startDefinition();
6033
6034 // void * __ap;
6035 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6036 VaListDecl,
6037 SourceLocation(),
6038 SourceLocation(),
6039 &Context->Idents.get("__ap"),
6040 Context->getPointerType(Context->VoidTy),
6041 /*TInfo=*/0,
6042 /*BitWidth=*/0,
6043 /*Mutable=*/false,
6044 ICIS_NoInit);
6045 Field->setAccess(AS_public);
6046 VaListDecl->addDecl(Field);
6047
6048 // };
6049 VaListDecl->completeDefinition();
6050
6051 // typedef struct __va_list __builtin_va_list;
6052 TypeSourceInfo *TInfo
6053 = Context->getTrivialTypeSourceInfo(Context->getRecordType(VaListDecl));
6054
6055 TypedefDecl *VaListTypeDecl
6056 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
6057 Context->getTranslationUnitDecl(),
6058 SourceLocation(), SourceLocation(),
6059 &Context->Idents.get("__builtin_va_list"),
6060 TInfo);
6061
6062 return VaListTypeDecl;
6063}
6064
Ulrich Weigandb8409212013-05-06 16:26:41 +00006065static TypedefDecl *
6066CreateSystemZBuiltinVaListDecl(const ASTContext *Context) {
6067 // typedef struct __va_list_tag {
6068 RecordDecl *VaListTagDecl;
6069 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
6070 Context->getTranslationUnitDecl(),
6071 &Context->Idents.get("__va_list_tag"));
6072 VaListTagDecl->startDefinition();
6073
6074 const size_t NumFields = 4;
6075 QualType FieldTypes[NumFields];
6076 const char *FieldNames[NumFields];
6077
6078 // long __gpr;
6079 FieldTypes[0] = Context->LongTy;
6080 FieldNames[0] = "__gpr";
6081
6082 // long __fpr;
6083 FieldTypes[1] = Context->LongTy;
6084 FieldNames[1] = "__fpr";
6085
6086 // void *__overflow_arg_area;
6087 FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6088 FieldNames[2] = "__overflow_arg_area";
6089
6090 // void *__reg_save_area;
6091 FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6092 FieldNames[3] = "__reg_save_area";
6093
6094 // Create fields
6095 for (unsigned i = 0; i < NumFields; ++i) {
6096 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6097 VaListTagDecl,
6098 SourceLocation(),
6099 SourceLocation(),
6100 &Context->Idents.get(FieldNames[i]),
6101 FieldTypes[i], /*TInfo=*/0,
6102 /*BitWidth=*/0,
6103 /*Mutable=*/false,
6104 ICIS_NoInit);
6105 Field->setAccess(AS_public);
6106 VaListTagDecl->addDecl(Field);
6107 }
6108 VaListTagDecl->completeDefinition();
6109 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6110 Context->VaListTagTy = VaListTagType;
6111
6112 // } __va_list_tag;
6113 TypedefDecl *VaListTagTypedefDecl
6114 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
6115 Context->getTranslationUnitDecl(),
6116 SourceLocation(), SourceLocation(),
6117 &Context->Idents.get("__va_list_tag"),
6118 Context->getTrivialTypeSourceInfo(VaListTagType));
6119 QualType VaListTagTypedefType =
6120 Context->getTypedefType(VaListTagTypedefDecl);
6121
6122 // typedef __va_list_tag __builtin_va_list[1];
6123 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6124 QualType VaListTagArrayType
6125 = Context->getConstantArrayType(VaListTagTypedefType,
6126 Size, ArrayType::Normal,0);
6127 TypeSourceInfo *TInfo
6128 = Context->getTrivialTypeSourceInfo(VaListTagArrayType);
6129 TypedefDecl *VaListTypedefDecl
6130 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
6131 Context->getTranslationUnitDecl(),
6132 SourceLocation(), SourceLocation(),
6133 &Context->Idents.get("__builtin_va_list"),
6134 TInfo);
6135
6136 return VaListTypedefDecl;
6137}
6138
Meador Ingec5613b22012-06-16 03:34:49 +00006139static TypedefDecl *CreateVaListDecl(const ASTContext *Context,
6140 TargetInfo::BuiltinVaListKind Kind) {
6141 switch (Kind) {
6142 case TargetInfo::CharPtrBuiltinVaList:
6143 return CreateCharPtrBuiltinVaListDecl(Context);
6144 case TargetInfo::VoidPtrBuiltinVaList:
6145 return CreateVoidPtrBuiltinVaListDecl(Context);
Tim Northoverc264e162013-01-31 12:13:10 +00006146 case TargetInfo::AArch64ABIBuiltinVaList:
6147 return CreateAArch64ABIBuiltinVaListDecl(Context);
Meador Ingec5613b22012-06-16 03:34:49 +00006148 case TargetInfo::PowerABIBuiltinVaList:
6149 return CreatePowerABIBuiltinVaListDecl(Context);
6150 case TargetInfo::X86_64ABIBuiltinVaList:
6151 return CreateX86_64ABIBuiltinVaListDecl(Context);
6152 case TargetInfo::PNaClABIBuiltinVaList:
6153 return CreatePNaClABIBuiltinVaListDecl(Context);
Logan Chieneae5a8202012-10-10 06:56:20 +00006154 case TargetInfo::AAPCSABIBuiltinVaList:
6155 return CreateAAPCSABIBuiltinVaListDecl(Context);
Ulrich Weigandb8409212013-05-06 16:26:41 +00006156 case TargetInfo::SystemZBuiltinVaList:
6157 return CreateSystemZBuiltinVaListDecl(Context);
Meador Ingec5613b22012-06-16 03:34:49 +00006158 }
6159
6160 llvm_unreachable("Unhandled __builtin_va_list type kind");
6161}
6162
6163TypedefDecl *ASTContext::getBuiltinVaListDecl() const {
6164 if (!BuiltinVaListDecl)
6165 BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind());
6166
6167 return BuiltinVaListDecl;
6168}
6169
Meador Ingefb40e3f2012-07-01 15:57:25 +00006170QualType ASTContext::getVaListTagType() const {
6171 // Force the creation of VaListTagTy by building the __builtin_va_list
6172 // declaration.
6173 if (VaListTagTy.isNull())
6174 (void) getBuiltinVaListDecl();
6175
6176 return VaListTagTy;
6177}
6178
Ted Kremeneka526c5c2008-01-07 19:49:32 +00006179void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
Mike Stump1eb44332009-09-09 15:08:12 +00006180 assert(ObjCConstantStringType.isNull() &&
Steve Naroff21988912007-10-15 23:35:17 +00006181 "'NSConstantString' type already set!");
Mike Stump1eb44332009-09-09 15:08:12 +00006182
Ted Kremeneka526c5c2008-01-07 19:49:32 +00006183 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Naroff21988912007-10-15 23:35:17 +00006184}
6185
John McCall0bd6feb2009-12-02 08:04:21 +00006186/// \brief Retrieve the template name that corresponds to a non-empty
6187/// lookup.
Jay Foad4ba2a172011-01-12 09:06:06 +00006188TemplateName
6189ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin,
6190 UnresolvedSetIterator End) const {
John McCall0bd6feb2009-12-02 08:04:21 +00006191 unsigned size = End - Begin;
6192 assert(size > 1 && "set is not overloaded!");
6193
6194 void *memory = Allocate(sizeof(OverloadedTemplateStorage) +
6195 size * sizeof(FunctionTemplateDecl*));
6196 OverloadedTemplateStorage *OT = new(memory) OverloadedTemplateStorage(size);
6197
6198 NamedDecl **Storage = OT->getStorage();
John McCalleec51cf2010-01-20 00:46:10 +00006199 for (UnresolvedSetIterator I = Begin; I != End; ++I) {
John McCall0bd6feb2009-12-02 08:04:21 +00006200 NamedDecl *D = *I;
6201 assert(isa<FunctionTemplateDecl>(D) ||
6202 (isa<UsingShadowDecl>(D) &&
6203 isa<FunctionTemplateDecl>(D->getUnderlyingDecl())));
6204 *Storage++ = D;
6205 }
6206
6207 return TemplateName(OT);
6208}
6209
Douglas Gregor7532dc62009-03-30 22:58:21 +00006210/// \brief Retrieve the template name that represents a qualified
6211/// template name such as \c std::vector.
Jay Foad4ba2a172011-01-12 09:06:06 +00006212TemplateName
6213ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
6214 bool TemplateKeyword,
6215 TemplateDecl *Template) const {
Douglas Gregor0f0ea2a2011-03-03 17:04:51 +00006216 assert(NNS && "Missing nested-name-specifier in qualified template name");
6217
Douglas Gregor789b1f62010-02-04 18:10:26 +00006218 // FIXME: Canonicalization?
Douglas Gregor7532dc62009-03-30 22:58:21 +00006219 llvm::FoldingSetNodeID ID;
6220 QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
6221
6222 void *InsertPos = 0;
6223 QualifiedTemplateName *QTN =
6224 QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6225 if (!QTN) {
Richard Smith2f47cab2012-08-16 01:19:31 +00006226 QTN = new (*this, llvm::alignOf<QualifiedTemplateName>())
6227 QualifiedTemplateName(NNS, TemplateKeyword, Template);
Douglas Gregor7532dc62009-03-30 22:58:21 +00006228 QualifiedTemplateNames.InsertNode(QTN, InsertPos);
6229 }
6230
6231 return TemplateName(QTN);
6232}
6233
6234/// \brief Retrieve the template name that represents a dependent
6235/// template name such as \c MetaFun::template apply.
Jay Foad4ba2a172011-01-12 09:06:06 +00006236TemplateName
6237ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
6238 const IdentifierInfo *Name) const {
Mike Stump1eb44332009-09-09 15:08:12 +00006239 assert((!NNS || NNS->isDependent()) &&
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00006240 "Nested name specifier must be dependent");
Douglas Gregor7532dc62009-03-30 22:58:21 +00006241
6242 llvm::FoldingSetNodeID ID;
6243 DependentTemplateName::Profile(ID, NNS, Name);
6244
6245 void *InsertPos = 0;
6246 DependentTemplateName *QTN =
6247 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6248
6249 if (QTN)
6250 return TemplateName(QTN);
6251
6252 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6253 if (CanonNNS == NNS) {
Richard Smith2f47cab2012-08-16 01:19:31 +00006254 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6255 DependentTemplateName(NNS, Name);
Douglas Gregor7532dc62009-03-30 22:58:21 +00006256 } else {
6257 TemplateName Canon = getDependentTemplateName(CanonNNS, Name);
Richard Smith2f47cab2012-08-16 01:19:31 +00006258 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6259 DependentTemplateName(NNS, Name, Canon);
Douglas Gregor789b1f62010-02-04 18:10:26 +00006260 DependentTemplateName *CheckQTN =
6261 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6262 assert(!CheckQTN && "Dependent type name canonicalization broken");
6263 (void)CheckQTN;
Douglas Gregor7532dc62009-03-30 22:58:21 +00006264 }
6265
6266 DependentTemplateNames.InsertNode(QTN, InsertPos);
6267 return TemplateName(QTN);
6268}
6269
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006270/// \brief Retrieve the template name that represents a dependent
6271/// template name such as \c MetaFun::template operator+.
6272TemplateName
6273ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
Jay Foad4ba2a172011-01-12 09:06:06 +00006274 OverloadedOperatorKind Operator) const {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006275 assert((!NNS || NNS->isDependent()) &&
6276 "Nested name specifier must be dependent");
6277
6278 llvm::FoldingSetNodeID ID;
6279 DependentTemplateName::Profile(ID, NNS, Operator);
6280
6281 void *InsertPos = 0;
Douglas Gregor789b1f62010-02-04 18:10:26 +00006282 DependentTemplateName *QTN
6283 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006284
6285 if (QTN)
6286 return TemplateName(QTN);
6287
6288 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6289 if (CanonNNS == NNS) {
Richard Smith2f47cab2012-08-16 01:19:31 +00006290 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6291 DependentTemplateName(NNS, Operator);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006292 } else {
6293 TemplateName Canon = getDependentTemplateName(CanonNNS, Operator);
Richard Smith2f47cab2012-08-16 01:19:31 +00006294 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6295 DependentTemplateName(NNS, Operator, Canon);
Douglas Gregor789b1f62010-02-04 18:10:26 +00006296
6297 DependentTemplateName *CheckQTN
6298 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6299 assert(!CheckQTN && "Dependent template name canonicalization broken");
6300 (void)CheckQTN;
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006301 }
6302
6303 DependentTemplateNames.InsertNode(QTN, InsertPos);
6304 return TemplateName(QTN);
6305}
6306
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006307TemplateName
John McCall14606042011-06-30 08:33:18 +00006308ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param,
6309 TemplateName replacement) const {
6310 llvm::FoldingSetNodeID ID;
6311 SubstTemplateTemplateParmStorage::Profile(ID, param, replacement);
6312
6313 void *insertPos = 0;
6314 SubstTemplateTemplateParmStorage *subst
6315 = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos);
6316
6317 if (!subst) {
6318 subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement);
6319 SubstTemplateTemplateParms.InsertNode(subst, insertPos);
6320 }
6321
6322 return TemplateName(subst);
6323}
6324
6325TemplateName
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006326ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param,
6327 const TemplateArgument &ArgPack) const {
6328 ASTContext &Self = const_cast<ASTContext &>(*this);
6329 llvm::FoldingSetNodeID ID;
6330 SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack);
6331
6332 void *InsertPos = 0;
6333 SubstTemplateTemplateParmPackStorage *Subst
6334 = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos);
6335
6336 if (!Subst) {
John McCall14606042011-06-30 08:33:18 +00006337 Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param,
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006338 ArgPack.pack_size(),
6339 ArgPack.pack_begin());
6340 SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos);
6341 }
6342
6343 return TemplateName(Subst);
6344}
6345
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006346/// getFromTargetType - Given one of the integer types provided by
Douglas Gregord9341122008-11-03 15:57:00 +00006347/// TargetInfo, produce the corresponding type. The unsigned @p Type
6348/// is actually a value of type @c TargetInfo::IntType.
John McCalle27ec8a2009-10-23 23:03:21 +00006349CanQualType ASTContext::getFromTargetType(unsigned Type) const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006350 switch (Type) {
John McCalle27ec8a2009-10-23 23:03:21 +00006351 case TargetInfo::NoInt: return CanQualType();
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006352 case TargetInfo::SignedShort: return ShortTy;
6353 case TargetInfo::UnsignedShort: return UnsignedShortTy;
6354 case TargetInfo::SignedInt: return IntTy;
6355 case TargetInfo::UnsignedInt: return UnsignedIntTy;
6356 case TargetInfo::SignedLong: return LongTy;
6357 case TargetInfo::UnsignedLong: return UnsignedLongTy;
6358 case TargetInfo::SignedLongLong: return LongLongTy;
6359 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
6360 }
6361
David Blaikieb219cfc2011-09-23 05:06:16 +00006362 llvm_unreachable("Unhandled TargetInfo::IntType value");
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006363}
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00006364
6365//===----------------------------------------------------------------------===//
6366// Type Predicates.
6367//===----------------------------------------------------------------------===//
6368
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00006369/// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's
6370/// garbage collection attribute.
6371///
John McCallae278a32011-01-12 00:34:59 +00006372Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const {
David Blaikie4e4d0842012-03-11 07:00:24 +00006373 if (getLangOpts().getGC() == LangOptions::NonGC)
John McCallae278a32011-01-12 00:34:59 +00006374 return Qualifiers::GCNone;
6375
David Blaikie4e4d0842012-03-11 07:00:24 +00006376 assert(getLangOpts().ObjC1);
John McCallae278a32011-01-12 00:34:59 +00006377 Qualifiers::GC GCAttrs = Ty.getObjCGCAttr();
6378
6379 // Default behaviour under objective-C's gc is for ObjC pointers
6380 // (or pointers to them) be treated as though they were declared
6381 // as __strong.
6382 if (GCAttrs == Qualifiers::GCNone) {
6383 if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
6384 return Qualifiers::Strong;
6385 else if (Ty->isPointerType())
6386 return getObjCGCAttrKind(Ty->getAs<PointerType>()->getPointeeType());
6387 } else {
6388 // It's not valid to set GC attributes on anything that isn't a
6389 // pointer.
6390#ifndef NDEBUG
6391 QualType CT = Ty->getCanonicalTypeInternal();
6392 while (const ArrayType *AT = dyn_cast<ArrayType>(CT))
6393 CT = AT->getElementType();
6394 assert(CT->isAnyPointerType() || CT->isBlockPointerType());
6395#endif
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00006396 }
Chris Lattnerb7d25532009-02-18 22:53:11 +00006397 return GCAttrs;
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00006398}
6399
Chris Lattner6ac46a42008-04-07 06:51:04 +00006400//===----------------------------------------------------------------------===//
6401// Type Compatibility Testing
6402//===----------------------------------------------------------------------===//
Chris Lattner770951b2007-11-01 05:03:41 +00006403
Mike Stump1eb44332009-09-09 15:08:12 +00006404/// areCompatVectorTypes - Return true if the two specified vector types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00006405/// compatible.
6406static bool areCompatVectorTypes(const VectorType *LHS,
6407 const VectorType *RHS) {
John McCall467b27b2009-10-22 20:10:53 +00006408 assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
Chris Lattner6ac46a42008-04-07 06:51:04 +00006409 return LHS->getElementType() == RHS->getElementType() &&
Chris Lattner61710852008-10-05 17:34:18 +00006410 LHS->getNumElements() == RHS->getNumElements();
Chris Lattner6ac46a42008-04-07 06:51:04 +00006411}
6412
Douglas Gregor255210e2010-08-06 10:14:59 +00006413bool ASTContext::areCompatibleVectorTypes(QualType FirstVec,
6414 QualType SecondVec) {
6415 assert(FirstVec->isVectorType() && "FirstVec should be a vector type");
6416 assert(SecondVec->isVectorType() && "SecondVec should be a vector type");
6417
6418 if (hasSameUnqualifiedType(FirstVec, SecondVec))
6419 return true;
6420
Bob Wilsonf69eb7c2010-11-12 17:24:54 +00006421 // Treat Neon vector types and most AltiVec vector types as if they are the
6422 // equivalent GCC vector types.
Douglas Gregor255210e2010-08-06 10:14:59 +00006423 const VectorType *First = FirstVec->getAs<VectorType>();
6424 const VectorType *Second = SecondVec->getAs<VectorType>();
Bob Wilsonf69eb7c2010-11-12 17:24:54 +00006425 if (First->getNumElements() == Second->getNumElements() &&
Douglas Gregor255210e2010-08-06 10:14:59 +00006426 hasSameType(First->getElementType(), Second->getElementType()) &&
Bob Wilsonf69eb7c2010-11-12 17:24:54 +00006427 First->getVectorKind() != VectorType::AltiVecPixel &&
6428 First->getVectorKind() != VectorType::AltiVecBool &&
6429 Second->getVectorKind() != VectorType::AltiVecPixel &&
6430 Second->getVectorKind() != VectorType::AltiVecBool)
Douglas Gregor255210e2010-08-06 10:14:59 +00006431 return true;
6432
6433 return false;
6434}
6435
Steve Naroff4084c302009-07-23 01:01:38 +00006436//===----------------------------------------------------------------------===//
6437// ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
6438//===----------------------------------------------------------------------===//
6439
6440/// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
6441/// inheritance hierarchy of 'rProto'.
Jay Foad4ba2a172011-01-12 09:06:06 +00006442bool
6443ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
6444 ObjCProtocolDecl *rProto) const {
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00006445 if (declaresSameEntity(lProto, rProto))
Steve Naroff4084c302009-07-23 01:01:38 +00006446 return true;
6447 for (ObjCProtocolDecl::protocol_iterator PI = rProto->protocol_begin(),
6448 E = rProto->protocol_end(); PI != E; ++PI)
6449 if (ProtocolCompatibleWithProtocol(lProto, *PI))
6450 return true;
6451 return false;
6452}
6453
Dmitri Gribenko4c3b8a32012-08-28 02:49:14 +00006454/// QualifiedIdConformsQualifiedId - compare id<pr,...> with id<pr1,...>
Steve Naroff4084c302009-07-23 01:01:38 +00006455/// return true if lhs's protocols conform to rhs's protocol; false
6456/// otherwise.
6457bool ASTContext::QualifiedIdConformsQualifiedId(QualType lhs, QualType rhs) {
6458 if (lhs->isObjCQualifiedIdType() && rhs->isObjCQualifiedIdType())
6459 return ObjCQualifiedIdTypesAreCompatible(lhs, rhs, false);
6460 return false;
6461}
6462
Dmitri Gribenko4c3b8a32012-08-28 02:49:14 +00006463/// ObjCQualifiedClassTypesAreCompatible - compare Class<pr,...> and
6464/// Class<pr1, ...>.
Fariborz Jahaniana8f8dac2010-07-19 22:02:22 +00006465bool ASTContext::ObjCQualifiedClassTypesAreCompatible(QualType lhs,
6466 QualType rhs) {
6467 const ObjCObjectPointerType *lhsQID = lhs->getAs<ObjCObjectPointerType>();
6468 const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
6469 assert ((lhsQID && rhsOPT) && "ObjCQualifiedClassTypesAreCompatible");
6470
6471 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6472 E = lhsQID->qual_end(); I != E; ++I) {
6473 bool match = false;
6474 ObjCProtocolDecl *lhsProto = *I;
6475 for (ObjCObjectPointerType::qual_iterator J = rhsOPT->qual_begin(),
6476 E = rhsOPT->qual_end(); J != E; ++J) {
6477 ObjCProtocolDecl *rhsProto = *J;
6478 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) {
6479 match = true;
6480 break;
6481 }
6482 }
6483 if (!match)
6484 return false;
6485 }
6486 return true;
6487}
6488
Steve Naroff4084c302009-07-23 01:01:38 +00006489/// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
6490/// ObjCQualifiedIDType.
6491bool ASTContext::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs,
6492 bool compare) {
6493 // Allow id<P..> and an 'id' or void* type in all cases.
Mike Stump1eb44332009-09-09 15:08:12 +00006494 if (lhs->isVoidPointerType() ||
Steve Naroff4084c302009-07-23 01:01:38 +00006495 lhs->isObjCIdType() || lhs->isObjCClassType())
6496 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00006497 else if (rhs->isVoidPointerType() ||
Steve Naroff4084c302009-07-23 01:01:38 +00006498 rhs->isObjCIdType() || rhs->isObjCClassType())
6499 return true;
6500
6501 if (const ObjCObjectPointerType *lhsQID = lhs->getAsObjCQualifiedIdType()) {
John McCall183700f2009-09-21 23:43:11 +00006502 const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
Mike Stump1eb44332009-09-09 15:08:12 +00006503
Steve Naroff4084c302009-07-23 01:01:38 +00006504 if (!rhsOPT) return false;
Mike Stump1eb44332009-09-09 15:08:12 +00006505
Steve Naroff4084c302009-07-23 01:01:38 +00006506 if (rhsOPT->qual_empty()) {
Mike Stump1eb44332009-09-09 15:08:12 +00006507 // If the RHS is a unqualified interface pointer "NSString*",
Steve Naroff4084c302009-07-23 01:01:38 +00006508 // make sure we check the class hierarchy.
6509 if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
6510 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6511 E = lhsQID->qual_end(); I != E; ++I) {
6512 // when comparing an id<P> on lhs with a static type on rhs,
6513 // see if static class implements all of id's protocols, directly or
6514 // through its super class and categories.
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00006515 if (!rhsID->ClassImplementsProtocol(*I, true))
Steve Naroff4084c302009-07-23 01:01:38 +00006516 return false;
6517 }
6518 }
6519 // If there are no qualifiers and no interface, we have an 'id'.
6520 return true;
6521 }
Mike Stump1eb44332009-09-09 15:08:12 +00006522 // Both the right and left sides have qualifiers.
Steve Naroff4084c302009-07-23 01:01:38 +00006523 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6524 E = lhsQID->qual_end(); I != E; ++I) {
6525 ObjCProtocolDecl *lhsProto = *I;
6526 bool match = false;
6527
6528 // when comparing an id<P> on lhs with a static type on rhs,
6529 // see if static class implements all of id's protocols, directly or
6530 // through its super class and categories.
6531 for (ObjCObjectPointerType::qual_iterator J = rhsOPT->qual_begin(),
6532 E = rhsOPT->qual_end(); J != E; ++J) {
6533 ObjCProtocolDecl *rhsProto = *J;
6534 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
6535 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
6536 match = true;
6537 break;
6538 }
6539 }
Mike Stump1eb44332009-09-09 15:08:12 +00006540 // If the RHS is a qualified interface pointer "NSString<P>*",
Steve Naroff4084c302009-07-23 01:01:38 +00006541 // make sure we check the class hierarchy.
6542 if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
6543 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6544 E = lhsQID->qual_end(); I != E; ++I) {
6545 // when comparing an id<P> on lhs with a static type on rhs,
6546 // see if static class implements all of id's protocols, directly or
6547 // through its super class and categories.
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00006548 if (rhsID->ClassImplementsProtocol(*I, true)) {
Steve Naroff4084c302009-07-23 01:01:38 +00006549 match = true;
6550 break;
6551 }
6552 }
6553 }
6554 if (!match)
6555 return false;
6556 }
Mike Stump1eb44332009-09-09 15:08:12 +00006557
Steve Naroff4084c302009-07-23 01:01:38 +00006558 return true;
6559 }
Mike Stump1eb44332009-09-09 15:08:12 +00006560
Steve Naroff4084c302009-07-23 01:01:38 +00006561 const ObjCObjectPointerType *rhsQID = rhs->getAsObjCQualifiedIdType();
6562 assert(rhsQID && "One of the LHS/RHS should be id<x>");
6563
Mike Stump1eb44332009-09-09 15:08:12 +00006564 if (const ObjCObjectPointerType *lhsOPT =
Steve Naroff4084c302009-07-23 01:01:38 +00006565 lhs->getAsObjCInterfacePointerType()) {
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006566 // If both the right and left sides have qualifiers.
Steve Naroff4084c302009-07-23 01:01:38 +00006567 for (ObjCObjectPointerType::qual_iterator I = lhsOPT->qual_begin(),
6568 E = lhsOPT->qual_end(); I != E; ++I) {
6569 ObjCProtocolDecl *lhsProto = *I;
6570 bool match = false;
6571
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006572 // when comparing an id<P> on rhs with a static type on lhs,
Steve Naroff4084c302009-07-23 01:01:38 +00006573 // see if static class implements all of id's protocols, directly or
6574 // through its super class and categories.
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006575 // First, lhs protocols in the qualifier list must be found, direct
6576 // or indirect in rhs's qualifier list or it is a mismatch.
Steve Naroff4084c302009-07-23 01:01:38 +00006577 for (ObjCObjectPointerType::qual_iterator J = rhsQID->qual_begin(),
6578 E = rhsQID->qual_end(); J != E; ++J) {
6579 ObjCProtocolDecl *rhsProto = *J;
6580 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
6581 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
6582 match = true;
6583 break;
6584 }
6585 }
6586 if (!match)
6587 return false;
6588 }
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006589
6590 // Static class's protocols, or its super class or category protocols
6591 // must be found, direct or indirect in rhs's qualifier list or it is a mismatch.
6592 if (ObjCInterfaceDecl *lhsID = lhsOPT->getInterfaceDecl()) {
6593 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
6594 CollectInheritedProtocols(lhsID, LHSInheritedProtocols);
6595 // This is rather dubious but matches gcc's behavior. If lhs has
6596 // no type qualifier and its class has no static protocol(s)
6597 // assume that it is mismatch.
6598 if (LHSInheritedProtocols.empty() && lhsOPT->qual_empty())
6599 return false;
6600 for (llvm::SmallPtrSet<ObjCProtocolDecl*,8>::iterator I =
6601 LHSInheritedProtocols.begin(),
6602 E = LHSInheritedProtocols.end(); I != E; ++I) {
6603 bool match = false;
6604 ObjCProtocolDecl *lhsProto = (*I);
6605 for (ObjCObjectPointerType::qual_iterator J = rhsQID->qual_begin(),
6606 E = rhsQID->qual_end(); J != E; ++J) {
6607 ObjCProtocolDecl *rhsProto = *J;
6608 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
6609 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
6610 match = true;
6611 break;
6612 }
6613 }
6614 if (!match)
6615 return false;
6616 }
6617 }
Steve Naroff4084c302009-07-23 01:01:38 +00006618 return true;
6619 }
6620 return false;
6621}
6622
Eli Friedman3d815e72008-08-22 00:56:42 +00006623/// canAssignObjCInterfaces - Return true if the two interface types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00006624/// compatible for assignment from RHS to LHS. This handles validation of any
6625/// protocol qualifiers on the LHS or RHS.
6626///
Steve Naroff14108da2009-07-10 23:34:53 +00006627bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
6628 const ObjCObjectPointerType *RHSOPT) {
John McCallc12c5bb2010-05-15 11:32:37 +00006629 const ObjCObjectType* LHS = LHSOPT->getObjectType();
6630 const ObjCObjectType* RHS = RHSOPT->getObjectType();
6631
Steve Naroffde2e22d2009-07-15 18:40:39 +00006632 // If either type represents the built-in 'id' or 'Class' types, return true.
John McCallc12c5bb2010-05-15 11:32:37 +00006633 if (LHS->isObjCUnqualifiedIdOrClass() ||
6634 RHS->isObjCUnqualifiedIdOrClass())
Steve Naroff14108da2009-07-10 23:34:53 +00006635 return true;
6636
John McCallc12c5bb2010-05-15 11:32:37 +00006637 if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId())
Mike Stump1eb44332009-09-09 15:08:12 +00006638 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
6639 QualType(RHSOPT,0),
Steve Naroff4084c302009-07-23 01:01:38 +00006640 false);
Fariborz Jahaniana8f8dac2010-07-19 22:02:22 +00006641
6642 if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass())
6643 return ObjCQualifiedClassTypesAreCompatible(QualType(LHSOPT,0),
6644 QualType(RHSOPT,0));
6645
John McCallc12c5bb2010-05-15 11:32:37 +00006646 // If we have 2 user-defined types, fall into that path.
6647 if (LHS->getInterface() && RHS->getInterface())
Steve Naroff4084c302009-07-23 01:01:38 +00006648 return canAssignObjCInterfaces(LHS, RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00006649
Steve Naroff4084c302009-07-23 01:01:38 +00006650 return false;
Steve Naroff14108da2009-07-10 23:34:53 +00006651}
6652
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006653/// canAssignObjCInterfacesInBlockPointer - This routine is specifically written
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00006654/// for providing type-safety for objective-c pointers used to pass/return
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006655/// arguments in block literals. When passed as arguments, passing 'A*' where
6656/// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is
6657/// not OK. For the return type, the opposite is not OK.
6658bool ASTContext::canAssignObjCInterfacesInBlockPointer(
6659 const ObjCObjectPointerType *LHSOPT,
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006660 const ObjCObjectPointerType *RHSOPT,
6661 bool BlockReturnType) {
Fariborz Jahaniana9834482010-04-06 17:23:39 +00006662 if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006663 return true;
6664
6665 if (LHSOPT->isObjCBuiltinType()) {
6666 return RHSOPT->isObjCBuiltinType() || RHSOPT->isObjCQualifiedIdType();
6667 }
6668
Fariborz Jahaniana9834482010-04-06 17:23:39 +00006669 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006670 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
6671 QualType(RHSOPT,0),
6672 false);
6673
6674 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType();
6675 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType();
6676 if (LHS && RHS) { // We have 2 user-defined types.
6677 if (LHS != RHS) {
6678 if (LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006679 return BlockReturnType;
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006680 if (RHS->getDecl()->isSuperClassOf(LHS->getDecl()))
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006681 return !BlockReturnType;
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006682 }
6683 else
6684 return true;
6685 }
6686 return false;
6687}
6688
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006689/// getIntersectionOfProtocols - This routine finds the intersection of set
6690/// of protocols inherited from two distinct objective-c pointer objects.
6691/// It is used to build composite qualifier list of the composite type of
6692/// the conditional expression involving two objective-c pointer objects.
6693static
6694void getIntersectionOfProtocols(ASTContext &Context,
6695 const ObjCObjectPointerType *LHSOPT,
6696 const ObjCObjectPointerType *RHSOPT,
Chris Lattner5f9e2722011-07-23 10:55:15 +00006697 SmallVectorImpl<ObjCProtocolDecl *> &IntersectionOfProtocols) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006698
John McCallc12c5bb2010-05-15 11:32:37 +00006699 const ObjCObjectType* LHS = LHSOPT->getObjectType();
6700 const ObjCObjectType* RHS = RHSOPT->getObjectType();
6701 assert(LHS->getInterface() && "LHS must have an interface base");
6702 assert(RHS->getInterface() && "RHS must have an interface base");
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006703
6704 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocolSet;
6705 unsigned LHSNumProtocols = LHS->getNumProtocols();
6706 if (LHSNumProtocols > 0)
6707 InheritedProtocolSet.insert(LHS->qual_begin(), LHS->qual_end());
6708 else {
Fariborz Jahanian432a8892010-02-12 19:27:33 +00006709 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
John McCallc12c5bb2010-05-15 11:32:37 +00006710 Context.CollectInheritedProtocols(LHS->getInterface(),
6711 LHSInheritedProtocols);
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006712 InheritedProtocolSet.insert(LHSInheritedProtocols.begin(),
6713 LHSInheritedProtocols.end());
6714 }
6715
6716 unsigned RHSNumProtocols = RHS->getNumProtocols();
6717 if (RHSNumProtocols > 0) {
Dan Gohmancb421fa2010-04-19 16:39:44 +00006718 ObjCProtocolDecl **RHSProtocols =
6719 const_cast<ObjCProtocolDecl **>(RHS->qual_begin());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006720 for (unsigned i = 0; i < RHSNumProtocols; ++i)
6721 if (InheritedProtocolSet.count(RHSProtocols[i]))
6722 IntersectionOfProtocols.push_back(RHSProtocols[i]);
Chad Rosier30601782011-08-17 23:08:45 +00006723 } else {
Fariborz Jahanian432a8892010-02-12 19:27:33 +00006724 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSInheritedProtocols;
John McCallc12c5bb2010-05-15 11:32:37 +00006725 Context.CollectInheritedProtocols(RHS->getInterface(),
6726 RHSInheritedProtocols);
Fariborz Jahanian432a8892010-02-12 19:27:33 +00006727 for (llvm::SmallPtrSet<ObjCProtocolDecl*,8>::iterator I =
6728 RHSInheritedProtocols.begin(),
6729 E = RHSInheritedProtocols.end(); I != E; ++I)
6730 if (InheritedProtocolSet.count((*I)))
6731 IntersectionOfProtocols.push_back((*I));
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006732 }
6733}
6734
Fariborz Jahaniandb07b3f2009-10-27 23:02:38 +00006735/// areCommonBaseCompatible - Returns common base class of the two classes if
6736/// one found. Note that this is O'2 algorithm. But it will be called as the
6737/// last type comparison in a ?-exp of ObjC pointer types before a
6738/// warning is issued. So, its invokation is extremely rare.
6739QualType ASTContext::areCommonBaseCompatible(
John McCallc12c5bb2010-05-15 11:32:37 +00006740 const ObjCObjectPointerType *Lptr,
6741 const ObjCObjectPointerType *Rptr) {
6742 const ObjCObjectType *LHS = Lptr->getObjectType();
6743 const ObjCObjectType *RHS = Rptr->getObjectType();
6744 const ObjCInterfaceDecl* LDecl = LHS->getInterface();
6745 const ObjCInterfaceDecl* RDecl = RHS->getInterface();
Douglas Gregor60ef3082011-12-15 00:29:59 +00006746 if (!LDecl || !RDecl || (declaresSameEntity(LDecl, RDecl)))
Fariborz Jahaniandb07b3f2009-10-27 23:02:38 +00006747 return QualType();
6748
Fariborz Jahanian7c2bdcb2011-04-18 21:16:59 +00006749 do {
John McCallc12c5bb2010-05-15 11:32:37 +00006750 LHS = cast<ObjCInterfaceType>(getObjCInterfaceType(LDecl));
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006751 if (canAssignObjCInterfaces(LHS, RHS)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00006752 SmallVector<ObjCProtocolDecl *, 8> Protocols;
John McCallc12c5bb2010-05-15 11:32:37 +00006753 getIntersectionOfProtocols(*this, Lptr, Rptr, Protocols);
6754
6755 QualType Result = QualType(LHS, 0);
6756 if (!Protocols.empty())
6757 Result = getObjCObjectType(Result, Protocols.data(), Protocols.size());
6758 Result = getObjCObjectPointerType(Result);
6759 return Result;
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006760 }
Fariborz Jahanian7c2bdcb2011-04-18 21:16:59 +00006761 } while ((LDecl = LDecl->getSuperClass()));
Fariborz Jahaniandb07b3f2009-10-27 23:02:38 +00006762
6763 return QualType();
6764}
6765
John McCallc12c5bb2010-05-15 11:32:37 +00006766bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS,
6767 const ObjCObjectType *RHS) {
6768 assert(LHS->getInterface() && "LHS is not an interface type");
6769 assert(RHS->getInterface() && "RHS is not an interface type");
6770
Chris Lattner6ac46a42008-04-07 06:51:04 +00006771 // Verify that the base decls are compatible: the RHS must be a subclass of
6772 // the LHS.
John McCallc12c5bb2010-05-15 11:32:37 +00006773 if (!LHS->getInterface()->isSuperClassOf(RHS->getInterface()))
Chris Lattner6ac46a42008-04-07 06:51:04 +00006774 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00006775
Chris Lattner6ac46a42008-04-07 06:51:04 +00006776 // RHS must have a superset of the protocols in the LHS. If the LHS is not
6777 // protocol qualified at all, then we are good.
Steve Naroffc15cb2a2009-07-18 15:33:26 +00006778 if (LHS->getNumProtocols() == 0)
Chris Lattner6ac46a42008-04-07 06:51:04 +00006779 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00006780
Fariborz Jahanianb7bc34a2011-04-08 18:25:29 +00006781 // Okay, we know the LHS has protocol qualifiers. If the RHS doesn't,
6782 // more detailed analysis is required.
6783 if (RHS->getNumProtocols() == 0) {
6784 // OK, if LHS is a superclass of RHS *and*
6785 // this superclass is assignment compatible with LHS.
6786 // false otherwise.
Fariborz Jahanian627788c2011-04-12 16:34:14 +00006787 bool IsSuperClass =
6788 LHS->getInterface()->isSuperClassOf(RHS->getInterface());
6789 if (IsSuperClass) {
Fariborz Jahanianb7bc34a2011-04-08 18:25:29 +00006790 // OK if conversion of LHS to SuperClass results in narrowing of types
6791 // ; i.e., SuperClass may implement at least one of the protocols
6792 // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok.
6793 // But not SuperObj<P1,P2,P3> = lhs<P1,P2>.
6794 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols;
Fariborz Jahanian627788c2011-04-12 16:34:14 +00006795 CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols);
Fariborz Jahanianb7bc34a2011-04-08 18:25:29 +00006796 // If super class has no protocols, it is not a match.
6797 if (SuperClassInheritedProtocols.empty())
6798 return false;
6799
6800 for (ObjCObjectType::qual_iterator LHSPI = LHS->qual_begin(),
6801 LHSPE = LHS->qual_end();
6802 LHSPI != LHSPE; LHSPI++) {
6803 bool SuperImplementsProtocol = false;
6804 ObjCProtocolDecl *LHSProto = (*LHSPI);
6805
6806 for (llvm::SmallPtrSet<ObjCProtocolDecl*,8>::iterator I =
6807 SuperClassInheritedProtocols.begin(),
6808 E = SuperClassInheritedProtocols.end(); I != E; ++I) {
6809 ObjCProtocolDecl *SuperClassProto = (*I);
6810 if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) {
6811 SuperImplementsProtocol = true;
6812 break;
6813 }
6814 }
6815 if (!SuperImplementsProtocol)
6816 return false;
6817 }
6818 return true;
6819 }
6820 return false;
6821 }
Mike Stump1eb44332009-09-09 15:08:12 +00006822
John McCallc12c5bb2010-05-15 11:32:37 +00006823 for (ObjCObjectType::qual_iterator LHSPI = LHS->qual_begin(),
6824 LHSPE = LHS->qual_end();
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006825 LHSPI != LHSPE; LHSPI++) {
6826 bool RHSImplementsProtocol = false;
6827
6828 // If the RHS doesn't implement the protocol on the left, the types
6829 // are incompatible.
John McCallc12c5bb2010-05-15 11:32:37 +00006830 for (ObjCObjectType::qual_iterator RHSPI = RHS->qual_begin(),
6831 RHSPE = RHS->qual_end();
Steve Naroff8f167562009-07-16 16:21:02 +00006832 RHSPI != RHSPE; RHSPI++) {
6833 if ((*RHSPI)->lookupProtocolNamed((*LHSPI)->getIdentifier())) {
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006834 RHSImplementsProtocol = true;
Steve Naroff8f167562009-07-16 16:21:02 +00006835 break;
6836 }
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006837 }
6838 // FIXME: For better diagnostics, consider passing back the protocol name.
6839 if (!RHSImplementsProtocol)
6840 return false;
Chris Lattner6ac46a42008-04-07 06:51:04 +00006841 }
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006842 // The RHS implements all protocols listed on the LHS.
6843 return true;
Chris Lattner6ac46a42008-04-07 06:51:04 +00006844}
6845
Steve Naroff389bf462009-02-12 17:52:19 +00006846bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) {
6847 // get the "pointed to" types
John McCall183700f2009-09-21 23:43:11 +00006848 const ObjCObjectPointerType *LHSOPT = LHS->getAs<ObjCObjectPointerType>();
6849 const ObjCObjectPointerType *RHSOPT = RHS->getAs<ObjCObjectPointerType>();
Mike Stump1eb44332009-09-09 15:08:12 +00006850
Steve Naroff14108da2009-07-10 23:34:53 +00006851 if (!LHSOPT || !RHSOPT)
Steve Naroff389bf462009-02-12 17:52:19 +00006852 return false;
Steve Naroff14108da2009-07-10 23:34:53 +00006853
6854 return canAssignObjCInterfaces(LHSOPT, RHSOPT) ||
6855 canAssignObjCInterfaces(RHSOPT, LHSOPT);
Steve Naroff389bf462009-02-12 17:52:19 +00006856}
6857
Douglas Gregor569c3162010-08-07 11:51:51 +00006858bool ASTContext::canBindObjCObjectType(QualType To, QualType From) {
6859 return canAssignObjCInterfaces(
6860 getObjCObjectPointerType(To)->getAs<ObjCObjectPointerType>(),
6861 getObjCObjectPointerType(From)->getAs<ObjCObjectPointerType>());
6862}
6863
Mike Stump1eb44332009-09-09 15:08:12 +00006864/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
Steve Naroffec0550f2007-10-15 20:41:53 +00006865/// both shall have the identically qualified version of a compatible type.
Mike Stump1eb44332009-09-09 15:08:12 +00006866/// C99 6.2.7p1: Two types have compatible types if their types are the
Steve Naroffec0550f2007-10-15 20:41:53 +00006867/// same. See 6.7.[2,3,5] for additional rules.
Douglas Gregor447234d2010-07-29 15:18:02 +00006868bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS,
6869 bool CompareUnqualified) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006870 if (getLangOpts().CPlusPlus)
Douglas Gregor0e709ab2010-02-03 21:02:30 +00006871 return hasSameType(LHS, RHS);
6872
Douglas Gregor447234d2010-07-29 15:18:02 +00006873 return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull();
Eli Friedman3d815e72008-08-22 00:56:42 +00006874}
6875
Fariborz Jahanianc286f382011-07-12 22:05:16 +00006876bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) {
Fariborz Jahanian82378392011-07-12 23:20:13 +00006877 return typesAreCompatible(LHS, RHS);
Fariborz Jahanianc286f382011-07-12 22:05:16 +00006878}
6879
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006880bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) {
6881 return !mergeTypes(LHS, RHS, true).isNull();
6882}
6883
Peter Collingbourne48466752010-10-24 18:30:18 +00006884/// mergeTransparentUnionType - if T is a transparent union type and a member
6885/// of T is compatible with SubType, return the merged type, else return
6886/// QualType()
6887QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType,
6888 bool OfBlockPointer,
6889 bool Unqualified) {
6890 if (const RecordType *UT = T->getAsUnionType()) {
6891 RecordDecl *UD = UT->getDecl();
6892 if (UD->hasAttr<TransparentUnionAttr>()) {
6893 for (RecordDecl::field_iterator it = UD->field_begin(),
6894 itend = UD->field_end(); it != itend; ++it) {
Peter Collingbournef91d7572010-12-02 21:00:06 +00006895 QualType ET = it->getType().getUnqualifiedType();
Peter Collingbourne48466752010-10-24 18:30:18 +00006896 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);
6897 if (!MT.isNull())
6898 return MT;
6899 }
6900 }
6901 }
6902
6903 return QualType();
6904}
6905
6906/// mergeFunctionArgumentTypes - merge two types which appear as function
6907/// argument types
6908QualType ASTContext::mergeFunctionArgumentTypes(QualType lhs, QualType rhs,
6909 bool OfBlockPointer,
6910 bool Unqualified) {
6911 // GNU extension: two types are compatible if they appear as a function
6912 // argument, one of the types is a transparent union type and the other
6913 // type is compatible with a union member
6914 QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer,
6915 Unqualified);
6916 if (!lmerge.isNull())
6917 return lmerge;
6918
6919 QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer,
6920 Unqualified);
6921 if (!rmerge.isNull())
6922 return rmerge;
6923
6924 return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified);
6925}
6926
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006927QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs,
Douglas Gregor447234d2010-07-29 15:18:02 +00006928 bool OfBlockPointer,
6929 bool Unqualified) {
John McCall183700f2009-09-21 23:43:11 +00006930 const FunctionType *lbase = lhs->getAs<FunctionType>();
6931 const FunctionType *rbase = rhs->getAs<FunctionType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00006932 const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase);
6933 const FunctionProtoType *rproto = dyn_cast<FunctionProtoType>(rbase);
Eli Friedman3d815e72008-08-22 00:56:42 +00006934 bool allLTypes = true;
6935 bool allRTypes = true;
6936
6937 // Check return type
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006938 QualType retType;
Fariborz Jahaniand263fd12011-02-11 18:46:17 +00006939 if (OfBlockPointer) {
6940 QualType RHS = rbase->getResultType();
6941 QualType LHS = lbase->getResultType();
6942 bool UnqualifiedResult = Unqualified;
6943 if (!UnqualifiedResult)
6944 UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers());
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006945 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
Fariborz Jahaniand263fd12011-02-11 18:46:17 +00006946 }
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006947 else
John McCall8cc246c2010-12-15 01:06:38 +00006948 retType = mergeTypes(lbase->getResultType(), rbase->getResultType(), false,
6949 Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00006950 if (retType.isNull()) return QualType();
Douglas Gregor447234d2010-07-29 15:18:02 +00006951
6952 if (Unqualified)
6953 retType = retType.getUnqualifiedType();
6954
6955 CanQualType LRetType = getCanonicalType(lbase->getResultType());
6956 CanQualType RRetType = getCanonicalType(rbase->getResultType());
6957 if (Unqualified) {
6958 LRetType = LRetType.getUnqualifiedType();
6959 RRetType = RRetType.getUnqualifiedType();
6960 }
6961
6962 if (getCanonicalType(retType) != LRetType)
Chris Lattner61710852008-10-05 17:34:18 +00006963 allLTypes = false;
Douglas Gregor447234d2010-07-29 15:18:02 +00006964 if (getCanonicalType(retType) != RRetType)
Chris Lattner61710852008-10-05 17:34:18 +00006965 allRTypes = false;
John McCall8cc246c2010-12-15 01:06:38 +00006966
Daniel Dunbar6a15c852010-04-28 16:20:58 +00006967 // FIXME: double check this
6968 // FIXME: should we error if lbase->getRegParmAttr() != 0 &&
6969 // rbase->getRegParmAttr() != 0 &&
6970 // lbase->getRegParmAttr() != rbase->getRegParmAttr()?
Rafael Espindola264ba482010-03-30 20:24:48 +00006971 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo();
6972 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();
John McCall8cc246c2010-12-15 01:06:38 +00006973
Douglas Gregorab8bbf42010-01-18 17:14:39 +00006974 // Compatible functions must have compatible calling conventions
John McCall8cc246c2010-12-15 01:06:38 +00006975 if (!isSameCallConv(lbaseInfo.getCC(), rbaseInfo.getCC()))
Douglas Gregorab8bbf42010-01-18 17:14:39 +00006976 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00006977
John McCall8cc246c2010-12-15 01:06:38 +00006978 // Regparm is part of the calling convention.
Eli Friedmana49218e2011-04-09 08:18:08 +00006979 if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm())
6980 return QualType();
John McCall8cc246c2010-12-15 01:06:38 +00006981 if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm())
6982 return QualType();
6983
John McCallf85e1932011-06-15 23:02:42 +00006984 if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult())
6985 return QualType();
6986
John McCall8cc246c2010-12-15 01:06:38 +00006987 // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'.
6988 bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
John McCall8cc246c2010-12-15 01:06:38 +00006989
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00006990 if (lbaseInfo.getNoReturn() != NoReturn)
6991 allLTypes = false;
6992 if (rbaseInfo.getNoReturn() != NoReturn)
6993 allRTypes = false;
6994
John McCallf85e1932011-06-15 23:02:42 +00006995 FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
John McCalle23cf432010-12-14 08:05:40 +00006996
Eli Friedman3d815e72008-08-22 00:56:42 +00006997 if (lproto && rproto) { // two C99 style function prototypes
Sebastian Redl465226e2009-05-27 22:11:52 +00006998 assert(!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec() &&
6999 "C++ shouldn't be here");
Eli Friedman3d815e72008-08-22 00:56:42 +00007000 unsigned lproto_nargs = lproto->getNumArgs();
7001 unsigned rproto_nargs = rproto->getNumArgs();
7002
7003 // Compatible functions must have the same number of arguments
7004 if (lproto_nargs != rproto_nargs)
7005 return QualType();
7006
7007 // Variadic and non-variadic functions aren't compatible
7008 if (lproto->isVariadic() != rproto->isVariadic())
7009 return QualType();
7010
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00007011 if (lproto->getTypeQuals() != rproto->getTypeQuals())
7012 return QualType();
7013
Fariborz Jahanian78213e42011-09-28 21:52:05 +00007014 if (LangOpts.ObjCAutoRefCount &&
7015 !FunctionTypesMatchOnNSConsumedAttrs(rproto, lproto))
7016 return QualType();
7017
Eli Friedman3d815e72008-08-22 00:56:42 +00007018 // Check argument compatibility
Chris Lattner5f9e2722011-07-23 10:55:15 +00007019 SmallVector<QualType, 10> types;
Eli Friedman3d815e72008-08-22 00:56:42 +00007020 for (unsigned i = 0; i < lproto_nargs; i++) {
7021 QualType largtype = lproto->getArgType(i).getUnqualifiedType();
7022 QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
Peter Collingbourne48466752010-10-24 18:30:18 +00007023 QualType argtype = mergeFunctionArgumentTypes(largtype, rargtype,
7024 OfBlockPointer,
7025 Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00007026 if (argtype.isNull()) return QualType();
Douglas Gregor447234d2010-07-29 15:18:02 +00007027
7028 if (Unqualified)
7029 argtype = argtype.getUnqualifiedType();
7030
Eli Friedman3d815e72008-08-22 00:56:42 +00007031 types.push_back(argtype);
Douglas Gregor447234d2010-07-29 15:18:02 +00007032 if (Unqualified) {
7033 largtype = largtype.getUnqualifiedType();
7034 rargtype = rargtype.getUnqualifiedType();
7035 }
7036
Chris Lattner61710852008-10-05 17:34:18 +00007037 if (getCanonicalType(argtype) != getCanonicalType(largtype))
7038 allLTypes = false;
7039 if (getCanonicalType(argtype) != getCanonicalType(rargtype))
7040 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00007041 }
Fariborz Jahanian78213e42011-09-28 21:52:05 +00007042
Eli Friedman3d815e72008-08-22 00:56:42 +00007043 if (allLTypes) return lhs;
7044 if (allRTypes) return rhs;
John McCalle23cf432010-12-14 08:05:40 +00007045
7046 FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo();
7047 EPI.ExtInfo = einfo;
Jordan Rosebea522f2013-03-08 21:51:21 +00007048 return getFunctionType(retType, types, EPI);
Eli Friedman3d815e72008-08-22 00:56:42 +00007049 }
7050
7051 if (lproto) allRTypes = false;
7052 if (rproto) allLTypes = false;
7053
Douglas Gregor72564e72009-02-26 23:50:07 +00007054 const FunctionProtoType *proto = lproto ? lproto : rproto;
Eli Friedman3d815e72008-08-22 00:56:42 +00007055 if (proto) {
Sebastian Redl465226e2009-05-27 22:11:52 +00007056 assert(!proto->hasExceptionSpec() && "C++ shouldn't be here");
Eli Friedman3d815e72008-08-22 00:56:42 +00007057 if (proto->isVariadic()) return QualType();
7058 // Check that the types are compatible with the types that
7059 // would result from default argument promotions (C99 6.7.5.3p15).
7060 // The only types actually affected are promotable integer
7061 // types and floats, which would be passed as a different
7062 // type depending on whether the prototype is visible.
7063 unsigned proto_nargs = proto->getNumArgs();
7064 for (unsigned i = 0; i < proto_nargs; ++i) {
7065 QualType argTy = proto->getArgType(i);
Douglas Gregorb0f8eac2010-02-03 19:27:29 +00007066
Eli Friedmanc586d5d2012-08-30 00:44:15 +00007067 // Look at the converted type of enum types, since that is the type used
Douglas Gregorb0f8eac2010-02-03 19:27:29 +00007068 // to pass enum values.
Eli Friedmanc586d5d2012-08-30 00:44:15 +00007069 if (const EnumType *Enum = argTy->getAs<EnumType>()) {
7070 argTy = Enum->getDecl()->getIntegerType();
7071 if (argTy.isNull())
7072 return QualType();
7073 }
Douglas Gregorb0f8eac2010-02-03 19:27:29 +00007074
Eli Friedman3d815e72008-08-22 00:56:42 +00007075 if (argTy->isPromotableIntegerType() ||
7076 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
7077 return QualType();
7078 }
7079
7080 if (allLTypes) return lhs;
7081 if (allRTypes) return rhs;
John McCalle23cf432010-12-14 08:05:40 +00007082
7083 FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo();
7084 EPI.ExtInfo = einfo;
Reid Kleckner0567a792013-06-10 20:51:09 +00007085 return getFunctionType(retType, proto->getArgTypes(), EPI);
Eli Friedman3d815e72008-08-22 00:56:42 +00007086 }
7087
7088 if (allLTypes) return lhs;
7089 if (allRTypes) return rhs;
John McCall8cc246c2010-12-15 01:06:38 +00007090 return getFunctionNoProtoType(retType, einfo);
Eli Friedman3d815e72008-08-22 00:56:42 +00007091}
7092
John McCallb9da7132013-03-21 00:10:07 +00007093/// Given that we have an enum type and a non-enum type, try to merge them.
7094static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET,
7095 QualType other, bool isBlockReturnType) {
7096 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
7097 // a signed integer type, or an unsigned integer type.
7098 // Compatibility is based on the underlying type, not the promotion
7099 // type.
7100 QualType underlyingType = ET->getDecl()->getIntegerType();
7101 if (underlyingType.isNull()) return QualType();
7102 if (Context.hasSameType(underlyingType, other))
7103 return other;
7104
7105 // In block return types, we're more permissive and accept any
7106 // integral type of the same size.
7107 if (isBlockReturnType && other->isIntegerType() &&
7108 Context.getTypeSize(underlyingType) == Context.getTypeSize(other))
7109 return other;
7110
7111 return QualType();
7112}
7113
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00007114QualType ASTContext::mergeTypes(QualType LHS, QualType RHS,
Douglas Gregor447234d2010-07-29 15:18:02 +00007115 bool OfBlockPointer,
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00007116 bool Unqualified, bool BlockReturnType) {
Bill Wendling43d69752007-12-03 07:33:35 +00007117 // C++ [expr]: If an expression initially has the type "reference to T", the
7118 // type is adjusted to "T" prior to any further analysis, the expression
7119 // designates the object or function denoted by the reference, and the
Sebastian Redl7c80bd62009-03-16 23:22:08 +00007120 // expression is an lvalue unless the reference is an rvalue reference and
7121 // the expression is a function call (possibly inside parentheses).
Douglas Gregor0e709ab2010-02-03 21:02:30 +00007122 assert(!LHS->getAs<ReferenceType>() && "LHS is a reference type?");
7123 assert(!RHS->getAs<ReferenceType>() && "RHS is a reference type?");
Douglas Gregor447234d2010-07-29 15:18:02 +00007124
7125 if (Unqualified) {
7126 LHS = LHS.getUnqualifiedType();
7127 RHS = RHS.getUnqualifiedType();
7128 }
Douglas Gregor0e709ab2010-02-03 21:02:30 +00007129
Eli Friedman3d815e72008-08-22 00:56:42 +00007130 QualType LHSCan = getCanonicalType(LHS),
7131 RHSCan = getCanonicalType(RHS);
7132
7133 // If two types are identical, they are compatible.
7134 if (LHSCan == RHSCan)
7135 return LHS;
7136
John McCall0953e762009-09-24 19:53:00 +00007137 // If the qualifiers are different, the types aren't compatible... mostly.
Douglas Gregora4923eb2009-11-16 21:35:15 +00007138 Qualifiers LQuals = LHSCan.getLocalQualifiers();
7139 Qualifiers RQuals = RHSCan.getLocalQualifiers();
John McCall0953e762009-09-24 19:53:00 +00007140 if (LQuals != RQuals) {
7141 // If any of these qualifiers are different, we have a type
7142 // mismatch.
7143 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
John McCallf85e1932011-06-15 23:02:42 +00007144 LQuals.getAddressSpace() != RQuals.getAddressSpace() ||
7145 LQuals.getObjCLifetime() != RQuals.getObjCLifetime())
John McCall0953e762009-09-24 19:53:00 +00007146 return QualType();
7147
7148 // Exactly one GC qualifier difference is allowed: __strong is
7149 // okay if the other type has no GC qualifier but is an Objective
7150 // C object pointer (i.e. implicitly strong by default). We fix
7151 // this by pretending that the unqualified type was actually
7152 // qualified __strong.
7153 Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
7154 Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
7155 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
7156
7157 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
7158 return QualType();
7159
7160 if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) {
7161 return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong));
7162 }
7163 if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) {
7164 return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS);
7165 }
Eli Friedman3d815e72008-08-22 00:56:42 +00007166 return QualType();
John McCall0953e762009-09-24 19:53:00 +00007167 }
7168
7169 // Okay, qualifiers are equal.
Eli Friedman3d815e72008-08-22 00:56:42 +00007170
Eli Friedman852d63b2009-06-01 01:22:52 +00007171 Type::TypeClass LHSClass = LHSCan->getTypeClass();
7172 Type::TypeClass RHSClass = RHSCan->getTypeClass();
Eli Friedman3d815e72008-08-22 00:56:42 +00007173
Chris Lattner1adb8832008-01-14 05:45:46 +00007174 // We want to consider the two function types to be the same for these
7175 // comparisons, just force one to the other.
7176 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
7177 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman4c721d32008-02-12 08:23:06 +00007178
7179 // Same as above for arrays
Chris Lattnera36a61f2008-04-07 05:43:21 +00007180 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
7181 LHSClass = Type::ConstantArray;
7182 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
7183 RHSClass = Type::ConstantArray;
Mike Stump1eb44332009-09-09 15:08:12 +00007184
John McCallc12c5bb2010-05-15 11:32:37 +00007185 // ObjCInterfaces are just specialized ObjCObjects.
7186 if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject;
7187 if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject;
7188
Nate Begeman213541a2008-04-18 23:10:10 +00007189 // Canonicalize ExtVector -> Vector.
7190 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
7191 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
Mike Stump1eb44332009-09-09 15:08:12 +00007192
Chris Lattnera36a61f2008-04-07 05:43:21 +00007193 // If the canonical type classes don't match.
Chris Lattner1adb8832008-01-14 05:45:46 +00007194 if (LHSClass != RHSClass) {
John McCallb9da7132013-03-21 00:10:07 +00007195 // Note that we only have special rules for turning block enum
7196 // returns into block int returns, not vice-versa.
John McCall183700f2009-09-21 23:43:11 +00007197 if (const EnumType* ETy = LHS->getAs<EnumType>()) {
John McCallb9da7132013-03-21 00:10:07 +00007198 return mergeEnumWithInteger(*this, ETy, RHS, false);
Eli Friedmanbab96962008-02-12 08:46:17 +00007199 }
John McCall183700f2009-09-21 23:43:11 +00007200 if (const EnumType* ETy = RHS->getAs<EnumType>()) {
John McCallb9da7132013-03-21 00:10:07 +00007201 return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
Eli Friedmanbab96962008-02-12 08:46:17 +00007202 }
Fariborz Jahaniane7cff2c2012-01-26 00:45:38 +00007203 // allow block pointer type to match an 'id' type.
Fariborz Jahanian41963632012-01-26 17:08:50 +00007204 if (OfBlockPointer && !BlockReturnType) {
7205 if (LHS->isObjCIdType() && RHS->isBlockPointerType())
7206 return LHS;
7207 if (RHS->isObjCIdType() && LHS->isBlockPointerType())
7208 return RHS;
7209 }
Fariborz Jahaniane7cff2c2012-01-26 00:45:38 +00007210
Eli Friedman3d815e72008-08-22 00:56:42 +00007211 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00007212 }
Eli Friedman3d815e72008-08-22 00:56:42 +00007213
Steve Naroff4a746782008-01-09 22:43:08 +00007214 // The canonical type classes match.
Chris Lattner1adb8832008-01-14 05:45:46 +00007215 switch (LHSClass) {
Douglas Gregor72564e72009-02-26 23:50:07 +00007216#define TYPE(Class, Base)
7217#define ABSTRACT_TYPE(Class, Base)
John McCallad5e7382010-03-01 23:49:17 +00007218#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
Douglas Gregor72564e72009-02-26 23:50:07 +00007219#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
7220#define DEPENDENT_TYPE(Class, Base) case Type::Class:
7221#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00007222 llvm_unreachable("Non-canonical and dependent types shouldn't get here");
Douglas Gregor72564e72009-02-26 23:50:07 +00007223
Richard Smithdc7a4f52013-04-30 13:56:41 +00007224 case Type::Auto:
Sebastian Redl7c80bd62009-03-16 23:22:08 +00007225 case Type::LValueReference:
7226 case Type::RValueReference:
Douglas Gregor72564e72009-02-26 23:50:07 +00007227 case Type::MemberPointer:
David Blaikieb219cfc2011-09-23 05:06:16 +00007228 llvm_unreachable("C++ should never be in mergeTypes");
Douglas Gregor72564e72009-02-26 23:50:07 +00007229
John McCallc12c5bb2010-05-15 11:32:37 +00007230 case Type::ObjCInterface:
Douglas Gregor72564e72009-02-26 23:50:07 +00007231 case Type::IncompleteArray:
7232 case Type::VariableArray:
7233 case Type::FunctionProto:
7234 case Type::ExtVector:
David Blaikieb219cfc2011-09-23 05:06:16 +00007235 llvm_unreachable("Types are eliminated above");
Douglas Gregor72564e72009-02-26 23:50:07 +00007236
Chris Lattner1adb8832008-01-14 05:45:46 +00007237 case Type::Pointer:
Eli Friedman3d815e72008-08-22 00:56:42 +00007238 {
7239 // Merge two pointer types, while trying to preserve typedef info
Ted Kremenek6217b802009-07-29 21:53:49 +00007240 QualType LHSPointee = LHS->getAs<PointerType>()->getPointeeType();
7241 QualType RHSPointee = RHS->getAs<PointerType>()->getPointeeType();
Douglas Gregor447234d2010-07-29 15:18:02 +00007242 if (Unqualified) {
7243 LHSPointee = LHSPointee.getUnqualifiedType();
7244 RHSPointee = RHSPointee.getUnqualifiedType();
7245 }
7246 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false,
7247 Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00007248 if (ResultType.isNull()) return QualType();
Eli Friedman07d25872009-06-02 05:28:56 +00007249 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
Chris Lattner61710852008-10-05 17:34:18 +00007250 return LHS;
Eli Friedman07d25872009-06-02 05:28:56 +00007251 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
Chris Lattner61710852008-10-05 17:34:18 +00007252 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00007253 return getPointerType(ResultType);
7254 }
Steve Naroffc0febd52008-12-10 17:49:55 +00007255 case Type::BlockPointer:
7256 {
7257 // Merge two block pointer types, while trying to preserve typedef info
Ted Kremenek6217b802009-07-29 21:53:49 +00007258 QualType LHSPointee = LHS->getAs<BlockPointerType>()->getPointeeType();
7259 QualType RHSPointee = RHS->getAs<BlockPointerType>()->getPointeeType();
Douglas Gregor447234d2010-07-29 15:18:02 +00007260 if (Unqualified) {
7261 LHSPointee = LHSPointee.getUnqualifiedType();
7262 RHSPointee = RHSPointee.getUnqualifiedType();
7263 }
7264 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer,
7265 Unqualified);
Steve Naroffc0febd52008-12-10 17:49:55 +00007266 if (ResultType.isNull()) return QualType();
7267 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
7268 return LHS;
7269 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
7270 return RHS;
7271 return getBlockPointerType(ResultType);
7272 }
Eli Friedmanb001de72011-10-06 23:00:33 +00007273 case Type::Atomic:
7274 {
7275 // Merge two pointer types, while trying to preserve typedef info
7276 QualType LHSValue = LHS->getAs<AtomicType>()->getValueType();
7277 QualType RHSValue = RHS->getAs<AtomicType>()->getValueType();
7278 if (Unqualified) {
7279 LHSValue = LHSValue.getUnqualifiedType();
7280 RHSValue = RHSValue.getUnqualifiedType();
7281 }
7282 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
7283 Unqualified);
7284 if (ResultType.isNull()) return QualType();
7285 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
7286 return LHS;
7287 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
7288 return RHS;
7289 return getAtomicType(ResultType);
7290 }
Chris Lattner1adb8832008-01-14 05:45:46 +00007291 case Type::ConstantArray:
Eli Friedman3d815e72008-08-22 00:56:42 +00007292 {
7293 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
7294 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
7295 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
7296 return QualType();
7297
7298 QualType LHSElem = getAsArrayType(LHS)->getElementType();
7299 QualType RHSElem = getAsArrayType(RHS)->getElementType();
Douglas Gregor447234d2010-07-29 15:18:02 +00007300 if (Unqualified) {
7301 LHSElem = LHSElem.getUnqualifiedType();
7302 RHSElem = RHSElem.getUnqualifiedType();
7303 }
7304
7305 QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00007306 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00007307 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
7308 return LHS;
7309 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
7310 return RHS;
Eli Friedman3bc0f452008-08-22 01:48:21 +00007311 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
7312 ArrayType::ArraySizeModifier(), 0);
7313 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
7314 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00007315 const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
7316 const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
Chris Lattner61710852008-10-05 17:34:18 +00007317 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
7318 return LHS;
7319 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
7320 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00007321 if (LVAT) {
7322 // FIXME: This isn't correct! But tricky to implement because
7323 // the array's size has to be the size of LHS, but the type
7324 // has to be different.
7325 return LHS;
7326 }
7327 if (RVAT) {
7328 // FIXME: This isn't correct! But tricky to implement because
7329 // the array's size has to be the size of RHS, but the type
7330 // has to be different.
7331 return RHS;
7332 }
Eli Friedman3bc0f452008-08-22 01:48:21 +00007333 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
7334 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00007335 return getIncompleteArrayType(ResultType,
7336 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00007337 }
Chris Lattner1adb8832008-01-14 05:45:46 +00007338 case Type::FunctionNoProto:
Douglas Gregor447234d2010-07-29 15:18:02 +00007339 return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified);
Douglas Gregor72564e72009-02-26 23:50:07 +00007340 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00007341 case Type::Enum:
Eli Friedman3d815e72008-08-22 00:56:42 +00007342 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00007343 case Type::Builtin:
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00007344 // Only exactly equal builtin types are compatible, which is tested above.
Eli Friedman3d815e72008-08-22 00:56:42 +00007345 return QualType();
Daniel Dunbar64cfdb72009-01-28 21:22:12 +00007346 case Type::Complex:
7347 // Distinct complex types are incompatible.
7348 return QualType();
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00007349 case Type::Vector:
Eli Friedman5a61f0e2009-02-27 23:04:43 +00007350 // FIXME: The merged type should be an ExtVector!
John McCall1c471f32010-03-12 23:14:13 +00007351 if (areCompatVectorTypes(LHSCan->getAs<VectorType>(),
7352 RHSCan->getAs<VectorType>()))
Eli Friedman3d815e72008-08-22 00:56:42 +00007353 return LHS;
Chris Lattner61710852008-10-05 17:34:18 +00007354 return QualType();
John McCallc12c5bb2010-05-15 11:32:37 +00007355 case Type::ObjCObject: {
7356 // Check if the types are assignment compatible.
Eli Friedman5a61f0e2009-02-27 23:04:43 +00007357 // FIXME: This should be type compatibility, e.g. whether
7358 // "LHS x; RHS x;" at global scope is legal.
John McCallc12c5bb2010-05-15 11:32:37 +00007359 const ObjCObjectType* LHSIface = LHS->getAs<ObjCObjectType>();
7360 const ObjCObjectType* RHSIface = RHS->getAs<ObjCObjectType>();
7361 if (canAssignObjCInterfaces(LHSIface, RHSIface))
Steve Naroff5fd659d2009-02-21 16:18:07 +00007362 return LHS;
7363
Eli Friedman3d815e72008-08-22 00:56:42 +00007364 return QualType();
Cedric Venet61490e92009-02-21 17:14:49 +00007365 }
Steve Naroff14108da2009-07-10 23:34:53 +00007366 case Type::ObjCObjectPointer: {
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00007367 if (OfBlockPointer) {
7368 if (canAssignObjCInterfacesInBlockPointer(
7369 LHS->getAs<ObjCObjectPointerType>(),
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00007370 RHS->getAs<ObjCObjectPointerType>(),
7371 BlockReturnType))
David Blaikie7530c032012-01-17 06:56:22 +00007372 return LHS;
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00007373 return QualType();
7374 }
John McCall183700f2009-09-21 23:43:11 +00007375 if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(),
7376 RHS->getAs<ObjCObjectPointerType>()))
Steve Naroff14108da2009-07-10 23:34:53 +00007377 return LHS;
7378
Steve Naroffbc76dd02008-12-10 22:14:21 +00007379 return QualType();
David Blaikie7530c032012-01-17 06:56:22 +00007380 }
Steve Naroffec0550f2007-10-15 20:41:53 +00007381 }
Douglas Gregor72564e72009-02-26 23:50:07 +00007382
David Blaikie7530c032012-01-17 06:56:22 +00007383 llvm_unreachable("Invalid Type::Class!");
Steve Naroffec0550f2007-10-15 20:41:53 +00007384}
Ted Kremenek7192f8e2007-10-31 17:10:13 +00007385
Fariborz Jahanian78213e42011-09-28 21:52:05 +00007386bool ASTContext::FunctionTypesMatchOnNSConsumedAttrs(
7387 const FunctionProtoType *FromFunctionType,
7388 const FunctionProtoType *ToFunctionType) {
7389 if (FromFunctionType->hasAnyConsumedArgs() !=
7390 ToFunctionType->hasAnyConsumedArgs())
7391 return false;
7392 FunctionProtoType::ExtProtoInfo FromEPI =
7393 FromFunctionType->getExtProtoInfo();
7394 FunctionProtoType::ExtProtoInfo ToEPI =
7395 ToFunctionType->getExtProtoInfo();
7396 if (FromEPI.ConsumedArguments && ToEPI.ConsumedArguments)
7397 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
7398 ArgIdx != NumArgs; ++ArgIdx) {
7399 if (FromEPI.ConsumedArguments[ArgIdx] !=
7400 ToEPI.ConsumedArguments[ArgIdx])
7401 return false;
7402 }
7403 return true;
7404}
7405
Fariborz Jahanian2390a722010-05-19 21:37:30 +00007406/// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and
7407/// 'RHS' attributes and returns the merged version; including for function
7408/// return types.
7409QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) {
7410 QualType LHSCan = getCanonicalType(LHS),
7411 RHSCan = getCanonicalType(RHS);
7412 // If two types are identical, they are compatible.
7413 if (LHSCan == RHSCan)
7414 return LHS;
7415 if (RHSCan->isFunctionType()) {
7416 if (!LHSCan->isFunctionType())
7417 return QualType();
7418 QualType OldReturnType =
7419 cast<FunctionType>(RHSCan.getTypePtr())->getResultType();
7420 QualType NewReturnType =
7421 cast<FunctionType>(LHSCan.getTypePtr())->getResultType();
7422 QualType ResReturnType =
7423 mergeObjCGCQualifiers(NewReturnType, OldReturnType);
7424 if (ResReturnType.isNull())
7425 return QualType();
7426 if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) {
7427 // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo();
7428 // In either case, use OldReturnType to build the new function type.
7429 const FunctionType *F = LHS->getAs<FunctionType>();
7430 if (const FunctionProtoType *FPT = cast<FunctionProtoType>(F)) {
John McCalle23cf432010-12-14 08:05:40 +00007431 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
7432 EPI.ExtInfo = getFunctionExtInfo(LHS);
Reid Kleckner0567a792013-06-10 20:51:09 +00007433 QualType ResultType =
7434 getFunctionType(OldReturnType, FPT->getArgTypes(), EPI);
Fariborz Jahanian2390a722010-05-19 21:37:30 +00007435 return ResultType;
7436 }
7437 }
7438 return QualType();
7439 }
7440
7441 // If the qualifiers are different, the types can still be merged.
7442 Qualifiers LQuals = LHSCan.getLocalQualifiers();
7443 Qualifiers RQuals = RHSCan.getLocalQualifiers();
7444 if (LQuals != RQuals) {
7445 // If any of these qualifiers are different, we have a type mismatch.
7446 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
7447 LQuals.getAddressSpace() != RQuals.getAddressSpace())
7448 return QualType();
7449
7450 // Exactly one GC qualifier difference is allowed: __strong is
7451 // okay if the other type has no GC qualifier but is an Objective
7452 // C object pointer (i.e. implicitly strong by default). We fix
7453 // this by pretending that the unqualified type was actually
7454 // qualified __strong.
7455 Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
7456 Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
7457 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
7458
7459 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
7460 return QualType();
7461
7462 if (GC_L == Qualifiers::Strong)
7463 return LHS;
7464 if (GC_R == Qualifiers::Strong)
7465 return RHS;
7466 return QualType();
7467 }
7468
7469 if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) {
7470 QualType LHSBaseQT = LHS->getAs<ObjCObjectPointerType>()->getPointeeType();
7471 QualType RHSBaseQT = RHS->getAs<ObjCObjectPointerType>()->getPointeeType();
7472 QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT);
7473 if (ResQT == LHSBaseQT)
7474 return LHS;
7475 if (ResQT == RHSBaseQT)
7476 return RHS;
7477 }
7478 return QualType();
7479}
7480
Chris Lattner5426bf62008-04-07 07:01:58 +00007481//===----------------------------------------------------------------------===//
Eli Friedmanad74a752008-06-28 06:23:08 +00007482// Integer Predicates
7483//===----------------------------------------------------------------------===//
Chris Lattner88054de2009-01-16 07:15:35 +00007484
Jay Foad4ba2a172011-01-12 09:06:06 +00007485unsigned ASTContext::getIntWidth(QualType T) const {
John McCallf4c73712011-01-19 06:33:43 +00007486 if (const EnumType *ET = dyn_cast<EnumType>(T))
Eli Friedman29a7f332009-12-10 22:29:29 +00007487 T = ET->getDecl()->getIntegerType();
Douglas Gregor1274ccd2010-10-08 23:50:27 +00007488 if (T->isBooleanType())
7489 return 1;
Eli Friedmanf98aba32009-02-13 02:31:07 +00007490 // For builtin types, just use the standard type sizing method
Eli Friedmanad74a752008-06-28 06:23:08 +00007491 return (unsigned)getTypeSize(T);
7492}
7493
Abramo Bagnara762f1592012-09-09 10:21:24 +00007494QualType ASTContext::getCorrespondingUnsignedType(QualType T) const {
Douglas Gregorf6094622010-07-23 15:58:24 +00007495 assert(T->hasSignedIntegerRepresentation() && "Unexpected type");
Chris Lattner6a2b9262009-10-17 20:33:28 +00007496
7497 // Turn <4 x signed int> -> <4 x unsigned int>
7498 if (const VectorType *VTy = T->getAs<VectorType>())
7499 return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()),
Bob Wilsone86d78c2010-11-10 21:56:12 +00007500 VTy->getNumElements(), VTy->getVectorKind());
Chris Lattner6a2b9262009-10-17 20:33:28 +00007501
7502 // For enums, we return the unsigned version of the base type.
7503 if (const EnumType *ETy = T->getAs<EnumType>())
Eli Friedmanad74a752008-06-28 06:23:08 +00007504 T = ETy->getDecl()->getIntegerType();
Chris Lattner6a2b9262009-10-17 20:33:28 +00007505
7506 const BuiltinType *BTy = T->getAs<BuiltinType>();
7507 assert(BTy && "Unexpected signed integer type");
Eli Friedmanad74a752008-06-28 06:23:08 +00007508 switch (BTy->getKind()) {
7509 case BuiltinType::Char_S:
7510 case BuiltinType::SChar:
7511 return UnsignedCharTy;
7512 case BuiltinType::Short:
7513 return UnsignedShortTy;
7514 case BuiltinType::Int:
7515 return UnsignedIntTy;
7516 case BuiltinType::Long:
7517 return UnsignedLongTy;
7518 case BuiltinType::LongLong:
7519 return UnsignedLongLongTy;
Chris Lattner2df9ced2009-04-30 02:43:43 +00007520 case BuiltinType::Int128:
7521 return UnsignedInt128Ty;
Eli Friedmanad74a752008-06-28 06:23:08 +00007522 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00007523 llvm_unreachable("Unexpected signed integer type");
Eli Friedmanad74a752008-06-28 06:23:08 +00007524 }
7525}
7526
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00007527ASTMutationListener::~ASTMutationListener() { }
7528
Richard Smith9dadfab2013-05-11 05:45:24 +00007529void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD,
7530 QualType ReturnType) {}
Chris Lattner86df27b2009-06-14 00:45:47 +00007531
7532//===----------------------------------------------------------------------===//
7533// Builtin Type Computation
7534//===----------------------------------------------------------------------===//
7535
7536/// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
Chris Lattner33daae62010-10-01 22:42:38 +00007537/// pointer over the consumed characters. This returns the resultant type. If
7538/// AllowTypeModifiers is false then modifier like * are not parsed, just basic
7539/// types. This allows "v2i*" to be parsed as a pointer to a v2i instead of
7540/// a vector of "i*".
Chris Lattner14e0e742010-10-01 22:53:11 +00007541///
7542/// RequiresICE is filled in on return to indicate whether the value is required
7543/// to be an Integer Constant Expression.
Jay Foad4ba2a172011-01-12 09:06:06 +00007544static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context,
Chris Lattner86df27b2009-06-14 00:45:47 +00007545 ASTContext::GetBuiltinTypeError &Error,
Chris Lattner14e0e742010-10-01 22:53:11 +00007546 bool &RequiresICE,
Chris Lattner33daae62010-10-01 22:42:38 +00007547 bool AllowTypeModifiers) {
Chris Lattner86df27b2009-06-14 00:45:47 +00007548 // Modifiers.
7549 int HowLong = 0;
7550 bool Signed = false, Unsigned = false;
Chris Lattner14e0e742010-10-01 22:53:11 +00007551 RequiresICE = false;
Chris Lattner393bd8e2010-10-01 07:13:18 +00007552
Chris Lattner33daae62010-10-01 22:42:38 +00007553 // Read the prefixed modifiers first.
Chris Lattner86df27b2009-06-14 00:45:47 +00007554 bool Done = false;
7555 while (!Done) {
7556 switch (*Str++) {
Mike Stump1eb44332009-09-09 15:08:12 +00007557 default: Done = true; --Str; break;
Chris Lattner393bd8e2010-10-01 07:13:18 +00007558 case 'I':
Chris Lattner14e0e742010-10-01 22:53:11 +00007559 RequiresICE = true;
Chris Lattner393bd8e2010-10-01 07:13:18 +00007560 break;
Chris Lattner86df27b2009-06-14 00:45:47 +00007561 case 'S':
7562 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
7563 assert(!Signed && "Can't use 'S' modifier multiple times!");
7564 Signed = true;
7565 break;
7566 case 'U':
7567 assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
7568 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
7569 Unsigned = true;
7570 break;
7571 case 'L':
7572 assert(HowLong <= 2 && "Can't have LLLL modifier");
7573 ++HowLong;
7574 break;
7575 }
7576 }
7577
7578 QualType Type;
Mike Stump1eb44332009-09-09 15:08:12 +00007579
Chris Lattner86df27b2009-06-14 00:45:47 +00007580 // Read the base type.
7581 switch (*Str++) {
David Blaikieb219cfc2011-09-23 05:06:16 +00007582 default: llvm_unreachable("Unknown builtin type letter!");
Chris Lattner86df27b2009-06-14 00:45:47 +00007583 case 'v':
7584 assert(HowLong == 0 && !Signed && !Unsigned &&
7585 "Bad modifiers used with 'v'!");
7586 Type = Context.VoidTy;
7587 break;
7588 case 'f':
7589 assert(HowLong == 0 && !Signed && !Unsigned &&
7590 "Bad modifiers used with 'f'!");
7591 Type = Context.FloatTy;
7592 break;
7593 case 'd':
7594 assert(HowLong < 2 && !Signed && !Unsigned &&
7595 "Bad modifiers used with 'd'!");
7596 if (HowLong)
7597 Type = Context.LongDoubleTy;
7598 else
7599 Type = Context.DoubleTy;
7600 break;
7601 case 's':
7602 assert(HowLong == 0 && "Bad modifiers used with 's'!");
7603 if (Unsigned)
7604 Type = Context.UnsignedShortTy;
7605 else
7606 Type = Context.ShortTy;
7607 break;
7608 case 'i':
7609 if (HowLong == 3)
7610 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
7611 else if (HowLong == 2)
7612 Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
7613 else if (HowLong == 1)
7614 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
7615 else
7616 Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
7617 break;
7618 case 'c':
7619 assert(HowLong == 0 && "Bad modifiers used with 'c'!");
7620 if (Signed)
7621 Type = Context.SignedCharTy;
7622 else if (Unsigned)
7623 Type = Context.UnsignedCharTy;
7624 else
7625 Type = Context.CharTy;
7626 break;
7627 case 'b': // boolean
7628 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
7629 Type = Context.BoolTy;
7630 break;
7631 case 'z': // size_t.
7632 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
7633 Type = Context.getSizeType();
7634 break;
7635 case 'F':
7636 Type = Context.getCFConstantStringType();
7637 break;
Fariborz Jahanianba8bda02010-11-09 21:38:20 +00007638 case 'G':
7639 Type = Context.getObjCIdType();
7640 break;
7641 case 'H':
7642 Type = Context.getObjCSelType();
7643 break;
Fariborz Jahanianf7992132013-01-04 18:45:40 +00007644 case 'M':
7645 Type = Context.getObjCSuperType();
7646 break;
Chris Lattner86df27b2009-06-14 00:45:47 +00007647 case 'a':
7648 Type = Context.getBuiltinVaListType();
7649 assert(!Type.isNull() && "builtin va list type not initialized!");
7650 break;
7651 case 'A':
7652 // This is a "reference" to a va_list; however, what exactly
7653 // this means depends on how va_list is defined. There are two
7654 // different kinds of va_list: ones passed by value, and ones
7655 // passed by reference. An example of a by-value va_list is
7656 // x86, where va_list is a char*. An example of by-ref va_list
7657 // is x86-64, where va_list is a __va_list_tag[1]. For x86,
7658 // we want this argument to be a char*&; for x86-64, we want
7659 // it to be a __va_list_tag*.
7660 Type = Context.getBuiltinVaListType();
7661 assert(!Type.isNull() && "builtin va list type not initialized!");
Chris Lattner14e0e742010-10-01 22:53:11 +00007662 if (Type->isArrayType())
Chris Lattner86df27b2009-06-14 00:45:47 +00007663 Type = Context.getArrayDecayedType(Type);
Chris Lattner14e0e742010-10-01 22:53:11 +00007664 else
Chris Lattner86df27b2009-06-14 00:45:47 +00007665 Type = Context.getLValueReferenceType(Type);
Chris Lattner86df27b2009-06-14 00:45:47 +00007666 break;
7667 case 'V': {
7668 char *End;
Chris Lattner86df27b2009-06-14 00:45:47 +00007669 unsigned NumElements = strtoul(Str, &End, 10);
7670 assert(End != Str && "Missing vector size");
Chris Lattner86df27b2009-06-14 00:45:47 +00007671 Str = End;
Mike Stump1eb44332009-09-09 15:08:12 +00007672
Chris Lattner14e0e742010-10-01 22:53:11 +00007673 QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
7674 RequiresICE, false);
7675 assert(!RequiresICE && "Can't require vector ICE");
Chris Lattner33daae62010-10-01 22:42:38 +00007676
7677 // TODO: No way to make AltiVec vectors in builtins yet.
Chris Lattner788b0fd2010-06-23 06:00:24 +00007678 Type = Context.getVectorType(ElementType, NumElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00007679 VectorType::GenericVector);
Chris Lattner86df27b2009-06-14 00:45:47 +00007680 break;
7681 }
Douglas Gregorb4bc99b2012-06-07 18:08:25 +00007682 case 'E': {
7683 char *End;
7684
7685 unsigned NumElements = strtoul(Str, &End, 10);
7686 assert(End != Str && "Missing vector size");
7687
7688 Str = End;
7689
7690 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
7691 false);
7692 Type = Context.getExtVectorType(ElementType, NumElements);
7693 break;
7694 }
Douglas Gregord3a23b22009-09-28 21:45:01 +00007695 case 'X': {
Chris Lattner14e0e742010-10-01 22:53:11 +00007696 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
7697 false);
7698 assert(!RequiresICE && "Can't require complex ICE");
Douglas Gregord3a23b22009-09-28 21:45:01 +00007699 Type = Context.getComplexType(ElementType);
7700 break;
Fariborz Jahaniancc075e42011-08-23 23:33:09 +00007701 }
7702 case 'Y' : {
7703 Type = Context.getPointerDiffType();
7704 break;
7705 }
Chris Lattner9a5a7e72009-07-28 22:49:34 +00007706 case 'P':
Douglas Gregorc29f77b2009-07-07 16:35:42 +00007707 Type = Context.getFILEType();
7708 if (Type.isNull()) {
Mike Stumpf711c412009-07-28 23:57:15 +00007709 Error = ASTContext::GE_Missing_stdio;
Chris Lattner86df27b2009-06-14 00:45:47 +00007710 return QualType();
7711 }
Mike Stumpfd612db2009-07-28 23:47:15 +00007712 break;
Chris Lattner9a5a7e72009-07-28 22:49:34 +00007713 case 'J':
Mike Stumpf711c412009-07-28 23:57:15 +00007714 if (Signed)
Mike Stump782fa302009-07-28 02:25:19 +00007715 Type = Context.getsigjmp_bufType();
Mike Stumpf711c412009-07-28 23:57:15 +00007716 else
7717 Type = Context.getjmp_bufType();
7718
Mike Stumpfd612db2009-07-28 23:47:15 +00007719 if (Type.isNull()) {
Mike Stumpf711c412009-07-28 23:57:15 +00007720 Error = ASTContext::GE_Missing_setjmp;
Mike Stumpfd612db2009-07-28 23:47:15 +00007721 return QualType();
7722 }
7723 break;
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00007724 case 'K':
7725 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!");
7726 Type = Context.getucontext_tType();
7727
7728 if (Type.isNull()) {
7729 Error = ASTContext::GE_Missing_ucontext;
7730 return QualType();
7731 }
7732 break;
Eli Friedman6902e412012-11-27 02:58:24 +00007733 case 'p':
7734 Type = Context.getProcessIDType();
7735 break;
Mike Stump782fa302009-07-28 02:25:19 +00007736 }
Mike Stump1eb44332009-09-09 15:08:12 +00007737
Chris Lattner33daae62010-10-01 22:42:38 +00007738 // If there are modifiers and if we're allowed to parse them, go for it.
7739 Done = !AllowTypeModifiers;
Chris Lattner86df27b2009-06-14 00:45:47 +00007740 while (!Done) {
John McCall187ab372010-03-12 04:21:28 +00007741 switch (char c = *Str++) {
Chris Lattner33daae62010-10-01 22:42:38 +00007742 default: Done = true; --Str; break;
7743 case '*':
7744 case '&': {
7745 // Both pointers and references can have their pointee types
7746 // qualified with an address space.
7747 char *End;
7748 unsigned AddrSpace = strtoul(Str, &End, 10);
7749 if (End != Str && AddrSpace != 0) {
7750 Type = Context.getAddrSpaceQualType(Type, AddrSpace);
7751 Str = End;
7752 }
7753 if (c == '*')
7754 Type = Context.getPointerType(Type);
7755 else
7756 Type = Context.getLValueReferenceType(Type);
7757 break;
7758 }
7759 // FIXME: There's no way to have a built-in with an rvalue ref arg.
7760 case 'C':
7761 Type = Type.withConst();
7762 break;
7763 case 'D':
7764 Type = Context.getVolatileType(Type);
7765 break;
Ted Kremenek18932a02012-01-20 21:40:12 +00007766 case 'R':
7767 Type = Type.withRestrict();
7768 break;
Chris Lattner86df27b2009-06-14 00:45:47 +00007769 }
7770 }
Chris Lattner393bd8e2010-10-01 07:13:18 +00007771
Chris Lattner14e0e742010-10-01 22:53:11 +00007772 assert((!RequiresICE || Type->isIntegralOrEnumerationType()) &&
Chris Lattner393bd8e2010-10-01 07:13:18 +00007773 "Integer constant 'I' type must be an integer");
Mike Stump1eb44332009-09-09 15:08:12 +00007774
Chris Lattner86df27b2009-06-14 00:45:47 +00007775 return Type;
7776}
7777
7778/// GetBuiltinType - Return the type for the specified builtin.
Chris Lattner33daae62010-10-01 22:42:38 +00007779QualType ASTContext::GetBuiltinType(unsigned Id,
Chris Lattner14e0e742010-10-01 22:53:11 +00007780 GetBuiltinTypeError &Error,
Jay Foad4ba2a172011-01-12 09:06:06 +00007781 unsigned *IntegerConstantArgs) const {
Chris Lattner33daae62010-10-01 22:42:38 +00007782 const char *TypeStr = BuiltinInfo.GetTypeString(Id);
Mike Stump1eb44332009-09-09 15:08:12 +00007783
Chris Lattner5f9e2722011-07-23 10:55:15 +00007784 SmallVector<QualType, 8> ArgTypes;
Mike Stump1eb44332009-09-09 15:08:12 +00007785
Chris Lattner14e0e742010-10-01 22:53:11 +00007786 bool RequiresICE = false;
Chris Lattner86df27b2009-06-14 00:45:47 +00007787 Error = GE_None;
Chris Lattner14e0e742010-10-01 22:53:11 +00007788 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
7789 RequiresICE, true);
Chris Lattner86df27b2009-06-14 00:45:47 +00007790 if (Error != GE_None)
7791 return QualType();
Chris Lattner14e0e742010-10-01 22:53:11 +00007792
7793 assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE");
7794
Chris Lattner86df27b2009-06-14 00:45:47 +00007795 while (TypeStr[0] && TypeStr[0] != '.') {
Chris Lattner14e0e742010-10-01 22:53:11 +00007796 QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true);
Chris Lattner86df27b2009-06-14 00:45:47 +00007797 if (Error != GE_None)
7798 return QualType();
7799
Chris Lattner14e0e742010-10-01 22:53:11 +00007800 // If this argument is required to be an IntegerConstantExpression and the
7801 // caller cares, fill in the bitmask we return.
7802 if (RequiresICE && IntegerConstantArgs)
7803 *IntegerConstantArgs |= 1 << ArgTypes.size();
7804
Chris Lattner86df27b2009-06-14 00:45:47 +00007805 // Do array -> pointer decay. The builtin should use the decayed type.
7806 if (Ty->isArrayType())
7807 Ty = getArrayDecayedType(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00007808
Chris Lattner86df27b2009-06-14 00:45:47 +00007809 ArgTypes.push_back(Ty);
7810 }
7811
7812 assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
7813 "'.' should only occur at end of builtin type list!");
7814
John McCall00ccbef2010-12-21 00:44:39 +00007815 FunctionType::ExtInfo EI;
7816 if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
7817
7818 bool Variadic = (TypeStr[0] == '.');
7819
7820 // We really shouldn't be making a no-proto type here, especially in C++.
7821 if (ArgTypes.empty() && Variadic)
7822 return getFunctionNoProtoType(ResType, EI);
Douglas Gregorce056bc2010-02-21 22:15:06 +00007823
John McCalle23cf432010-12-14 08:05:40 +00007824 FunctionProtoType::ExtProtoInfo EPI;
John McCall00ccbef2010-12-21 00:44:39 +00007825 EPI.ExtInfo = EI;
7826 EPI.Variadic = Variadic;
John McCalle23cf432010-12-14 08:05:40 +00007827
Jordan Rosebea522f2013-03-08 21:51:21 +00007828 return getFunctionType(ResType, ArgTypes, EPI);
Chris Lattner86df27b2009-06-14 00:45:47 +00007829}
Eli Friedmana95d7572009-08-19 07:44:53 +00007830
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007831GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) {
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007832 if (!FD->isExternallyVisible())
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007833 return GVA_Internal;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007834
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007835 GVALinkage External = GVA_StrongExternal;
7836 switch (FD->getTemplateSpecializationKind()) {
7837 case TSK_Undeclared:
7838 case TSK_ExplicitSpecialization:
7839 External = GVA_StrongExternal;
7840 break;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007841
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007842 case TSK_ExplicitInstantiationDefinition:
7843 return GVA_ExplicitTemplateInstantiation;
7844
7845 case TSK_ExplicitInstantiationDeclaration:
7846 case TSK_ImplicitInstantiation:
7847 External = GVA_TemplateInstantiation;
7848 break;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007849 }
7850
7851 if (!FD->isInlined())
7852 return External;
7853
David Blaikie4e4d0842012-03-11 07:00:24 +00007854 if (!getLangOpts().CPlusPlus || FD->hasAttr<GNUInlineAttr>()) {
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007855 // GNU or C99 inline semantics. Determine whether this symbol should be
7856 // externally visible.
7857 if (FD->isInlineDefinitionExternallyVisible())
7858 return External;
7859
7860 // C99 inline semantics, where the symbol is not externally visible.
7861 return GVA_C99Inline;
7862 }
7863
7864 // C++0x [temp.explicit]p9:
7865 // [ Note: The intent is that an inline function that is the subject of
7866 // an explicit instantiation declaration will still be implicitly
7867 // instantiated when used so that the body can be considered for
7868 // inlining, but that no out-of-line copy of the inline function would be
7869 // generated in the translation unit. -- end note ]
7870 if (FD->getTemplateSpecializationKind()
7871 == TSK_ExplicitInstantiationDeclaration)
7872 return GVA_C99Inline;
7873
7874 return GVA_CXXInline;
7875}
7876
7877GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) {
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007878 if (!VD->isExternallyVisible())
7879 return GVA_Internal;
7880
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007881 // If this is a static data member, compute the kind of template
7882 // specialization. Otherwise, this variable is not part of a
7883 // template.
7884 TemplateSpecializationKind TSK = TSK_Undeclared;
7885 if (VD->isStaticDataMember())
7886 TSK = VD->getTemplateSpecializationKind();
7887
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007888 switch (TSK) {
7889 case TSK_Undeclared:
7890 case TSK_ExplicitSpecialization:
7891 return GVA_StrongExternal;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007892
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007893 case TSK_ExplicitInstantiationDeclaration:
7894 llvm_unreachable("Variable should not be instantiated");
7895 // Fall through to treat this like any other instantiation.
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007896
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007897 case TSK_ExplicitInstantiationDefinition:
7898 return GVA_ExplicitTemplateInstantiation;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007899
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007900 case TSK_ImplicitInstantiation:
7901 return GVA_TemplateInstantiation;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007902 }
Rafael Espindola77b50252013-05-13 14:05:53 +00007903
7904 llvm_unreachable("Invalid Linkage!");
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007905}
7906
Argyrios Kyrtzidis4ac7c0b2010-07-29 20:08:05 +00007907bool ASTContext::DeclMustBeEmitted(const Decl *D) {
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007908 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
7909 if (!VD->isFileVarDecl())
7910 return false;
Richard Smithf396ad92013-04-01 20:22:16 +00007911 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
7912 // We never need to emit an uninstantiated function template.
7913 if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
7914 return false;
7915 } else
7916 return false;
7917
7918 // If this is a member of a class template, we do not need to emit it.
7919 if (D->getDeclContext()->isDependentContext())
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007920 return false;
7921
Argyrios Kyrtzidisab411c82010-07-29 20:07:52 +00007922 // Weak references don't produce any output by themselves.
7923 if (D->hasAttr<WeakRefAttr>())
7924 return false;
7925
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007926 // Aliases and used decls are required.
7927 if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>())
7928 return true;
7929
7930 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
7931 // Forward declarations aren't required.
Sean Hunt10620eb2011-05-06 20:44:56 +00007932 if (!FD->doesThisDeclarationHaveABody())
Nick Lewyckydce67a72011-07-18 05:26:13 +00007933 return FD->doesDeclarationForceExternallyVisibleDefinition();
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007934
7935 // Constructors and destructors are required.
7936 if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>())
7937 return true;
7938
John McCalld5617ee2013-01-25 22:31:03 +00007939 // The key function for a class is required. This rule only comes
7940 // into play when inline functions can be key functions, though.
7941 if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
7942 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
7943 const CXXRecordDecl *RD = MD->getParent();
7944 if (MD->isOutOfLine() && RD->isDynamicClass()) {
7945 const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD);
7946 if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl())
7947 return true;
7948 }
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007949 }
7950 }
7951
7952 GVALinkage Linkage = GetGVALinkageForFunction(FD);
7953
7954 // static, static inline, always_inline, and extern inline functions can
7955 // always be deferred. Normal inline functions can be deferred in C99/C++.
7956 // Implicit template instantiations can also be deferred in C++.
7957 if (Linkage == GVA_Internal || Linkage == GVA_C99Inline ||
Anton Yartsev3a5aca82012-02-02 06:06:34 +00007958 Linkage == GVA_CXXInline || Linkage == GVA_TemplateInstantiation)
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007959 return false;
7960 return true;
7961 }
Douglas Gregor94da1582011-09-10 00:22:34 +00007962
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007963 const VarDecl *VD = cast<VarDecl>(D);
7964 assert(VD->isFileVarDecl() && "Expected file scoped var");
7965
Argyrios Kyrtzidisab411c82010-07-29 20:07:52 +00007966 if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly)
7967 return false;
7968
Richard Smith5f9a7e32012-11-12 21:38:00 +00007969 // Variables that can be needed in other TUs are required.
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007970 GVALinkage L = GetGVALinkageForVariable(VD);
Richard Smith5f9a7e32012-11-12 21:38:00 +00007971 if (L != GVA_Internal && L != GVA_TemplateInstantiation)
7972 return true;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007973
Richard Smith5f9a7e32012-11-12 21:38:00 +00007974 // Variables that have destruction with side-effects are required.
7975 if (VD->getType().isDestructedType())
7976 return true;
7977
7978 // Variables that have initialization with side-effects are required.
7979 if (VD->getInit() && VD->getInit()->HasSideEffects(*this))
7980 return true;
7981
7982 return false;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007983}
Charles Davis071cc7d2010-08-16 03:33:14 +00007984
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +00007985CallingConv ASTContext::getDefaultCXXMethodCallConv(bool isVariadic) {
Charles Davisee743f92010-11-09 18:04:24 +00007986 // Pass through to the C++ ABI object
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +00007987 return ABI->getDefaultMethodCallConv(isVariadic);
7988}
7989
7990CallingConv ASTContext::getCanonicalCallConv(CallingConv CC) const {
John McCallb8b2c9d2013-01-25 22:30:49 +00007991 if (CC == CC_C && !LangOpts.MRTD &&
7992 getTargetInfo().getCXXABI().isMemberFunctionCCDefault())
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +00007993 return CC_Default;
7994 return CC;
Charles Davisee743f92010-11-09 18:04:24 +00007995}
7996
Jay Foad4ba2a172011-01-12 09:06:06 +00007997bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const {
Anders Carlssondae0cb52010-11-25 01:51:53 +00007998 // Pass through to the C++ ABI object
7999 return ABI->isNearlyEmpty(RD);
8000}
8001
Peter Collingbourne14110472011-01-13 18:57:25 +00008002MangleContext *ASTContext::createMangleContext() {
John McCallb8b2c9d2013-01-25 22:30:49 +00008003 switch (Target->getCXXABI().getKind()) {
Tim Northoverc264e162013-01-31 12:13:10 +00008004 case TargetCXXABI::GenericAArch64:
John McCallb8b2c9d2013-01-25 22:30:49 +00008005 case TargetCXXABI::GenericItanium:
8006 case TargetCXXABI::GenericARM:
8007 case TargetCXXABI::iOS:
Peter Collingbourne14110472011-01-13 18:57:25 +00008008 return createItaniumMangleContext(*this, getDiagnostics());
John McCallb8b2c9d2013-01-25 22:30:49 +00008009 case TargetCXXABI::Microsoft:
Peter Collingbourne14110472011-01-13 18:57:25 +00008010 return createMicrosoftMangleContext(*this, getDiagnostics());
8011 }
David Blaikieb219cfc2011-09-23 05:06:16 +00008012 llvm_unreachable("Unsupported ABI");
Peter Collingbourne14110472011-01-13 18:57:25 +00008013}
8014
Charles Davis071cc7d2010-08-16 03:33:14 +00008015CXXABI::~CXXABI() {}
Ted Kremenekba29bd22011-04-28 04:53:38 +00008016
8017size_t ASTContext::getSideTableAllocatedMemory() const {
Ted Kremenek0c8cd1a2011-07-27 18:41:12 +00008018 return ASTRecordLayouts.getMemorySize()
8019 + llvm::capacity_in_bytes(ObjCLayouts)
8020 + llvm::capacity_in_bytes(KeyFunctions)
8021 + llvm::capacity_in_bytes(ObjCImpls)
8022 + llvm::capacity_in_bytes(BlockVarCopyInits)
8023 + llvm::capacity_in_bytes(DeclAttrs)
8024 + llvm::capacity_in_bytes(InstantiatedFromStaticDataMember)
8025 + llvm::capacity_in_bytes(InstantiatedFromUsingDecl)
8026 + llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl)
8027 + llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl)
8028 + llvm::capacity_in_bytes(OverriddenMethods)
8029 + llvm::capacity_in_bytes(Types)
Francois Pichetaf0f4d02011-08-14 03:52:19 +00008030 + llvm::capacity_in_bytes(VariableArrayTypes)
Francois Pichet0d95f0d2011-08-14 14:28:49 +00008031 + llvm::capacity_in_bytes(ClassScopeSpecializationPattern);
Ted Kremenekba29bd22011-04-28 04:53:38 +00008032}
Ted Kremenekd211cb72011-10-06 05:00:56 +00008033
David Blaikie66cff722012-11-14 01:52:05 +00008034void ASTContext::addUnnamedTag(const TagDecl *Tag) {
8035 // FIXME: This mangling should be applied to function local classes too
8036 if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl() ||
Rafael Espindola5bbb0582013-05-28 14:09:46 +00008037 !isa<CXXRecordDecl>(Tag->getParent()))
David Blaikie66cff722012-11-14 01:52:05 +00008038 return;
8039
8040 std::pair<llvm::DenseMap<const DeclContext *, unsigned>::iterator, bool> P =
8041 UnnamedMangleContexts.insert(std::make_pair(Tag->getParent(), 0));
8042 UnnamedMangleNumbers.insert(std::make_pair(Tag, P.first->second++));
8043}
8044
8045int ASTContext::getUnnamedTagManglingNumber(const TagDecl *Tag) const {
8046 llvm::DenseMap<const TagDecl *, unsigned>::const_iterator I =
8047 UnnamedMangleNumbers.find(Tag);
8048 return I != UnnamedMangleNumbers.end() ? I->second : -1;
8049}
8050
Douglas Gregor9e8c92a2012-02-20 19:44:39 +00008051unsigned ASTContext::getLambdaManglingNumber(CXXMethodDecl *CallOperator) {
8052 CXXRecordDecl *Lambda = CallOperator->getParent();
8053 return LambdaMangleContexts[Lambda->getDeclContext()]
8054 .getManglingNumber(CallOperator);
8055}
8056
8057
Ted Kremenekd211cb72011-10-06 05:00:56 +00008058void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) {
8059 ParamIndices[D] = index;
8060}
8061
8062unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const {
8063 ParameterIndexTable::const_iterator I = ParamIndices.find(D);
8064 assert(I != ParamIndices.end() &&
8065 "ParmIndices lacks entry set by ParmVarDecl");
8066 return I->second;
8067}
Fariborz Jahanian538bbe52013-05-28 17:37:39 +00008068
Richard Smith211c8dd2013-06-05 00:46:14 +00008069APValue *
8070ASTContext::getMaterializedTemporaryValue(const MaterializeTemporaryExpr *E,
8071 bool MayCreate) {
8072 assert(E && E->getStorageDuration() == SD_Static &&
8073 "don't need to cache the computed value for this temporary");
8074 if (MayCreate)
8075 return &MaterializedTemporaryValues[E];
8076
8077 llvm::DenseMap<const MaterializeTemporaryExpr *, APValue>::iterator I =
8078 MaterializedTemporaryValues.find(E);
8079 return I == MaterializedTemporaryValues.end() ? 0 : &I->second;
8080}
8081
Fariborz Jahanian538bbe52013-05-28 17:37:39 +00008082bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const {
8083 const llvm::Triple &T = getTargetInfo().getTriple();
8084 if (!T.isOSDarwin())
8085 return false;
8086
8087 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
8088 CharUnits sizeChars = getTypeSizeInChars(AtomicTy);
8089 uint64_t Size = sizeChars.getQuantity();
8090 CharUnits alignChars = getTypeAlignInChars(AtomicTy);
8091 unsigned Align = alignChars.getQuantity();
8092 unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth();
8093 return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits);
8094}
Reid Klecknercff15122013-06-17 12:56:08 +00008095
8096namespace {
8097
8098 /// \brief A \c RecursiveASTVisitor that builds a map from nodes to their
8099 /// parents as defined by the \c RecursiveASTVisitor.
8100 ///
8101 /// Note that the relationship described here is purely in terms of AST
8102 /// traversal - there are other relationships (for example declaration context)
8103 /// in the AST that are better modeled by special matchers.
8104 ///
8105 /// FIXME: Currently only builds up the map using \c Stmt and \c Decl nodes.
8106 class ParentMapASTVisitor : public RecursiveASTVisitor<ParentMapASTVisitor> {
8107
8108 public:
8109 /// \brief Builds and returns the translation unit's parent map.
8110 ///
8111 /// The caller takes ownership of the returned \c ParentMap.
8112 static ASTContext::ParentMap *buildMap(TranslationUnitDecl &TU) {
8113 ParentMapASTVisitor Visitor(new ASTContext::ParentMap);
8114 Visitor.TraverseDecl(&TU);
8115 return Visitor.Parents;
8116 }
8117
8118 private:
8119 typedef RecursiveASTVisitor<ParentMapASTVisitor> VisitorBase;
8120
8121 ParentMapASTVisitor(ASTContext::ParentMap *Parents) : Parents(Parents) {
8122 }
8123
8124 bool shouldVisitTemplateInstantiations() const {
8125 return true;
8126 }
8127 bool shouldVisitImplicitCode() const {
8128 return true;
8129 }
8130 // Disables data recursion. We intercept Traverse* methods in the RAV, which
8131 // are not triggered during data recursion.
8132 bool shouldUseDataRecursionFor(clang::Stmt *S) const {
8133 return false;
8134 }
8135
8136 template <typename T>
8137 bool TraverseNode(T *Node, bool(VisitorBase:: *traverse) (T *)) {
8138 if (Node == NULL)
8139 return true;
8140 if (ParentStack.size() > 0)
8141 // FIXME: Currently we add the same parent multiple times, for example
8142 // when we visit all subexpressions of template instantiations; this is
8143 // suboptimal, bug benign: the only way to visit those is with
8144 // hasAncestor / hasParent, and those do not create new matches.
8145 // The plan is to enable DynTypedNode to be storable in a map or hash
8146 // map. The main problem there is to implement hash functions /
8147 // comparison operators for all types that DynTypedNode supports that
8148 // do not have pointer identity.
8149 (*Parents)[Node].push_back(ParentStack.back());
8150 ParentStack.push_back(ast_type_traits::DynTypedNode::create(*Node));
8151 bool Result = (this ->* traverse) (Node);
8152 ParentStack.pop_back();
8153 return Result;
8154 }
8155
8156 bool TraverseDecl(Decl *DeclNode) {
8157 return TraverseNode(DeclNode, &VisitorBase::TraverseDecl);
8158 }
8159
8160 bool TraverseStmt(Stmt *StmtNode) {
8161 return TraverseNode(StmtNode, &VisitorBase::TraverseStmt);
8162 }
8163
8164 ASTContext::ParentMap *Parents;
8165 llvm::SmallVector<ast_type_traits::DynTypedNode, 16> ParentStack;
8166
8167 friend class RecursiveASTVisitor<ParentMapASTVisitor>;
8168 };
8169
8170} // end namespace
8171
8172ASTContext::ParentVector
8173ASTContext::getParents(const ast_type_traits::DynTypedNode &Node) {
8174 assert(Node.getMemoizationData() &&
8175 "Invariant broken: only nodes that support memoization may be "
8176 "used in the parent map.");
8177 if (!AllParents) {
8178 // We always need to run over the whole translation unit, as
8179 // hasAncestor can escape any subtree.
8180 AllParents.reset(
8181 ParentMapASTVisitor::buildMap(*getTranslationUnitDecl()));
8182 }
8183 ParentMap::const_iterator I = AllParents->find(Node.getMemoizationData());
8184 if (I == AllParents->end()) {
8185 return ParentVector();
8186 }
8187 return I->second;
8188}