blob: 333e80be3067c2cf828d50cb335de9095b9eb423 [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"
29#include "clang/AST/TypeLoc.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000030#include "clang/Basic/Builtins.h"
Chris Lattnera9376d42009-03-28 03:45:20 +000031#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000032#include "clang/Basic/TargetInfo.h"
Benjamin Kramerf5942a42009-10-24 09:57:09 +000033#include "llvm/ADT/SmallString.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000034#include "llvm/ADT/StringExtras.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000035#include "llvm/Support/Capacity.h"
Nate Begeman6fe7c8a2009-01-18 06:42:49 +000036#include "llvm/Support/MathExtras.h"
Benjamin Kramerf5942a42009-10-24 09:57:09 +000037#include "llvm/Support/raw_ostream.h"
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +000038#include <map>
Anders Carlsson29445a02009-07-18 21:19:52 +000039
Reid Spencer5f016e22007-07-11 17:01:13 +000040using namespace clang;
41
Douglas Gregor18274032010-07-03 00:47:00 +000042unsigned ASTContext::NumImplicitDefaultConstructors;
43unsigned ASTContext::NumImplicitDefaultConstructorsDeclared;
Douglas Gregor22584312010-07-02 23:41:54 +000044unsigned ASTContext::NumImplicitCopyConstructors;
45unsigned ASTContext::NumImplicitCopyConstructorsDeclared;
Sean Huntffe37fd2011-05-25 20:50:04 +000046unsigned ASTContext::NumImplicitMoveConstructors;
47unsigned ASTContext::NumImplicitMoveConstructorsDeclared;
Douglas Gregora376d102010-07-02 21:50:04 +000048unsigned ASTContext::NumImplicitCopyAssignmentOperators;
49unsigned ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Huntffe37fd2011-05-25 20:50:04 +000050unsigned ASTContext::NumImplicitMoveAssignmentOperators;
51unsigned ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
Douglas Gregor4923aa22010-07-02 20:37:36 +000052unsigned ASTContext::NumImplicitDestructors;
53unsigned ASTContext::NumImplicitDestructorsDeclared;
54
Reid Spencer5f016e22007-07-11 17:01:13 +000055enum FloatingRank {
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +000056 HalfRank, FloatRank, DoubleRank, LongDoubleRank
Reid Spencer5f016e22007-07-11 17:01:13 +000057};
58
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +000059RawComment *ASTContext::getRawCommentForDeclNoCache(const Decl *D) const {
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +000060 if (!CommentsLoaded && ExternalSource) {
61 ExternalSource->ReadComments();
62 CommentsLoaded = true;
63 }
64
65 assert(D);
66
Dmitri Gribenkoc3fee352012-06-28 16:19:39 +000067 // User can not attach documentation to implicit declarations.
68 if (D->isImplicit())
69 return NULL;
70
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +000071 // User can not attach documentation to implicit instantiations.
72 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
73 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
74 return NULL;
75 }
76
Dmitri Gribenkodce750b2012-08-20 22:36:31 +000077 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
78 if (VD->isStaticDataMember() &&
79 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
80 return NULL;
81 }
82
83 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
84 if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
85 return NULL;
86 }
87
Dmitri Gribenkod1e5c0d2013-01-27 21:18:39 +000088 if (const ClassTemplateSpecializationDecl *CTSD =
89 dyn_cast<ClassTemplateSpecializationDecl>(D)) {
90 TemplateSpecializationKind TSK = CTSD->getSpecializationKind();
91 if (TSK == TSK_ImplicitInstantiation ||
92 TSK == TSK_Undeclared)
93 return NULL;
94 }
95
Dmitri Gribenkodce750b2012-08-20 22:36:31 +000096 if (const EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
97 if (ED->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
98 return NULL;
99 }
Fariborz Jahanian099ecfb2013-04-17 21:05:20 +0000100 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
101 // When tag declaration (but not definition!) is part of the
102 // decl-specifier-seq of some other declaration, it doesn't get comment
103 if (TD->isEmbeddedInDeclarator() && !TD->isCompleteDefinition())
104 return NULL;
105 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000106 // TODO: handle comments for function parameters properly.
107 if (isa<ParmVarDecl>(D))
108 return NULL;
109
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000110 // TODO: we could look up template parameter documentation in the template
111 // documentation.
112 if (isa<TemplateTypeParmDecl>(D) ||
113 isa<NonTypeTemplateParmDecl>(D) ||
114 isa<TemplateTemplateParmDecl>(D))
115 return NULL;
116
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000117 ArrayRef<RawComment *> RawComments = Comments.getComments();
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000118
119 // If there are no comments anywhere, we won't find anything.
120 if (RawComments.empty())
121 return NULL;
122
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +0000123 // Find declaration location.
124 // For Objective-C declarations we generally don't expect to have multiple
125 // declarators, thus use declaration starting location as the "declaration
126 // location".
127 // For all other declarations multiple declarators are used quite frequently,
128 // so we use the location of the identifier as the "declaration location".
129 SourceLocation DeclLoc;
130 if (isa<ObjCMethodDecl>(D) || isa<ObjCContainerDecl>(D) ||
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000131 isa<ObjCPropertyDecl>(D) ||
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +0000132 isa<RedeclarableTemplateDecl>(D) ||
133 isa<ClassTemplateSpecializationDecl>(D))
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +0000134 DeclLoc = D->getLocStart();
135 else
136 DeclLoc = D->getLocation();
137
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000138 // If the declaration doesn't map directly to a location in a file, we
139 // can't find the comment.
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000140 if (DeclLoc.isInvalid() || !DeclLoc.isFileID())
141 return NULL;
142
143 // Find the comment that occurs just after this declaration.
Dmitri Gribenkoa444f182012-07-17 22:01:09 +0000144 ArrayRef<RawComment *>::iterator Comment;
145 {
146 // When searching for comments during parsing, the comment we are looking
147 // for is usually among the last two comments we parsed -- check them
148 // first.
Dmitri Gribenko6fd7d302013-04-10 15:35:17 +0000149 RawComment CommentAtDeclLoc(
150 SourceMgr, SourceRange(DeclLoc), false,
151 LangOpts.CommentOpts.ParseAllComments);
Dmitri Gribenkoa444f182012-07-17 22:01:09 +0000152 BeforeThanCompare<RawComment> Compare(SourceMgr);
153 ArrayRef<RawComment *>::iterator MaybeBeforeDecl = RawComments.end() - 1;
154 bool Found = Compare(*MaybeBeforeDecl, &CommentAtDeclLoc);
155 if (!Found && RawComments.size() >= 2) {
156 MaybeBeforeDecl--;
157 Found = Compare(*MaybeBeforeDecl, &CommentAtDeclLoc);
158 }
159
160 if (Found) {
161 Comment = MaybeBeforeDecl + 1;
162 assert(Comment == std::lower_bound(RawComments.begin(), RawComments.end(),
163 &CommentAtDeclLoc, Compare));
164 } else {
165 // Slow path.
166 Comment = std::lower_bound(RawComments.begin(), RawComments.end(),
167 &CommentAtDeclLoc, Compare);
168 }
169 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000170
171 // Decompose the location for the declaration and find the beginning of the
172 // file buffer.
173 std::pair<FileID, unsigned> DeclLocDecomp = SourceMgr.getDecomposedLoc(DeclLoc);
174
175 // First check whether we have a trailing comment.
176 if (Comment != RawComments.end() &&
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000177 (*Comment)->isDocumentation() && (*Comment)->isTrailingComment() &&
Dmitri Gribenko9c006762012-07-06 23:27:33 +0000178 (isa<FieldDecl>(D) || isa<EnumConstantDecl>(D) || isa<VarDecl>(D))) {
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000179 std::pair<FileID, unsigned> CommentBeginDecomp
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000180 = SourceMgr.getDecomposedLoc((*Comment)->getSourceRange().getBegin());
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000181 // Check that Doxygen trailing comment comes after the declaration, starts
182 // on the same line and in the same file as the declaration.
183 if (DeclLocDecomp.first == CommentBeginDecomp.first &&
184 SourceMgr.getLineNumber(DeclLocDecomp.first, DeclLocDecomp.second)
185 == SourceMgr.getLineNumber(CommentBeginDecomp.first,
186 CommentBeginDecomp.second)) {
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000187 return *Comment;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000188 }
189 }
190
191 // The comment just after the declaration was not a trailing comment.
192 // Let's look at the previous comment.
193 if (Comment == RawComments.begin())
194 return NULL;
195 --Comment;
196
197 // Check that we actually have a non-member Doxygen comment.
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000198 if (!(*Comment)->isDocumentation() || (*Comment)->isTrailingComment())
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000199 return NULL;
200
201 // Decompose the end of the comment.
202 std::pair<FileID, unsigned> CommentEndDecomp
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000203 = SourceMgr.getDecomposedLoc((*Comment)->getSourceRange().getEnd());
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000204
205 // If the comment and the declaration aren't in the same file, then they
206 // aren't related.
207 if (DeclLocDecomp.first != CommentEndDecomp.first)
208 return NULL;
209
210 // Get the corresponding buffer.
211 bool Invalid = false;
212 const char *Buffer = SourceMgr.getBufferData(DeclLocDecomp.first,
213 &Invalid).data();
214 if (Invalid)
215 return NULL;
216
217 // Extract text between the comment and declaration.
218 StringRef Text(Buffer + CommentEndDecomp.second,
219 DeclLocDecomp.second - CommentEndDecomp.second);
220
Dmitri Gribenko8bdb58a2012-06-27 23:43:37 +0000221 // There should be no other declarations or preprocessor directives between
222 // comment and declaration.
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +0000223 if (Text.find_first_of(",;{}#@") != StringRef::npos)
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000224 return NULL;
225
Dmitri Gribenko811c8202012-07-06 18:19:34 +0000226 return *Comment;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000227}
228
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000229namespace {
230/// If we have a 'templated' declaration for a template, adjust 'D' to
231/// refer to the actual template.
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000232/// If we have an implicit instantiation, adjust 'D' to refer to template.
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000233const Decl *adjustDeclToTemplate(const Decl *D) {
Douglas Gregorcd81df22012-08-13 16:37:30 +0000234 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000235 // Is this function declaration part of a function template?
Douglas Gregorcd81df22012-08-13 16:37:30 +0000236 if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000237 return FTD;
238
239 // Nothing to do if function is not an implicit instantiation.
240 if (FD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation)
241 return D;
242
243 // Function is an implicit instantiation of a function template?
244 if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate())
245 return FTD;
246
247 // Function is instantiated from a member definition of a class template?
248 if (const FunctionDecl *MemberDecl =
249 FD->getInstantiatedFromMemberFunction())
250 return MemberDecl;
251
252 return D;
Douglas Gregorcd81df22012-08-13 16:37:30 +0000253 }
Dmitri Gribenko2125c902012-08-22 17:44:32 +0000254 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
255 // Static data member is instantiated from a member definition of a class
256 // template?
257 if (VD->isStaticDataMember())
258 if (const VarDecl *MemberDecl = VD->getInstantiatedFromStaticDataMember())
259 return MemberDecl;
260
261 return D;
262 }
263 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
264 // Is this class declaration part of a class template?
265 if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate())
266 return CTD;
267
268 // Class is an implicit instantiation of a class template or partial
269 // specialization?
270 if (const ClassTemplateSpecializationDecl *CTSD =
271 dyn_cast<ClassTemplateSpecializationDecl>(CRD)) {
272 if (CTSD->getSpecializationKind() != TSK_ImplicitInstantiation)
273 return D;
274 llvm::PointerUnion<ClassTemplateDecl *,
275 ClassTemplatePartialSpecializationDecl *>
276 PU = CTSD->getSpecializedTemplateOrPartial();
277 return PU.is<ClassTemplateDecl*>() ?
278 static_cast<const Decl*>(PU.get<ClassTemplateDecl *>()) :
279 static_cast<const Decl*>(
280 PU.get<ClassTemplatePartialSpecializationDecl *>());
281 }
282
283 // Class is instantiated from a member definition of a class template?
284 if (const MemberSpecializationInfo *Info =
285 CRD->getMemberSpecializationInfo())
286 return Info->getInstantiatedFrom();
287
288 return D;
289 }
290 if (const EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
291 // Enum is instantiated from a member definition of a class template?
292 if (const EnumDecl *MemberDecl = ED->getInstantiatedFromMemberEnum())
293 return MemberDecl;
294
295 return D;
296 }
297 // FIXME: Adjust alias templates?
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000298 return D;
299}
300} // unnamed namespace
301
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000302const RawComment *ASTContext::getRawCommentForAnyRedecl(
303 const Decl *D,
304 const Decl **OriginalDecl) const {
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000305 D = adjustDeclToTemplate(D);
Douglas Gregorcd81df22012-08-13 16:37:30 +0000306
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000307 // Check whether we have cached a comment for this declaration already.
308 {
309 llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
310 RedeclComments.find(D);
311 if (Pos != RedeclComments.end()) {
312 const RawCommentAndCacheFlags &Raw = Pos->second;
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000313 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
314 if (OriginalDecl)
315 *OriginalDecl = Raw.getOriginalDecl();
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000316 return Raw.getRaw();
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000317 }
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000318 }
Dmitri Gribenko8d3ba232012-07-06 00:28:32 +0000319 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000320
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000321 // Search for comments attached to declarations in the redeclaration chain.
322 const RawComment *RC = NULL;
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000323 const Decl *OriginalDeclForRC = NULL;
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000324 for (Decl::redecl_iterator I = D->redecls_begin(),
325 E = D->redecls_end();
326 I != E; ++I) {
327 llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
328 RedeclComments.find(*I);
329 if (Pos != RedeclComments.end()) {
330 const RawCommentAndCacheFlags &Raw = Pos->second;
331 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
332 RC = Raw.getRaw();
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000333 OriginalDeclForRC = Raw.getOriginalDecl();
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000334 break;
335 }
336 } else {
337 RC = getRawCommentForDeclNoCache(*I);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000338 OriginalDeclForRC = *I;
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000339 RawCommentAndCacheFlags Raw;
340 if (RC) {
341 Raw.setRaw(RC);
342 Raw.setKind(RawCommentAndCacheFlags::FromDecl);
343 } else
344 Raw.setKind(RawCommentAndCacheFlags::NoCommentInDecl);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000345 Raw.setOriginalDecl(*I);
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000346 RedeclComments[*I] = Raw;
347 if (RC)
348 break;
349 }
350 }
351
Dmitri Gribenko8376f592012-06-28 16:25:36 +0000352 // If we found a comment, it should be a documentation comment.
353 assert(!RC || RC->isDocumentation());
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000354
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000355 if (OriginalDecl)
356 *OriginalDecl = OriginalDeclForRC;
357
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000358 // Update cache for every declaration in the redeclaration chain.
359 RawCommentAndCacheFlags Raw;
360 Raw.setRaw(RC);
361 Raw.setKind(RawCommentAndCacheFlags::FromRedecl);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000362 Raw.setOriginalDecl(OriginalDeclForRC);
Dmitri Gribenkof50555e2012-08-11 00:51:43 +0000363
364 for (Decl::redecl_iterator I = D->redecls_begin(),
365 E = D->redecls_end();
366 I != E; ++I) {
367 RawCommentAndCacheFlags &R = RedeclComments[*I];
368 if (R.getKind() == RawCommentAndCacheFlags::NoCommentInDecl)
369 R = Raw;
370 }
371
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000372 return RC;
373}
374
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000375static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod,
376 SmallVectorImpl<const NamedDecl *> &Redeclared) {
377 const DeclContext *DC = ObjCMethod->getDeclContext();
378 if (const ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(DC)) {
379 const ObjCInterfaceDecl *ID = IMD->getClassInterface();
380 if (!ID)
381 return;
382 // Add redeclared method here.
Douglas Gregord3297242013-01-16 23:00:23 +0000383 for (ObjCInterfaceDecl::known_extensions_iterator
384 Ext = ID->known_extensions_begin(),
385 ExtEnd = ID->known_extensions_end();
386 Ext != ExtEnd; ++Ext) {
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000387 if (ObjCMethodDecl *RedeclaredMethod =
Douglas Gregord3297242013-01-16 23:00:23 +0000388 Ext->getMethod(ObjCMethod->getSelector(),
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000389 ObjCMethod->isInstanceMethod()))
390 Redeclared.push_back(RedeclaredMethod);
391 }
392 }
393}
394
Fariborz Jahanian749ace62012-10-11 23:52:50 +0000395comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC,
396 const Decl *D) const {
397 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
398 ThisDeclInfo->CommentDecl = D;
399 ThisDeclInfo->IsFilled = false;
400 ThisDeclInfo->fill();
401 ThisDeclInfo->CommentDecl = FC->getDecl();
402 comments::FullComment *CFC =
403 new (*this) comments::FullComment(FC->getBlocks(),
404 ThisDeclInfo);
405 return CFC;
406
407}
408
Richard Smith0a74a4c2013-05-21 05:24:00 +0000409comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const {
410 const RawComment *RC = getRawCommentForDeclNoCache(D);
411 return RC ? RC->parse(*this, 0, D) : 0;
412}
413
Dmitri Gribenko19523542012-09-29 11:40:46 +0000414comments::FullComment *ASTContext::getCommentForDecl(
415 const Decl *D,
416 const Preprocessor *PP) const {
Fariborz Jahanianfbff0c42013-05-13 17:27:00 +0000417 if (D->isInvalidDecl())
418 return NULL;
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000419 D = adjustDeclToTemplate(D);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000420
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000421 const Decl *Canonical = D->getCanonicalDecl();
422 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos =
423 ParsedComments.find(Canonical);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000424
425 if (Pos != ParsedComments.end()) {
Fariborz Jahanian749ace62012-10-11 23:52:50 +0000426 if (Canonical != D) {
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000427 comments::FullComment *FC = Pos->second;
Fariborz Jahanian749ace62012-10-11 23:52:50 +0000428 comments::FullComment *CFC = cloneFullComment(FC, D);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000429 return CFC;
430 }
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000431 return Pos->second;
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000432 }
433
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000434 const Decl *OriginalDecl;
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000435
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000436 const RawComment *RC = getRawCommentForAnyRedecl(D, &OriginalDecl);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000437 if (!RC) {
438 if (isa<ObjCMethodDecl>(D) || isa<FunctionDecl>(D)) {
Dmitri Gribenko1e905da2012-11-03 14:24:57 +0000439 SmallVector<const NamedDecl*, 8> Overridden;
Fariborz Jahanianc328d9c2013-01-12 00:28:34 +0000440 const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D);
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000441 if (OMD && OMD->isPropertyAccessor())
442 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
443 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP))
444 return cloneFullComment(FC, D);
Fariborz Jahanianc328d9c2013-01-12 00:28:34 +0000445 if (OMD)
Dmitri Gribenko1e905da2012-11-03 14:24:57 +0000446 addRedeclaredMethods(OMD, Overridden);
447 getOverriddenMethods(dyn_cast<NamedDecl>(D), Overridden);
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000448 for (unsigned i = 0, e = Overridden.size(); i < e; i++)
449 if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP))
450 return cloneFullComment(FC, D);
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000451 }
Fariborz Jahanian4857fdc2013-05-02 15:44:16 +0000452 else if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Dmitri Gribenkod1e5c0d2013-01-27 21:18:39 +0000453 // Attach any tag type's documentation to its typedef if latter
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000454 // does not have one of its own.
Fariborz Jahanian41170b52013-01-25 22:48:32 +0000455 QualType QT = TD->getUnderlyingType();
Dmitri Gribenkod1e5c0d2013-01-27 21:18:39 +0000456 if (const TagType *TT = QT->getAs<TagType>())
457 if (const Decl *TD = TT->getDecl())
458 if (comments::FullComment *FC = getCommentForDecl(TD, PP))
Fariborz Jahanian23799e32013-01-25 23:08:39 +0000459 return cloneFullComment(FC, D);
Fariborz Jahanian41170b52013-01-25 22:48:32 +0000460 }
Fariborz Jahanian622bb4a2013-04-26 20:55:38 +0000461 else if (const ObjCInterfaceDecl *IC = dyn_cast<ObjCInterfaceDecl>(D)) {
462 while (IC->getSuperClass()) {
463 IC = IC->getSuperClass();
464 if (comments::FullComment *FC = getCommentForDecl(IC, PP))
465 return cloneFullComment(FC, D);
466 }
467 }
468 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) {
469 if (const ObjCInterfaceDecl *IC = CD->getClassInterface())
470 if (comments::FullComment *FC = getCommentForDecl(IC, PP))
471 return cloneFullComment(FC, D);
472 }
473 else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
474 if (!(RD = RD->getDefinition()))
475 return NULL;
476 // Check non-virtual bases.
477 for (CXXRecordDecl::base_class_const_iterator I =
478 RD->bases_begin(), E = RD->bases_end(); I != E; ++I) {
Fariborz Jahanian91efca02013-04-26 23:34:36 +0000479 if (I->isVirtual() || (I->getAccessSpecifier() != AS_public))
Fariborz Jahanian622bb4a2013-04-26 20:55:38 +0000480 continue;
481 QualType Ty = I->getType();
482 if (Ty.isNull())
483 continue;
484 if (const CXXRecordDecl *NonVirtualBase = Ty->getAsCXXRecordDecl()) {
485 if (!(NonVirtualBase= NonVirtualBase->getDefinition()))
486 continue;
487
488 if (comments::FullComment *FC = getCommentForDecl((NonVirtualBase), PP))
489 return cloneFullComment(FC, D);
490 }
491 }
492 // Check virtual bases.
493 for (CXXRecordDecl::base_class_const_iterator I =
494 RD->vbases_begin(), E = RD->vbases_end(); I != E; ++I) {
Fariborz Jahanian91efca02013-04-26 23:34:36 +0000495 if (I->getAccessSpecifier() != AS_public)
496 continue;
Fariborz Jahanian622bb4a2013-04-26 20:55:38 +0000497 QualType Ty = I->getType();
498 if (Ty.isNull())
499 continue;
500 if (const CXXRecordDecl *VirtualBase = Ty->getAsCXXRecordDecl()) {
501 if (!(VirtualBase= VirtualBase->getDefinition()))
502 continue;
503 if (comments::FullComment *FC = getCommentForDecl((VirtualBase), PP))
504 return cloneFullComment(FC, D);
505 }
506 }
507 }
Dmitri Gribenko8d3ba232012-07-06 00:28:32 +0000508 return NULL;
Fariborz Jahanianbf967be2012-10-10 18:34:52 +0000509 }
510
Dmitri Gribenko4b41c652012-08-22 18:12:19 +0000511 // If the RawComment was attached to other redeclaration of this Decl, we
512 // should parse the comment in context of that other Decl. This is important
513 // because comments can contain references to parameter names which can be
514 // different across redeclarations.
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000515 if (D != OriginalDecl)
Dmitri Gribenko19523542012-09-29 11:40:46 +0000516 return getCommentForDecl(OriginalDecl, PP);
Dmitri Gribenko1599eac2012-08-16 18:19:43 +0000517
Dmitri Gribenko19523542012-09-29 11:40:46 +0000518 comments::FullComment *FC = RC->parse(*this, PP, D);
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +0000519 ParsedComments[Canonical] = FC;
520 return FC;
Dmitri Gribenko8d3ba232012-07-06 00:28:32 +0000521}
522
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000523void
524ASTContext::CanonicalTemplateTemplateParm::Profile(llvm::FoldingSetNodeID &ID,
525 TemplateTemplateParmDecl *Parm) {
526 ID.AddInteger(Parm->getDepth());
527 ID.AddInteger(Parm->getPosition());
Douglas Gregor61c4d282011-01-05 15:48:55 +0000528 ID.AddBoolean(Parm->isParameterPack());
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000529
530 TemplateParameterList *Params = Parm->getTemplateParameters();
531 ID.AddInteger(Params->size());
532 for (TemplateParameterList::const_iterator P = Params->begin(),
533 PEnd = Params->end();
534 P != PEnd; ++P) {
535 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
536 ID.AddInteger(0);
537 ID.AddBoolean(TTP->isParameterPack());
538 continue;
539 }
540
541 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
542 ID.AddInteger(1);
Douglas Gregor61c4d282011-01-05 15:48:55 +0000543 ID.AddBoolean(NTTP->isParameterPack());
Eli Friedman9e9c4542012-03-07 01:09:33 +0000544 ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr());
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000545 if (NTTP->isExpandedParameterPack()) {
546 ID.AddBoolean(true);
547 ID.AddInteger(NTTP->getNumExpansionTypes());
Eli Friedman9e9c4542012-03-07 01:09:33 +0000548 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
549 QualType T = NTTP->getExpansionType(I);
550 ID.AddPointer(T.getCanonicalType().getAsOpaquePtr());
551 }
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000552 } else
553 ID.AddBoolean(false);
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000554 continue;
555 }
556
557 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
558 ID.AddInteger(2);
559 Profile(ID, TTP);
560 }
561}
562
563TemplateTemplateParmDecl *
564ASTContext::getCanonicalTemplateTemplateParmDecl(
Jay Foad4ba2a172011-01-12 09:06:06 +0000565 TemplateTemplateParmDecl *TTP) const {
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000566 // Check if we already have a canonical template template parameter.
567 llvm::FoldingSetNodeID ID;
568 CanonicalTemplateTemplateParm::Profile(ID, TTP);
569 void *InsertPos = 0;
570 CanonicalTemplateTemplateParm *Canonical
571 = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
572 if (Canonical)
573 return Canonical->getParam();
574
575 // Build a canonical template parameter list.
576 TemplateParameterList *Params = TTP->getTemplateParameters();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000577 SmallVector<NamedDecl *, 4> CanonParams;
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000578 CanonParams.reserve(Params->size());
579 for (TemplateParameterList::const_iterator P = Params->begin(),
580 PEnd = Params->end();
581 P != PEnd; ++P) {
582 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P))
583 CanonParams.push_back(
584 TemplateTypeParmDecl::Create(*this, getTranslationUnitDecl(),
Abramo Bagnara344577e2011-03-06 15:48:19 +0000585 SourceLocation(),
586 SourceLocation(),
587 TTP->getDepth(),
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000588 TTP->getIndex(), 0, false,
589 TTP->isParameterPack()));
590 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000591 = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
592 QualType T = getCanonicalType(NTTP->getType());
593 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
594 NonTypeTemplateParmDecl *Param;
595 if (NTTP->isExpandedParameterPack()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000596 SmallVector<QualType, 2> ExpandedTypes;
597 SmallVector<TypeSourceInfo *, 2> ExpandedTInfos;
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000598 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
599 ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I)));
600 ExpandedTInfos.push_back(
601 getTrivialTypeSourceInfo(ExpandedTypes.back()));
602 }
603
604 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000605 SourceLocation(),
606 SourceLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000607 NTTP->getDepth(),
608 NTTP->getPosition(), 0,
609 T,
610 TInfo,
611 ExpandedTypes.data(),
612 ExpandedTypes.size(),
613 ExpandedTInfos.data());
614 } else {
615 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000616 SourceLocation(),
617 SourceLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000618 NTTP->getDepth(),
619 NTTP->getPosition(), 0,
620 T,
621 NTTP->isParameterPack(),
622 TInfo);
623 }
624 CanonParams.push_back(Param);
625
626 } else
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000627 CanonParams.push_back(getCanonicalTemplateTemplateParmDecl(
628 cast<TemplateTemplateParmDecl>(*P)));
629 }
630
631 TemplateTemplateParmDecl *CanonTTP
632 = TemplateTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
633 SourceLocation(), TTP->getDepth(),
Douglas Gregor61c4d282011-01-05 15:48:55 +0000634 TTP->getPosition(),
635 TTP->isParameterPack(),
636 0,
Douglas Gregor3e1274f2010-06-16 21:09:37 +0000637 TemplateParameterList::Create(*this, SourceLocation(),
638 SourceLocation(),
639 CanonParams.data(),
640 CanonParams.size(),
641 SourceLocation()));
642
643 // Get the new insert position for the node we care about.
644 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
645 assert(Canonical == 0 && "Shouldn't be in the map!");
646 (void)Canonical;
647
648 // Create the canonical template template parameter entry.
649 Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP);
650 CanonTemplateTemplateParms.InsertNode(Canonical, InsertPos);
651 return CanonTTP;
652}
653
Charles Davis071cc7d2010-08-16 03:33:14 +0000654CXXABI *ASTContext::createCXXABI(const TargetInfo &T) {
John McCallee79a4c2010-08-21 22:46:04 +0000655 if (!LangOpts.CPlusPlus) return 0;
656
John McCallb8b2c9d2013-01-25 22:30:49 +0000657 switch (T.getCXXABI().getKind()) {
658 case TargetCXXABI::GenericARM:
659 case TargetCXXABI::iOS:
John McCallee79a4c2010-08-21 22:46:04 +0000660 return CreateARMCXXABI(*this);
Tim Northoverc264e162013-01-31 12:13:10 +0000661 case TargetCXXABI::GenericAArch64: // Same as Itanium at this level
John McCallb8b2c9d2013-01-25 22:30:49 +0000662 case TargetCXXABI::GenericItanium:
Charles Davis071cc7d2010-08-16 03:33:14 +0000663 return CreateItaniumCXXABI(*this);
John McCallb8b2c9d2013-01-25 22:30:49 +0000664 case TargetCXXABI::Microsoft:
Charles Davis20cf7172010-08-19 02:18:14 +0000665 return CreateMicrosoftCXXABI(*this);
666 }
David Blaikie7530c032012-01-17 06:56:22 +0000667 llvm_unreachable("Invalid CXXABI type!");
Charles Davis071cc7d2010-08-16 03:33:14 +0000668}
669
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000670static const LangAS::Map *getAddressSpaceMap(const TargetInfo &T,
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000671 const LangOptions &LOpts) {
672 if (LOpts.FakeAddressSpaceMap) {
673 // The fake address space map must have a distinct entry for each
674 // language-specific address space.
675 static const unsigned FakeAddrSpaceMap[] = {
676 1, // opencl_global
677 2, // opencl_local
Peter Collingbourne4dc34eb2012-05-20 21:08:35 +0000678 3, // opencl_constant
679 4, // cuda_device
680 5, // cuda_constant
681 6 // cuda_shared
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000682 };
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000683 return &FakeAddrSpaceMap;
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000684 } else {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000685 return &T.getAddressSpaceMap();
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000686 }
687}
688
Douglas Gregor3e3cd932011-09-01 20:23:19 +0000689ASTContext::ASTContext(LangOptions& LOpts, SourceManager &SM,
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000690 const TargetInfo *t,
Daniel Dunbare91593e2008-08-11 04:54:23 +0000691 IdentifierTable &idents, SelectorTable &sels,
Chris Lattner1b63e4f2009-06-14 01:54:56 +0000692 Builtin::Context &builtins,
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000693 unsigned size_reserve,
694 bool DelayInitialization)
695 : FunctionProtoTypes(this_()),
696 TemplateSpecializationTypes(this_()),
697 DependentTemplateSpecializationTypes(this_()),
698 SubstTemplateTemplateParmPacks(this_()),
699 GlobalNestedNameSpecifier(0),
700 Int128Decl(0), UInt128Decl(0),
Meador Ingec5613b22012-06-16 03:34:49 +0000701 BuiltinVaListDecl(0),
Douglas Gregora6ea10e2012-01-17 18:09:05 +0000702 ObjCIdDecl(0), ObjCSelDecl(0), ObjCClassDecl(0), ObjCProtocolClassDecl(0),
Fariborz Jahanian96171302012-08-30 18:49:41 +0000703 BOOLDecl(0),
Douglas Gregore97179c2011-09-08 01:46:34 +0000704 CFConstantStringTypeDecl(0), ObjCInstanceTypeDecl(0),
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000705 FILEDecl(0),
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +0000706 jmp_bufDecl(0), sigjmp_bufDecl(0), ucontext_tDecl(0),
707 BlockDescriptorType(0), BlockDescriptorExtendedType(0),
708 cudaConfigureCallDecl(0),
Douglas Gregore6649772011-12-03 00:30:27 +0000709 NullTypeSourceInfo(QualType()),
710 FirstLocalImport(), LastLocalImport(),
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000711 SourceMgr(SM), LangOpts(LOpts),
Douglas Gregor30c42402011-09-27 22:38:19 +0000712 AddrSpaceMap(0), Target(t), PrintingPolicy(LOpts),
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000713 Idents(idents), Selectors(sels),
714 BuiltinInfo(builtins),
715 DeclarationNames(*this),
Douglas Gregor30c42402011-09-27 22:38:19 +0000716 ExternalSource(0), Listener(0),
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000717 Comments(SM), CommentsLoaded(false),
Dmitri Gribenko6ebf0912013-02-22 14:21:27 +0000718 CommentCommandTraits(BumpAlloc, LOpts.CommentOpts),
Rafael Espindola42b78612013-05-29 19:51:12 +0000719 LastSDM(0, 0)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000720{
Mike Stump1eb44332009-09-09 15:08:12 +0000721 if (size_reserve > 0) Types.reserve(size_reserve);
Daniel Dunbare91593e2008-08-11 04:54:23 +0000722 TUDecl = TranslationUnitDecl::Create(*this);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000723
724 if (!DelayInitialization) {
725 assert(t && "No target supplied for ASTContext initialization");
726 InitBuiltinTypes(*t);
727 }
Daniel Dunbare91593e2008-08-11 04:54:23 +0000728}
729
Reid Spencer5f016e22007-07-11 17:01:13 +0000730ASTContext::~ASTContext() {
Ted Kremenek3478eb62010-02-11 07:12:28 +0000731 // Release the DenseMaps associated with DeclContext objects.
732 // FIXME: Is this the ideal solution?
733 ReleaseDeclContextMaps();
Douglas Gregor7d10b7e2010-03-02 23:58:15 +0000734
Manuel Klimekf0f353b2013-06-03 13:51:33 +0000735 // Call all of the deallocation functions on all of their targets.
736 for (DeallocationMap::const_iterator I = Deallocations.begin(),
737 E = Deallocations.end(); I != E; ++I)
738 for (unsigned J = 0, N = I->second.size(); J != N; ++J)
739 (I->first)((I->second)[J]);
740
Ted Kremenekdcfcfbe2010-06-08 23:00:58 +0000741 // ASTRecordLayout objects in ASTRecordLayouts must always be destroyed
Douglas Gregor63fe86b2010-07-25 17:53:33 +0000742 // because they can contain DenseMaps.
743 for (llvm::DenseMap<const ObjCContainerDecl*,
744 const ASTRecordLayout*>::iterator
745 I = ObjCLayouts.begin(), E = ObjCLayouts.end(); I != E; )
746 // Increment in loop to prevent using deallocated memory.
747 if (ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second))
748 R->Destroy(*this);
749
Ted Kremenekdcfcfbe2010-06-08 23:00:58 +0000750 for (llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
751 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end(); I != E; ) {
752 // Increment in loop to prevent using deallocated memory.
753 if (ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second))
754 R->Destroy(*this);
755 }
Douglas Gregor63200642010-08-30 16:49:28 +0000756
757 for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(),
758 AEnd = DeclAttrs.end();
759 A != AEnd; ++A)
760 A->second->~AttrVec();
761}
Douglas Gregorab452ba2009-03-26 23:50:42 +0000762
Douglas Gregor00545312010-05-23 18:26:36 +0000763void ASTContext::AddDeallocation(void (*Callback)(void*), void *Data) {
Manuel Klimekf0f353b2013-06-03 13:51:33 +0000764 Deallocations[Callback].push_back(Data);
Douglas Gregor00545312010-05-23 18:26:36 +0000765}
766
Mike Stump1eb44332009-09-09 15:08:12 +0000767void
Dylan Noblesmith6f42b622012-02-05 02:12:40 +0000768ASTContext::setExternalSource(OwningPtr<ExternalASTSource> &Source) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000769 ExternalSource.reset(Source.take());
770}
771
Reid Spencer5f016e22007-07-11 17:01:13 +0000772void ASTContext::PrintStats() const {
Chandler Carruthcd92a652011-07-04 05:32:14 +0000773 llvm::errs() << "\n*** AST Context Stats:\n";
774 llvm::errs() << " " << Types.size() << " types total.\n";
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000775
Douglas Gregordbe833d2009-05-26 14:40:08 +0000776 unsigned counts[] = {
Mike Stump1eb44332009-09-09 15:08:12 +0000777#define TYPE(Name, Parent) 0,
Douglas Gregordbe833d2009-05-26 14:40:08 +0000778#define ABSTRACT_TYPE(Name, Parent)
779#include "clang/AST/TypeNodes.def"
780 0 // Extra
781 };
Douglas Gregorc2ee10d2009-04-07 17:20:56 +0000782
Reid Spencer5f016e22007-07-11 17:01:13 +0000783 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
784 Type *T = Types[i];
Douglas Gregordbe833d2009-05-26 14:40:08 +0000785 counts[(unsigned)T->getTypeClass()]++;
Reid Spencer5f016e22007-07-11 17:01:13 +0000786 }
787
Douglas Gregordbe833d2009-05-26 14:40:08 +0000788 unsigned Idx = 0;
789 unsigned TotalBytes = 0;
790#define TYPE(Name, Parent) \
791 if (counts[Idx]) \
Chandler Carruthcd92a652011-07-04 05:32:14 +0000792 llvm::errs() << " " << counts[Idx] << " " << #Name \
793 << " types\n"; \
Douglas Gregordbe833d2009-05-26 14:40:08 +0000794 TotalBytes += counts[Idx] * sizeof(Name##Type); \
795 ++Idx;
796#define ABSTRACT_TYPE(Name, Parent)
797#include "clang/AST/TypeNodes.def"
Mike Stump1eb44332009-09-09 15:08:12 +0000798
Chandler Carruthcd92a652011-07-04 05:32:14 +0000799 llvm::errs() << "Total bytes = " << TotalBytes << "\n";
800
Douglas Gregor4923aa22010-07-02 20:37:36 +0000801 // Implicit special member functions.
Chandler Carruthcd92a652011-07-04 05:32:14 +0000802 llvm::errs() << NumImplicitDefaultConstructorsDeclared << "/"
803 << NumImplicitDefaultConstructors
804 << " implicit default constructors created\n";
805 llvm::errs() << NumImplicitCopyConstructorsDeclared << "/"
806 << NumImplicitCopyConstructors
807 << " implicit copy constructors created\n";
David Blaikie4e4d0842012-03-11 07:00:24 +0000808 if (getLangOpts().CPlusPlus)
Chandler Carruthcd92a652011-07-04 05:32:14 +0000809 llvm::errs() << NumImplicitMoveConstructorsDeclared << "/"
810 << NumImplicitMoveConstructors
811 << " implicit move constructors created\n";
812 llvm::errs() << NumImplicitCopyAssignmentOperatorsDeclared << "/"
813 << NumImplicitCopyAssignmentOperators
814 << " implicit copy assignment operators created\n";
David Blaikie4e4d0842012-03-11 07:00:24 +0000815 if (getLangOpts().CPlusPlus)
Chandler Carruthcd92a652011-07-04 05:32:14 +0000816 llvm::errs() << NumImplicitMoveAssignmentOperatorsDeclared << "/"
817 << NumImplicitMoveAssignmentOperators
818 << " implicit move assignment operators created\n";
819 llvm::errs() << NumImplicitDestructorsDeclared << "/"
820 << NumImplicitDestructors
821 << " implicit destructors created\n";
822
Douglas Gregor2cf26342009-04-09 22:27:44 +0000823 if (ExternalSource.get()) {
Chandler Carruthcd92a652011-07-04 05:32:14 +0000824 llvm::errs() << "\n";
Douglas Gregor2cf26342009-04-09 22:27:44 +0000825 ExternalSource->PrintStats();
826 }
Chandler Carruthcd92a652011-07-04 05:32:14 +0000827
Douglas Gregor63fe86b2010-07-25 17:53:33 +0000828 BumpAlloc.PrintStats();
Reid Spencer5f016e22007-07-11 17:01:13 +0000829}
830
Douglas Gregor772eeae2011-08-12 06:49:56 +0000831TypedefDecl *ASTContext::getInt128Decl() const {
832 if (!Int128Decl) {
833 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(Int128Ty);
834 Int128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
835 getTranslationUnitDecl(),
836 SourceLocation(),
837 SourceLocation(),
838 &Idents.get("__int128_t"),
839 TInfo);
840 }
841
842 return Int128Decl;
843}
844
845TypedefDecl *ASTContext::getUInt128Decl() const {
846 if (!UInt128Decl) {
847 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(UnsignedInt128Ty);
848 UInt128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
849 getTranslationUnitDecl(),
850 SourceLocation(),
851 SourceLocation(),
852 &Idents.get("__uint128_t"),
853 TInfo);
854 }
855
856 return UInt128Decl;
857}
Reid Spencer5f016e22007-07-11 17:01:13 +0000858
John McCalle27ec8a2009-10-23 23:03:21 +0000859void ASTContext::InitBuiltinType(CanQualType &R, BuiltinType::Kind K) {
John McCall6b304a02009-09-24 23:30:46 +0000860 BuiltinType *Ty = new (*this, TypeAlignment) BuiltinType(K);
John McCalle27ec8a2009-10-23 23:03:21 +0000861 R = CanQualType::CreateUnsafe(QualType(Ty, 0));
John McCall6b304a02009-09-24 23:30:46 +0000862 Types.push_back(Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000863}
864
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000865void ASTContext::InitBuiltinTypes(const TargetInfo &Target) {
866 assert((!this->Target || this->Target == &Target) &&
867 "Incorrect target reinitialization");
Reid Spencer5f016e22007-07-11 17:01:13 +0000868 assert(VoidTy.isNull() && "Context reinitialized?");
Mike Stump1eb44332009-09-09 15:08:12 +0000869
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000870 this->Target = &Target;
871
872 ABI.reset(createCXXABI(Target));
873 AddrSpaceMap = getAddressSpaceMap(Target, LangOpts);
874
Reid Spencer5f016e22007-07-11 17:01:13 +0000875 // C99 6.2.5p19.
876 InitBuiltinType(VoidTy, BuiltinType::Void);
Mike Stump1eb44332009-09-09 15:08:12 +0000877
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 // C99 6.2.5p2.
879 InitBuiltinType(BoolTy, BuiltinType::Bool);
880 // C99 6.2.5p3.
Eli Friedman15b91762009-06-05 07:05:05 +0000881 if (LangOpts.CharIsSigned)
Reid Spencer5f016e22007-07-11 17:01:13 +0000882 InitBuiltinType(CharTy, BuiltinType::Char_S);
883 else
884 InitBuiltinType(CharTy, BuiltinType::Char_U);
885 // C99 6.2.5p4.
886 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
887 InitBuiltinType(ShortTy, BuiltinType::Short);
888 InitBuiltinType(IntTy, BuiltinType::Int);
889 InitBuiltinType(LongTy, BuiltinType::Long);
890 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
Mike Stump1eb44332009-09-09 15:08:12 +0000891
Reid Spencer5f016e22007-07-11 17:01:13 +0000892 // C99 6.2.5p6.
893 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
894 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
895 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
896 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
897 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
Mike Stump1eb44332009-09-09 15:08:12 +0000898
Reid Spencer5f016e22007-07-11 17:01:13 +0000899 // C99 6.2.5p10.
900 InitBuiltinType(FloatTy, BuiltinType::Float);
901 InitBuiltinType(DoubleTy, BuiltinType::Double);
902 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000903
Chris Lattner2df9ced2009-04-30 02:43:43 +0000904 // GNU extension, 128-bit integers.
905 InitBuiltinType(Int128Ty, BuiltinType::Int128);
906 InitBuiltinType(UnsignedInt128Ty, BuiltinType::UInt128);
907
Hans Wennborg15f92ba2013-05-10 10:08:40 +0000908 // C++ 3.9.1p5
909 if (TargetInfo::isTypeSigned(Target.getWCharType()))
910 InitBuiltinType(WCharTy, BuiltinType::WChar_S);
911 else // -fshort-wchar makes wchar_t be unsigned.
912 InitBuiltinType(WCharTy, BuiltinType::WChar_U);
913 if (LangOpts.CPlusPlus && LangOpts.WChar)
914 WideCharTy = WCharTy;
915 else {
916 // C99 (or C++ using -fno-wchar).
917 WideCharTy = getFromTargetType(Target.getWCharType());
918 }
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000919
James Molloy392da482012-05-04 10:55:22 +0000920 WIntTy = getFromTargetType(Target.getWIntType());
921
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000922 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
923 InitBuiltinType(Char16Ty, BuiltinType::Char16);
924 else // C99
925 Char16Ty = getFromTargetType(Target.getChar16Type());
926
927 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
928 InitBuiltinType(Char32Ty, BuiltinType::Char32);
929 else // C99
930 Char32Ty = getFromTargetType(Target.getChar32Type());
931
Douglas Gregor898574e2008-12-05 23:32:09 +0000932 // Placeholder type for type-dependent expressions whose type is
933 // completely unknown. No code should ever check a type against
934 // DependentTy and users should never see it; however, it is here to
935 // help diagnose failures to properly check for type-dependent
936 // expressions.
937 InitBuiltinType(DependentTy, BuiltinType::Dependent);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000938
John McCall2a984ca2010-10-12 00:20:44 +0000939 // Placeholder type for functions.
940 InitBuiltinType(OverloadTy, BuiltinType::Overload);
941
John McCall864c0412011-04-26 20:42:42 +0000942 // Placeholder type for bound members.
943 InitBuiltinType(BoundMemberTy, BuiltinType::BoundMember);
944
John McCall3c3b7f92011-10-25 17:37:35 +0000945 // Placeholder type for pseudo-objects.
946 InitBuiltinType(PseudoObjectTy, BuiltinType::PseudoObject);
947
John McCall1de4d4e2011-04-07 08:22:57 +0000948 // "any" type; useful for debugger-like clients.
949 InitBuiltinType(UnknownAnyTy, BuiltinType::UnknownAny);
950
John McCall0ddaeb92011-10-17 18:09:15 +0000951 // Placeholder type for unbridged ARC casts.
952 InitBuiltinType(ARCUnbridgedCastTy, BuiltinType::ARCUnbridgedCast);
953
Eli Friedmana6c66ce2012-08-31 00:14:07 +0000954 // Placeholder type for builtin functions.
955 InitBuiltinType(BuiltinFnTy, BuiltinType::BuiltinFn);
956
Reid Spencer5f016e22007-07-11 17:01:13 +0000957 // C99 6.2.5p11.
958 FloatComplexTy = getComplexType(FloatTy);
959 DoubleComplexTy = getComplexType(DoubleTy);
960 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000961
Fariborz Jahanian13dcd002009-11-21 19:53:08 +0000962 // Builtin types for 'id', 'Class', and 'SEL'.
Steve Naroffde2e22d2009-07-15 18:40:39 +0000963 InitBuiltinType(ObjCBuiltinIdTy, BuiltinType::ObjCId);
964 InitBuiltinType(ObjCBuiltinClassTy, BuiltinType::ObjCClass);
Fariborz Jahanian13dcd002009-11-21 19:53:08 +0000965 InitBuiltinType(ObjCBuiltinSelTy, BuiltinType::ObjCSel);
Guy Benyeib13621d2012-12-18 14:38:23 +0000966
967 if (LangOpts.OpenCL) {
968 InitBuiltinType(OCLImage1dTy, BuiltinType::OCLImage1d);
969 InitBuiltinType(OCLImage1dArrayTy, BuiltinType::OCLImage1dArray);
970 InitBuiltinType(OCLImage1dBufferTy, BuiltinType::OCLImage1dBuffer);
971 InitBuiltinType(OCLImage2dTy, BuiltinType::OCLImage2d);
972 InitBuiltinType(OCLImage2dArrayTy, BuiltinType::OCLImage2dArray);
973 InitBuiltinType(OCLImage3dTy, BuiltinType::OCLImage3d);
Guy Benyeie6b9d802013-01-20 12:31:11 +0000974
Guy Benyei21f18c42013-02-07 10:55:47 +0000975 InitBuiltinType(OCLSamplerTy, BuiltinType::OCLSampler);
Guy Benyeie6b9d802013-01-20 12:31:11 +0000976 InitBuiltinType(OCLEventTy, BuiltinType::OCLEvent);
Guy Benyeib13621d2012-12-18 14:38:23 +0000977 }
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000978
979 // Builtin type for __objc_yes and __objc_no
Fariborz Jahanian93a49942012-04-16 21:03:30 +0000980 ObjCBuiltinBoolTy = (Target.useSignedCharForObjCBool() ?
981 SignedCharTy : BoolTy);
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000982
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000983 ObjCConstantStringType = QualType();
Fariborz Jahanianf7992132013-01-04 18:45:40 +0000984
985 ObjCSuperType = QualType();
Mike Stump1eb44332009-09-09 15:08:12 +0000986
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000987 // void * type
988 VoidPtrTy = getPointerType(VoidTy);
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000989
990 // nullptr type (C++0x 2.14.7)
991 InitBuiltinType(NullPtrTy, BuiltinType::NullPtr);
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000992
993 // half type (OpenCL 6.1.1.1) / ARM NEON __fp16
994 InitBuiltinType(HalfTy, BuiltinType::Half);
Meador Ingefb40e3f2012-07-01 15:57:25 +0000995
996 // Builtin type used to help define __builtin_va_list.
997 VaListTagTy = QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000998}
999
David Blaikied6471f72011-09-25 23:23:43 +00001000DiagnosticsEngine &ASTContext::getDiagnostics() const {
Argyrios Kyrtzidis78a916e2010-09-22 14:32:24 +00001001 return SourceMgr.getDiagnostics();
1002}
1003
Douglas Gregor63200642010-08-30 16:49:28 +00001004AttrVec& ASTContext::getDeclAttrs(const Decl *D) {
1005 AttrVec *&Result = DeclAttrs[D];
1006 if (!Result) {
1007 void *Mem = Allocate(sizeof(AttrVec));
1008 Result = new (Mem) AttrVec;
1009 }
1010
1011 return *Result;
1012}
1013
1014/// \brief Erase the attributes corresponding to the given declaration.
1015void ASTContext::eraseDeclAttrs(const Decl *D) {
1016 llvm::DenseMap<const Decl*, AttrVec*>::iterator Pos = DeclAttrs.find(D);
1017 if (Pos != DeclAttrs.end()) {
1018 Pos->second->~AttrVec();
1019 DeclAttrs.erase(Pos);
1020 }
1021}
1022
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001023MemberSpecializationInfo *
Douglas Gregor663b5a02009-10-14 20:14:33 +00001024ASTContext::getInstantiatedFromStaticDataMember(const VarDecl *Var) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001025 assert(Var->isStaticDataMember() && "Not a static data member");
Douglas Gregor663b5a02009-10-14 20:14:33 +00001026 llvm::DenseMap<const VarDecl *, MemberSpecializationInfo *>::iterator Pos
Douglas Gregor7caa6822009-07-24 20:34:43 +00001027 = InstantiatedFromStaticDataMember.find(Var);
1028 if (Pos == InstantiatedFromStaticDataMember.end())
1029 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Douglas Gregor7caa6822009-07-24 20:34:43 +00001031 return Pos->second;
1032}
1033
Mike Stump1eb44332009-09-09 15:08:12 +00001034void
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001035ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +00001036 TemplateSpecializationKind TSK,
1037 SourceLocation PointOfInstantiation) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001038 assert(Inst->isStaticDataMember() && "Not a static data member");
1039 assert(Tmpl->isStaticDataMember() && "Not a static data member");
1040 assert(!InstantiatedFromStaticDataMember[Inst] &&
1041 "Already noted what static data member was instantiated from");
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001042 InstantiatedFromStaticDataMember[Inst]
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +00001043 = new (*this) MemberSpecializationInfo(Tmpl, TSK, PointOfInstantiation);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001044}
1045
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001046FunctionDecl *ASTContext::getClassScopeSpecializationPattern(
1047 const FunctionDecl *FD){
1048 assert(FD && "Specialization is 0");
1049 llvm::DenseMap<const FunctionDecl*, FunctionDecl *>::const_iterator Pos
Francois Pichet0d95f0d2011-08-14 14:28:49 +00001050 = ClassScopeSpecializationPattern.find(FD);
1051 if (Pos == ClassScopeSpecializationPattern.end())
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001052 return 0;
1053
1054 return Pos->second;
1055}
1056
1057void ASTContext::setClassScopeSpecializationPattern(FunctionDecl *FD,
1058 FunctionDecl *Pattern) {
1059 assert(FD && "Specialization is 0");
1060 assert(Pattern && "Class scope specialization pattern is 0");
Francois Pichet0d95f0d2011-08-14 14:28:49 +00001061 ClassScopeSpecializationPattern[FD] = Pattern;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001062}
1063
John McCall7ba107a2009-11-18 02:36:19 +00001064NamedDecl *
John McCalled976492009-12-04 22:46:56 +00001065ASTContext::getInstantiatedFromUsingDecl(UsingDecl *UUD) {
John McCall7ba107a2009-11-18 02:36:19 +00001066 llvm::DenseMap<UsingDecl *, NamedDecl *>::const_iterator Pos
John McCalled976492009-12-04 22:46:56 +00001067 = InstantiatedFromUsingDecl.find(UUD);
1068 if (Pos == InstantiatedFromUsingDecl.end())
Anders Carlsson0d8df782009-08-29 19:37:28 +00001069 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Anders Carlsson0d8df782009-08-29 19:37:28 +00001071 return Pos->second;
1072}
1073
1074void
John McCalled976492009-12-04 22:46:56 +00001075ASTContext::setInstantiatedFromUsingDecl(UsingDecl *Inst, NamedDecl *Pattern) {
1076 assert((isa<UsingDecl>(Pattern) ||
1077 isa<UnresolvedUsingValueDecl>(Pattern) ||
1078 isa<UnresolvedUsingTypenameDecl>(Pattern)) &&
1079 "pattern decl is not a using decl");
1080 assert(!InstantiatedFromUsingDecl[Inst] && "pattern already exists");
1081 InstantiatedFromUsingDecl[Inst] = Pattern;
1082}
1083
1084UsingShadowDecl *
1085ASTContext::getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst) {
1086 llvm::DenseMap<UsingShadowDecl*, UsingShadowDecl*>::const_iterator Pos
1087 = InstantiatedFromUsingShadowDecl.find(Inst);
1088 if (Pos == InstantiatedFromUsingShadowDecl.end())
1089 return 0;
1090
1091 return Pos->second;
1092}
1093
1094void
1095ASTContext::setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst,
1096 UsingShadowDecl *Pattern) {
1097 assert(!InstantiatedFromUsingShadowDecl[Inst] && "pattern already exists");
1098 InstantiatedFromUsingShadowDecl[Inst] = Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00001099}
1100
Anders Carlssond8b285f2009-09-01 04:26:58 +00001101FieldDecl *ASTContext::getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field) {
1102 llvm::DenseMap<FieldDecl *, FieldDecl *>::iterator Pos
1103 = InstantiatedFromUnnamedFieldDecl.find(Field);
1104 if (Pos == InstantiatedFromUnnamedFieldDecl.end())
1105 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001106
Anders Carlssond8b285f2009-09-01 04:26:58 +00001107 return Pos->second;
1108}
1109
1110void ASTContext::setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst,
1111 FieldDecl *Tmpl) {
1112 assert(!Inst->getDeclName() && "Instantiated field decl is not unnamed");
1113 assert(!Tmpl->getDeclName() && "Template field decl is not unnamed");
1114 assert(!InstantiatedFromUnnamedFieldDecl[Inst] &&
1115 "Already noted what unnamed field was instantiated from");
Mike Stump1eb44332009-09-09 15:08:12 +00001116
Anders Carlssond8b285f2009-09-01 04:26:58 +00001117 InstantiatedFromUnnamedFieldDecl[Inst] = Tmpl;
1118}
1119
Fariborz Jahanian14d56ef2011-04-27 17:14:21 +00001120bool ASTContext::ZeroBitfieldFollowsNonBitfield(const FieldDecl *FD,
1121 const FieldDecl *LastFD) const {
1122 return (FD->isBitField() && LastFD && !LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001123 FD->getBitWidthValue(*this) == 0);
Fariborz Jahanian14d56ef2011-04-27 17:14:21 +00001124}
1125
Fariborz Jahanian340fa242011-05-02 17:20:56 +00001126bool ASTContext::ZeroBitfieldFollowsBitfield(const FieldDecl *FD,
1127 const FieldDecl *LastFD) const {
1128 return (FD->isBitField() && LastFD && LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001129 FD->getBitWidthValue(*this) == 0 &&
1130 LastFD->getBitWidthValue(*this) != 0);
Fariborz Jahanian340fa242011-05-02 17:20:56 +00001131}
1132
Fariborz Jahanian9b3acaa2011-05-04 18:51:37 +00001133bool ASTContext::BitfieldFollowsBitfield(const FieldDecl *FD,
1134 const FieldDecl *LastFD) const {
1135 return (FD->isBitField() && LastFD && LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001136 FD->getBitWidthValue(*this) &&
1137 LastFD->getBitWidthValue(*this));
Fariborz Jahanian9b3acaa2011-05-04 18:51:37 +00001138}
1139
Chad Rosierdd7fddb2011-08-04 23:34:15 +00001140bool ASTContext::NonBitfieldFollowsBitfield(const FieldDecl *FD,
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001141 const FieldDecl *LastFD) const {
1142 return (!FD->isBitField() && LastFD && LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001143 LastFD->getBitWidthValue(*this));
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001144}
1145
Chad Rosierdd7fddb2011-08-04 23:34:15 +00001146bool ASTContext::BitfieldFollowsNonBitfield(const FieldDecl *FD,
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001147 const FieldDecl *LastFD) const {
1148 return (FD->isBitField() && LastFD && !LastFD->isBitField() &&
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001149 FD->getBitWidthValue(*this));
Fariborz Jahanian52bbe7a2011-05-06 21:56:12 +00001150}
1151
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001152ASTContext::overridden_cxx_method_iterator
1153ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
1154 llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001155 = OverriddenMethods.find(Method->getCanonicalDecl());
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001156 if (Pos == OverriddenMethods.end())
1157 return 0;
1158
1159 return Pos->second.begin();
1160}
1161
1162ASTContext::overridden_cxx_method_iterator
1163ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
1164 llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001165 = OverriddenMethods.find(Method->getCanonicalDecl());
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001166 if (Pos == OverriddenMethods.end())
1167 return 0;
1168
1169 return Pos->second.end();
1170}
1171
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001172unsigned
1173ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
1174 llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001175 = OverriddenMethods.find(Method->getCanonicalDecl());
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001176 if (Pos == OverriddenMethods.end())
1177 return 0;
1178
1179 return Pos->second.size();
1180}
1181
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001182void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method,
1183 const CXXMethodDecl *Overridden) {
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00001184 assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl());
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001185 OverriddenMethods[Method].push_back(Overridden);
1186}
1187
Dmitri Gribenko1e905da2012-11-03 14:24:57 +00001188void ASTContext::getOverriddenMethods(
1189 const NamedDecl *D,
1190 SmallVectorImpl<const NamedDecl *> &Overridden) const {
Argyrios Kyrtzidis21c36072012-10-09 01:23:50 +00001191 assert(D);
1192
1193 if (const CXXMethodDecl *CXXMethod = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis685d1042013-04-17 00:09:03 +00001194 Overridden.append(overridden_methods_begin(CXXMethod),
1195 overridden_methods_end(CXXMethod));
Argyrios Kyrtzidis21c36072012-10-09 01:23:50 +00001196 return;
1197 }
1198
1199 const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(D);
1200 if (!Method)
1201 return;
1202
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001203 SmallVector<const ObjCMethodDecl *, 8> OverDecls;
1204 Method->getOverriddenMethods(OverDecls);
Argyrios Kyrtzidisbc0a2bb2012-10-09 20:08:43 +00001205 Overridden.append(OverDecls.begin(), OverDecls.end());
Argyrios Kyrtzidis21c36072012-10-09 01:23:50 +00001206}
1207
Douglas Gregore6649772011-12-03 00:30:27 +00001208void ASTContext::addedLocalImportDecl(ImportDecl *Import) {
1209 assert(!Import->NextLocalImport && "Import declaration already in the chain");
1210 assert(!Import->isFromASTFile() && "Non-local import declaration");
1211 if (!FirstLocalImport) {
1212 FirstLocalImport = Import;
1213 LastLocalImport = Import;
1214 return;
1215 }
1216
1217 LastLocalImport->NextLocalImport = Import;
1218 LastLocalImport = Import;
1219}
1220
Chris Lattner464175b2007-07-18 17:52:12 +00001221//===----------------------------------------------------------------------===//
1222// Type Sizing and Analysis
1223//===----------------------------------------------------------------------===//
Chris Lattnera7674d82007-07-13 22:13:22 +00001224
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001225/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
1226/// scalar floating point type.
1227const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
John McCall183700f2009-09-21 23:43:11 +00001228 const BuiltinType *BT = T->getAs<BuiltinType>();
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001229 assert(BT && "Not a floating point type!");
1230 switch (BT->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001231 default: llvm_unreachable("Not a floating point type!");
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001232 case BuiltinType::Half: return Target->getHalfFormat();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001233 case BuiltinType::Float: return Target->getFloatFormat();
1234 case BuiltinType::Double: return Target->getDoubleFormat();
1235 case BuiltinType::LongDouble: return Target->getLongDoubleFormat();
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001236 }
1237}
1238
Ken Dyck8b752f12010-01-27 17:10:57 +00001239/// getDeclAlign - Return a conservative estimate of the alignment of the
Chris Lattneraf707ab2009-01-24 21:53:27 +00001240/// specified decl. Note that bitfields do not have a valid alignment, so
1241/// this method will assert on them.
Sebastian Redl5d484e82009-11-23 17:18:46 +00001242/// If @p RefAsPointee, references are treated like their underlying type
1243/// (for alignof), else they're treated like pointers (for CodeGen).
Jay Foad4ba2a172011-01-12 09:06:06 +00001244CharUnits ASTContext::getDeclAlign(const Decl *D, bool RefAsPointee) const {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001245 unsigned Align = Target->getCharWidth();
Eli Friedmandcdafb62009-02-22 02:56:25 +00001246
John McCall4081a5c2010-10-08 18:24:19 +00001247 bool UseAlignAttrOnly = false;
1248 if (unsigned AlignFromAttr = D->getMaxAlignment()) {
1249 Align = AlignFromAttr;
Eli Friedmandcdafb62009-02-22 02:56:25 +00001250
John McCall4081a5c2010-10-08 18:24:19 +00001251 // __attribute__((aligned)) can increase or decrease alignment
1252 // *except* on a struct or struct member, where it only increases
1253 // alignment unless 'packed' is also specified.
1254 //
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001255 // It is an error for alignas to decrease alignment, so we can
John McCall4081a5c2010-10-08 18:24:19 +00001256 // ignore that possibility; Sema should diagnose it.
1257 if (isa<FieldDecl>(D)) {
1258 UseAlignAttrOnly = D->hasAttr<PackedAttr>() ||
1259 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1260 } else {
1261 UseAlignAttrOnly = true;
1262 }
1263 }
Fariborz Jahanian78a7d7d2011-05-05 21:19:14 +00001264 else if (isa<FieldDecl>(D))
1265 UseAlignAttrOnly =
1266 D->hasAttr<PackedAttr>() ||
1267 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
John McCall4081a5c2010-10-08 18:24:19 +00001268
John McCallba4f5d52011-01-20 07:57:12 +00001269 // If we're using the align attribute only, just ignore everything
1270 // else about the declaration and its type.
John McCall4081a5c2010-10-08 18:24:19 +00001271 if (UseAlignAttrOnly) {
John McCallba4f5d52011-01-20 07:57:12 +00001272 // do nothing
1273
John McCall4081a5c2010-10-08 18:24:19 +00001274 } else if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
Chris Lattneraf707ab2009-01-24 21:53:27 +00001275 QualType T = VD->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001276 if (const ReferenceType* RT = T->getAs<ReferenceType>()) {
Sebastian Redl5d484e82009-11-23 17:18:46 +00001277 if (RefAsPointee)
1278 T = RT->getPointeeType();
1279 else
1280 T = getPointerType(RT->getPointeeType());
1281 }
1282 if (!T->isIncompleteType() && !T->isFunctionType()) {
John McCall3b657512011-01-19 10:06:00 +00001283 // Adjust alignments of declarations with array type by the
1284 // large-array alignment on the target.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001285 unsigned MinWidth = Target->getLargeArrayMinWidth();
John McCall3b657512011-01-19 10:06:00 +00001286 const ArrayType *arrayType;
1287 if (MinWidth && (arrayType = getAsArrayType(T))) {
1288 if (isa<VariableArrayType>(arrayType))
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001289 Align = std::max(Align, Target->getLargeArrayAlign());
John McCall3b657512011-01-19 10:06:00 +00001290 else if (isa<ConstantArrayType>(arrayType) &&
1291 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001292 Align = std::max(Align, Target->getLargeArrayAlign());
Eli Friedmandcdafb62009-02-22 02:56:25 +00001293
John McCall3b657512011-01-19 10:06:00 +00001294 // Walk through any array types while we're at it.
1295 T = getBaseElementType(arrayType);
1296 }
Chad Rosier9f1210c2011-07-26 07:03:04 +00001297 Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr()));
Ulrich Weigand6b203512013-05-06 16:23:57 +00001298 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1299 if (VD->hasGlobalStorage())
1300 Align = std::max(Align, getTargetInfo().getMinGlobalAlign());
1301 }
Eli Friedmandcdafb62009-02-22 02:56:25 +00001302 }
John McCallba4f5d52011-01-20 07:57:12 +00001303
1304 // Fields can be subject to extra alignment constraints, like if
1305 // the field is packed, the struct is packed, or the struct has a
1306 // a max-field-alignment constraint (#pragma pack). So calculate
1307 // the actual alignment of the field within the struct, and then
1308 // (as we're expected to) constrain that by the alignment of the type.
1309 if (const FieldDecl *field = dyn_cast<FieldDecl>(VD)) {
1310 // So calculate the alignment of the field.
1311 const ASTRecordLayout &layout = getASTRecordLayout(field->getParent());
1312
1313 // Start with the record's overall alignment.
Ken Dyckdac54c12011-02-15 02:32:40 +00001314 unsigned fieldAlign = toBits(layout.getAlignment());
John McCallba4f5d52011-01-20 07:57:12 +00001315
1316 // Use the GCD of that and the offset within the record.
1317 uint64_t offset = layout.getFieldOffset(field->getFieldIndex());
1318 if (offset > 0) {
1319 // Alignment is always a power of 2, so the GCD will be a power of 2,
1320 // which means we get to do this crazy thing instead of Euclid's.
1321 uint64_t lowBitOfOffset = offset & (~offset + 1);
1322 if (lowBitOfOffset < fieldAlign)
1323 fieldAlign = static_cast<unsigned>(lowBitOfOffset);
1324 }
1325
1326 Align = std::min(Align, fieldAlign);
Charles Davis05f62472010-02-23 04:52:00 +00001327 }
Chris Lattneraf707ab2009-01-24 21:53:27 +00001328 }
Eli Friedmandcdafb62009-02-22 02:56:25 +00001329
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001330 return toCharUnitsFromBits(Align);
Chris Lattneraf707ab2009-01-24 21:53:27 +00001331}
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001332
John McCall929bbfb2012-08-21 04:10:00 +00001333// getTypeInfoDataSizeInChars - Return the size of a type, in
1334// chars. If the type is a record, its data size is returned. This is
1335// the size of the memcpy that's performed when assigning this type
1336// using a trivial copy/move assignment operator.
1337std::pair<CharUnits, CharUnits>
1338ASTContext::getTypeInfoDataSizeInChars(QualType T) const {
1339 std::pair<CharUnits, CharUnits> sizeAndAlign = getTypeInfoInChars(T);
1340
1341 // In C++, objects can sometimes be allocated into the tail padding
1342 // of a base-class subobject. We decide whether that's possible
1343 // during class layout, so here we can just trust the layout results.
1344 if (getLangOpts().CPlusPlus) {
1345 if (const RecordType *RT = T->getAs<RecordType>()) {
1346 const ASTRecordLayout &layout = getASTRecordLayout(RT->getDecl());
1347 sizeAndAlign.first = layout.getDataSize();
1348 }
1349 }
1350
1351 return sizeAndAlign;
1352}
1353
Richard Trieu910f17e2013-05-14 21:59:17 +00001354/// getConstantArrayInfoInChars - Performing the computation in CharUnits
1355/// instead of in bits prevents overflowing the uint64_t for some large arrays.
1356std::pair<CharUnits, CharUnits>
1357static getConstantArrayInfoInChars(const ASTContext &Context,
1358 const ConstantArrayType *CAT) {
1359 std::pair<CharUnits, CharUnits> EltInfo =
1360 Context.getTypeInfoInChars(CAT->getElementType());
1361 uint64_t Size = CAT->getSize().getZExtValue();
Richard Trieu1069b732013-05-14 23:41:50 +00001362 assert((Size == 0 || static_cast<uint64_t>(EltInfo.first.getQuantity()) <=
1363 (uint64_t)(-1)/Size) &&
Richard Trieu910f17e2013-05-14 21:59:17 +00001364 "Overflow in array type char size evaluation");
1365 uint64_t Width = EltInfo.first.getQuantity() * Size;
1366 unsigned Align = EltInfo.second.getQuantity();
1367 Width = llvm::RoundUpToAlignment(Width, Align);
1368 return std::make_pair(CharUnits::fromQuantity(Width),
1369 CharUnits::fromQuantity(Align));
1370}
1371
John McCallea1471e2010-05-20 01:18:31 +00001372std::pair<CharUnits, CharUnits>
Ken Dyckbee5a792011-02-20 01:55:18 +00001373ASTContext::getTypeInfoInChars(const Type *T) const {
Richard Trieu910f17e2013-05-14 21:59:17 +00001374 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(T))
1375 return getConstantArrayInfoInChars(*this, CAT);
John McCallea1471e2010-05-20 01:18:31 +00001376 std::pair<uint64_t, unsigned> Info = getTypeInfo(T);
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001377 return std::make_pair(toCharUnitsFromBits(Info.first),
1378 toCharUnitsFromBits(Info.second));
John McCallea1471e2010-05-20 01:18:31 +00001379}
1380
1381std::pair<CharUnits, CharUnits>
Ken Dyckbee5a792011-02-20 01:55:18 +00001382ASTContext::getTypeInfoInChars(QualType T) const {
John McCallea1471e2010-05-20 01:18:31 +00001383 return getTypeInfoInChars(T.getTypePtr());
1384}
1385
Daniel Dunbarbc5419a2012-03-09 04:12:54 +00001386std::pair<uint64_t, unsigned> ASTContext::getTypeInfo(const Type *T) const {
1387 TypeInfoMap::iterator it = MemoizedTypeInfo.find(T);
1388 if (it != MemoizedTypeInfo.end())
1389 return it->second;
1390
1391 std::pair<uint64_t, unsigned> Info = getTypeInfoImpl(T);
1392 MemoizedTypeInfo.insert(std::make_pair(T, Info));
1393 return Info;
1394}
1395
1396/// getTypeInfoImpl - Return the size of the specified type, in bits. This
1397/// method does not work on incomplete types.
John McCall0953e762009-09-24 19:53:00 +00001398///
1399/// FIXME: Pointers into different addr spaces could have different sizes and
1400/// alignment requirements: getPointerInfo should take an AddrSpace, this
1401/// should take a QualType, &c.
Chris Lattnerd2d2a112007-07-14 01:29:45 +00001402std::pair<uint64_t, unsigned>
Daniel Dunbarbc5419a2012-03-09 04:12:54 +00001403ASTContext::getTypeInfoImpl(const Type *T) const {
Mike Stump5e301002009-02-27 18:32:39 +00001404 uint64_t Width=0;
1405 unsigned Align=8;
Chris Lattnera7674d82007-07-13 22:13:22 +00001406 switch (T->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001407#define TYPE(Class, Base)
1408#define ABSTRACT_TYPE(Class, Base)
Douglas Gregor18857642009-04-30 17:32:17 +00001409#define NON_CANONICAL_TYPE(Class, Base)
Douglas Gregor72564e72009-02-26 23:50:07 +00001410#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1411#include "clang/AST/TypeNodes.def"
John McCalld3d49bb2011-06-28 16:49:23 +00001412 llvm_unreachable("Should not see dependent types");
Douglas Gregor72564e72009-02-26 23:50:07 +00001413
Chris Lattner692233e2007-07-13 22:27:08 +00001414 case Type::FunctionNoProto:
1415 case Type::FunctionProto:
Douglas Gregor18857642009-04-30 17:32:17 +00001416 // GCC extension: alignof(function) = 32 bits
1417 Width = 0;
1418 Align = 32;
1419 break;
1420
Douglas Gregor72564e72009-02-26 23:50:07 +00001421 case Type::IncompleteArray:
Steve Narofffb22d962007-08-30 01:06:46 +00001422 case Type::VariableArray:
Douglas Gregor18857642009-04-30 17:32:17 +00001423 Width = 0;
1424 Align = getTypeAlign(cast<ArrayType>(T)->getElementType());
1425 break;
1426
Steve Narofffb22d962007-08-30 01:06:46 +00001427 case Type::ConstantArray: {
Daniel Dunbar1d751182008-11-08 05:48:37 +00001428 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
Mike Stump1eb44332009-09-09 15:08:12 +00001429
Chris Lattner98be4942008-03-05 18:54:05 +00001430 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Abramo Bagnarafea966a2011-12-13 11:23:52 +00001431 uint64_t Size = CAT->getSize().getZExtValue();
Daniel Dunbarbc5419a2012-03-09 04:12:54 +00001432 assert((Size == 0 || EltInfo.first <= (uint64_t)(-1)/Size) &&
1433 "Overflow in array type bit size evaluation");
Abramo Bagnarafea966a2011-12-13 11:23:52 +00001434 Width = EltInfo.first*Size;
Chris Lattner030d8842007-07-19 22:06:24 +00001435 Align = EltInfo.second;
Argyrios Kyrtzidiscd88b412011-04-26 21:05:39 +00001436 Width = llvm::RoundUpToAlignment(Width, Align);
Chris Lattner030d8842007-07-19 22:06:24 +00001437 break;
Christopher Lamb5c09a022007-12-29 05:10:55 +00001438 }
Nate Begeman213541a2008-04-18 23:10:10 +00001439 case Type::ExtVector:
Chris Lattner030d8842007-07-19 22:06:24 +00001440 case Type::Vector: {
Chris Lattner9fcfe922009-10-22 05:17:15 +00001441 const VectorType *VT = cast<VectorType>(T);
1442 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(VT->getElementType());
1443 Width = EltInfo.first*VT->getNumElements();
Eli Friedman4bd998b2008-05-30 09:31:38 +00001444 Align = Width;
Nate Begeman6fe7c8a2009-01-18 06:42:49 +00001445 // If the alignment is not a power of 2, round up to the next power of 2.
1446 // This happens for non-power-of-2 length vectors.
Dan Gohman8eefcd32010-04-21 23:32:43 +00001447 if (Align & (Align-1)) {
Chris Lattner9fcfe922009-10-22 05:17:15 +00001448 Align = llvm::NextPowerOf2(Align);
1449 Width = llvm::RoundUpToAlignment(Width, Align);
1450 }
Chad Rosierf9e9af72012-07-13 23:57:43 +00001451 // Adjust the alignment based on the target max.
1452 uint64_t TargetVectorAlign = Target->getMaxVectorAlign();
1453 if (TargetVectorAlign && TargetVectorAlign < Align)
1454 Align = TargetVectorAlign;
Chris Lattner030d8842007-07-19 22:06:24 +00001455 break;
1456 }
Chris Lattner5d2a6302007-07-18 18:26:58 +00001457
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001458 case Type::Builtin:
Chris Lattnera7674d82007-07-13 22:13:22 +00001459 switch (cast<BuiltinType>(T)->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001460 default: llvm_unreachable("Unknown builtin type!");
Chris Lattnerd2d2a112007-07-14 01:29:45 +00001461 case BuiltinType::Void:
Douglas Gregor18857642009-04-30 17:32:17 +00001462 // GCC extension: alignof(void) = 8 bits.
1463 Width = 0;
1464 Align = 8;
1465 break;
1466
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001467 case BuiltinType::Bool:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001468 Width = Target->getBoolWidth();
1469 Align = Target->getBoolAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001470 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001471 case BuiltinType::Char_S:
1472 case BuiltinType::Char_U:
1473 case BuiltinType::UChar:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001474 case BuiltinType::SChar:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001475 Width = Target->getCharWidth();
1476 Align = Target->getCharAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001477 break;
Chris Lattner3f59c972010-12-25 23:25:43 +00001478 case BuiltinType::WChar_S:
1479 case BuiltinType::WChar_U:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001480 Width = Target->getWCharWidth();
1481 Align = Target->getWCharAlign();
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001482 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001483 case BuiltinType::Char16:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001484 Width = Target->getChar16Width();
1485 Align = Target->getChar16Align();
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001486 break;
1487 case BuiltinType::Char32:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001488 Width = Target->getChar32Width();
1489 Align = Target->getChar32Align();
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001490 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001491 case BuiltinType::UShort:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001492 case BuiltinType::Short:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001493 Width = Target->getShortWidth();
1494 Align = Target->getShortAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001495 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001496 case BuiltinType::UInt:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001497 case BuiltinType::Int:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001498 Width = Target->getIntWidth();
1499 Align = Target->getIntAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001500 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001501 case BuiltinType::ULong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001502 case BuiltinType::Long:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001503 Width = Target->getLongWidth();
1504 Align = Target->getLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001505 break;
Chris Lattner692233e2007-07-13 22:27:08 +00001506 case BuiltinType::ULongLong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001507 case BuiltinType::LongLong:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001508 Width = Target->getLongLongWidth();
1509 Align = Target->getLongLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001510 break;
Chris Lattnerec16cb92009-04-30 02:55:13 +00001511 case BuiltinType::Int128:
1512 case BuiltinType::UInt128:
1513 Width = 128;
1514 Align = 128; // int128_t is 128-bit aligned on all targets.
1515 break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001516 case BuiltinType::Half:
1517 Width = Target->getHalfWidth();
1518 Align = Target->getHalfAlign();
1519 break;
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001520 case BuiltinType::Float:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001521 Width = Target->getFloatWidth();
1522 Align = Target->getFloatAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001523 break;
1524 case BuiltinType::Double:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001525 Width = Target->getDoubleWidth();
1526 Align = Target->getDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001527 break;
1528 case BuiltinType::LongDouble:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001529 Width = Target->getLongDoubleWidth();
1530 Align = Target->getLongDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001531 break;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001532 case BuiltinType::NullPtr:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001533 Width = Target->getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t)
1534 Align = Target->getPointerAlign(0); // == sizeof(void*)
Sebastian Redl1590d9c2009-05-27 19:34:06 +00001535 break;
Fariborz Jahaniane04f5fc2010-08-02 18:03:20 +00001536 case BuiltinType::ObjCId:
1537 case BuiltinType::ObjCClass:
1538 case BuiltinType::ObjCSel:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001539 Width = Target->getPointerWidth(0);
1540 Align = Target->getPointerAlign(0);
Fariborz Jahaniane04f5fc2010-08-02 18:03:20 +00001541 break;
Guy Benyei21f18c42013-02-07 10:55:47 +00001542 case BuiltinType::OCLSampler:
1543 // Samplers are modeled as integers.
1544 Width = Target->getIntWidth();
1545 Align = Target->getIntAlign();
1546 break;
Guy Benyeie6b9d802013-01-20 12:31:11 +00001547 case BuiltinType::OCLEvent:
Guy Benyeib13621d2012-12-18 14:38:23 +00001548 case BuiltinType::OCLImage1d:
1549 case BuiltinType::OCLImage1dArray:
1550 case BuiltinType::OCLImage1dBuffer:
1551 case BuiltinType::OCLImage2d:
1552 case BuiltinType::OCLImage2dArray:
1553 case BuiltinType::OCLImage3d:
1554 // Currently these types are pointers to opaque types.
1555 Width = Target->getPointerWidth(0);
1556 Align = Target->getPointerAlign(0);
1557 break;
Chris Lattnera7674d82007-07-13 22:13:22 +00001558 }
Chris Lattnerbfef6d72007-07-15 23:46:53 +00001559 break;
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001560 case Type::ObjCObjectPointer:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001561 Width = Target->getPointerWidth(0);
1562 Align = Target->getPointerAlign(0);
Chris Lattner6f62c2a2007-12-19 19:23:28 +00001563 break;
Steve Naroff485eeff2008-09-24 15:05:44 +00001564 case Type::BlockPointer: {
Peter Collingbourne207f4d82011-03-18 22:38:29 +00001565 unsigned AS = getTargetAddressSpace(
1566 cast<BlockPointerType>(T)->getPointeeType());
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001567 Width = Target->getPointerWidth(AS);
1568 Align = Target->getPointerAlign(AS);
Steve Naroff485eeff2008-09-24 15:05:44 +00001569 break;
1570 }
Sebastian Redl5d484e82009-11-23 17:18:46 +00001571 case Type::LValueReference:
1572 case Type::RValueReference: {
1573 // alignof and sizeof should never enter this code path here, so we go
1574 // the pointer route.
Peter Collingbourne207f4d82011-03-18 22:38:29 +00001575 unsigned AS = getTargetAddressSpace(
1576 cast<ReferenceType>(T)->getPointeeType());
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001577 Width = Target->getPointerWidth(AS);
1578 Align = Target->getPointerAlign(AS);
Sebastian Redl5d484e82009-11-23 17:18:46 +00001579 break;
1580 }
Chris Lattnerf72a4432008-03-08 08:34:58 +00001581 case Type::Pointer: {
Peter Collingbourne207f4d82011-03-18 22:38:29 +00001582 unsigned AS = getTargetAddressSpace(cast<PointerType>(T)->getPointeeType());
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001583 Width = Target->getPointerWidth(AS);
1584 Align = Target->getPointerAlign(AS);
Chris Lattnerf72a4432008-03-08 08:34:58 +00001585 break;
1586 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001587 case Type::MemberPointer: {
Charles Davis071cc7d2010-08-16 03:33:14 +00001588 const MemberPointerType *MPT = cast<MemberPointerType>(T);
Reid Kleckner84e9ab42013-03-28 20:02:56 +00001589 llvm::tie(Width, Align) = ABI->getMemberPointerWidthAndAlign(MPT);
Anders Carlsson1cca74e2009-05-17 02:06:04 +00001590 break;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001591 }
Chris Lattner5d2a6302007-07-18 18:26:58 +00001592 case Type::Complex: {
1593 // Complex types have the same alignment as their elements, but twice the
1594 // size.
Mike Stump1eb44332009-09-09 15:08:12 +00001595 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +00001596 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001597 Width = EltInfo.first*2;
Chris Lattner5d2a6302007-07-18 18:26:58 +00001598 Align = EltInfo.second;
1599 break;
1600 }
John McCallc12c5bb2010-05-15 11:32:37 +00001601 case Type::ObjCObject:
1602 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr());
Devang Patel44a3dde2008-06-04 21:54:36 +00001603 case Type::ObjCInterface: {
Daniel Dunbar1d751182008-11-08 05:48:37 +00001604 const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
Devang Patel44a3dde2008-06-04 21:54:36 +00001605 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
Ken Dyckdd76a9a2011-02-11 01:54:29 +00001606 Width = toBits(Layout.getSize());
Ken Dyckdac54c12011-02-15 02:32:40 +00001607 Align = toBits(Layout.getAlignment());
Devang Patel44a3dde2008-06-04 21:54:36 +00001608 break;
1609 }
Douglas Gregor72564e72009-02-26 23:50:07 +00001610 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00001611 case Type::Enum: {
Daniel Dunbar1d751182008-11-08 05:48:37 +00001612 const TagType *TT = cast<TagType>(T);
1613
1614 if (TT->getDecl()->isInvalidDecl()) {
Douglas Gregor22ce41d2011-04-20 17:29:44 +00001615 Width = 8;
1616 Align = 8;
Chris Lattner8389eab2008-08-09 21:35:13 +00001617 break;
1618 }
Mike Stump1eb44332009-09-09 15:08:12 +00001619
Daniel Dunbar1d751182008-11-08 05:48:37 +00001620 if (const EnumType *ET = dyn_cast<EnumType>(TT))
Chris Lattner71763312008-04-06 22:05:18 +00001621 return getTypeInfo(ET->getDecl()->getIntegerType());
1622
Daniel Dunbar1d751182008-11-08 05:48:37 +00001623 const RecordType *RT = cast<RecordType>(TT);
Chris Lattner71763312008-04-06 22:05:18 +00001624 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
Ken Dyckdd76a9a2011-02-11 01:54:29 +00001625 Width = toBits(Layout.getSize());
Ken Dyckdac54c12011-02-15 02:32:40 +00001626 Align = toBits(Layout.getAlignment());
Chris Lattnerdc0d73e2007-07-23 22:46:22 +00001627 break;
Chris Lattnera7674d82007-07-13 22:13:22 +00001628 }
Douglas Gregor7532dc62009-03-30 22:58:21 +00001629
Chris Lattner9fcfe922009-10-22 05:17:15 +00001630 case Type::SubstTemplateTypeParm:
John McCall49a832b2009-10-18 09:09:24 +00001631 return getTypeInfo(cast<SubstTemplateTypeParmType>(T)->
1632 getReplacementType().getTypePtr());
John McCall49a832b2009-10-18 09:09:24 +00001633
Richard Smith34b41d92011-02-20 03:19:35 +00001634 case Type::Auto: {
1635 const AutoType *A = cast<AutoType>(T);
Richard Smithdc7a4f52013-04-30 13:56:41 +00001636 assert(!A->getDeducedType().isNull() &&
1637 "cannot request the size of an undeduced or dependent auto type");
Matt Beaumont-Gaydc856af2011-02-22 20:00:16 +00001638 return getTypeInfo(A->getDeducedType().getTypePtr());
Richard Smith34b41d92011-02-20 03:19:35 +00001639 }
1640
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001641 case Type::Paren:
1642 return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr());
1643
Douglas Gregor18857642009-04-30 17:32:17 +00001644 case Type::Typedef: {
Richard Smith162e1c12011-04-15 14:24:37 +00001645 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl();
Douglas Gregordf1367a2010-08-27 00:11:28 +00001646 std::pair<uint64_t, unsigned> Info
1647 = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
Chris Lattnerc1de52d2011-02-19 22:55:41 +00001648 // If the typedef has an aligned attribute on it, it overrides any computed
1649 // alignment we have. This violates the GCC documentation (which says that
1650 // attribute(aligned) can only round up) but matches its implementation.
1651 if (unsigned AttrAlign = Typedef->getMaxAlignment())
1652 Align = AttrAlign;
1653 else
1654 Align = Info.second;
Douglas Gregordf1367a2010-08-27 00:11:28 +00001655 Width = Info.first;
Douglas Gregor7532dc62009-03-30 22:58:21 +00001656 break;
Chris Lattner71763312008-04-06 22:05:18 +00001657 }
Douglas Gregor18857642009-04-30 17:32:17 +00001658
1659 case Type::TypeOfExpr:
1660 return getTypeInfo(cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType()
1661 .getTypePtr());
1662
1663 case Type::TypeOf:
1664 return getTypeInfo(cast<TypeOfType>(T)->getUnderlyingType().getTypePtr());
1665
Anders Carlsson395b4752009-06-24 19:06:50 +00001666 case Type::Decltype:
1667 return getTypeInfo(cast<DecltypeType>(T)->getUnderlyingExpr()->getType()
1668 .getTypePtr());
1669
Sean Huntca63c202011-05-24 22:41:36 +00001670 case Type::UnaryTransform:
1671 return getTypeInfo(cast<UnaryTransformType>(T)->getUnderlyingType());
1672
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001673 case Type::Elaborated:
1674 return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr());
Mike Stump1eb44332009-09-09 15:08:12 +00001675
John McCall9d156a72011-01-06 01:58:22 +00001676 case Type::Attributed:
1677 return getTypeInfo(
1678 cast<AttributedType>(T)->getEquivalentType().getTypePtr());
1679
Richard Smith3e4c6c42011-05-05 21:57:07 +00001680 case Type::TemplateSpecialization: {
Mike Stump1eb44332009-09-09 15:08:12 +00001681 assert(getCanonicalType(T) != T &&
Douglas Gregor18857642009-04-30 17:32:17 +00001682 "Cannot request the size of a dependent type");
Richard Smith3e4c6c42011-05-05 21:57:07 +00001683 const TemplateSpecializationType *TST = cast<TemplateSpecializationType>(T);
1684 // A type alias template specialization may refer to a typedef with the
1685 // aligned attribute on it.
1686 if (TST->isTypeAlias())
1687 return getTypeInfo(TST->getAliasedType().getTypePtr());
1688 else
1689 return getTypeInfo(getCanonicalType(T));
1690 }
1691
Eli Friedmanb001de72011-10-06 23:00:33 +00001692 case Type::Atomic: {
John McCall9eda3ab2013-03-07 21:37:17 +00001693 // Start with the base type information.
Eli Friedman2be46072011-10-14 20:59:01 +00001694 std::pair<uint64_t, unsigned> Info
1695 = getTypeInfo(cast<AtomicType>(T)->getValueType());
1696 Width = Info.first;
1697 Align = Info.second;
John McCall9eda3ab2013-03-07 21:37:17 +00001698
1699 // If the size of the type doesn't exceed the platform's max
1700 // atomic promotion width, make the size and alignment more
1701 // favorable to atomic operations:
1702 if (Width != 0 && Width <= Target->getMaxAtomicPromoteWidth()) {
1703 // Round the size up to a power of 2.
1704 if (!llvm::isPowerOf2_64(Width))
1705 Width = llvm::NextPowerOf2(Width);
1706
1707 // Set the alignment equal to the size.
Eli Friedman2be46072011-10-14 20:59:01 +00001708 Align = static_cast<unsigned>(Width);
1709 }
Eli Friedmanb001de72011-10-06 23:00:33 +00001710 }
1711
Douglas Gregor18857642009-04-30 17:32:17 +00001712 }
Mike Stump1eb44332009-09-09 15:08:12 +00001713
Eli Friedman2be46072011-10-14 20:59:01 +00001714 assert(llvm::isPowerOf2_32(Align) && "Alignment must be power of 2");
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001715 return std::make_pair(Width, Align);
Chris Lattnera7674d82007-07-13 22:13:22 +00001716}
1717
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001718/// toCharUnitsFromBits - Convert a size in bits to a size in characters.
1719CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const {
1720 return CharUnits::fromQuantity(BitSize / getCharWidth());
1721}
1722
Ken Dyckdd76a9a2011-02-11 01:54:29 +00001723/// toBits - Convert a size in characters to a size in characters.
1724int64_t ASTContext::toBits(CharUnits CharSize) const {
1725 return CharSize.getQuantity() * getCharWidth();
1726}
1727
Ken Dyckbdc601b2009-12-22 14:23:30 +00001728/// getTypeSizeInChars - Return the size of the specified type, in characters.
1729/// This method does not work on incomplete types.
Jay Foad4ba2a172011-01-12 09:06:06 +00001730CharUnits ASTContext::getTypeSizeInChars(QualType T) const {
Richard Trieu910f17e2013-05-14 21:59:17 +00001731 return getTypeInfoInChars(T).first;
Ken Dyckbdc601b2009-12-22 14:23:30 +00001732}
Jay Foad4ba2a172011-01-12 09:06:06 +00001733CharUnits ASTContext::getTypeSizeInChars(const Type *T) const {
Richard Trieu910f17e2013-05-14 21:59:17 +00001734 return getTypeInfoInChars(T).first;
Ken Dyckbdc601b2009-12-22 14:23:30 +00001735}
1736
Ken Dyck16e20cc2010-01-26 17:25:18 +00001737/// getTypeAlignInChars - Return the ABI-specified alignment of a type, in
Ken Dyck86fa4312010-01-26 17:22:55 +00001738/// characters. This method does not work on incomplete types.
Jay Foad4ba2a172011-01-12 09:06:06 +00001739CharUnits ASTContext::getTypeAlignInChars(QualType T) const {
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001740 return toCharUnitsFromBits(getTypeAlign(T));
Ken Dyck86fa4312010-01-26 17:22:55 +00001741}
Jay Foad4ba2a172011-01-12 09:06:06 +00001742CharUnits ASTContext::getTypeAlignInChars(const Type *T) const {
Ken Dyckeb6f5dc2011-01-15 18:38:59 +00001743 return toCharUnitsFromBits(getTypeAlign(T));
Ken Dyck86fa4312010-01-26 17:22:55 +00001744}
1745
Chris Lattner34ebde42009-01-27 18:08:34 +00001746/// getPreferredTypeAlign - Return the "preferred" alignment of the specified
1747/// type for the current target in bits. This can be different than the ABI
1748/// alignment in cases where it is beneficial for performance to overalign
1749/// a data type.
Jay Foad4ba2a172011-01-12 09:06:06 +00001750unsigned ASTContext::getPreferredTypeAlign(const Type *T) const {
Chris Lattner34ebde42009-01-27 18:08:34 +00001751 unsigned ABIAlign = getTypeAlign(T);
Eli Friedman1eed6022009-05-25 21:27:19 +00001752
1753 // Double and long long should be naturally aligned if possible.
John McCall183700f2009-09-21 23:43:11 +00001754 if (const ComplexType* CT = T->getAs<ComplexType>())
Eli Friedman1eed6022009-05-25 21:27:19 +00001755 T = CT->getElementType().getTypePtr();
1756 if (T->isSpecificBuiltinType(BuiltinType::Double) ||
Chad Rosiercde7a1d2012-03-21 20:20:47 +00001757 T->isSpecificBuiltinType(BuiltinType::LongLong) ||
1758 T->isSpecificBuiltinType(BuiltinType::ULongLong))
Eli Friedman1eed6022009-05-25 21:27:19 +00001759 return std::max(ABIAlign, (unsigned)getTypeSize(T));
1760
Chris Lattner34ebde42009-01-27 18:08:34 +00001761 return ABIAlign;
1762}
1763
Ulrich Weigand6b203512013-05-06 16:23:57 +00001764/// getAlignOfGlobalVar - Return the alignment in bits that should be given
1765/// to a global variable of the specified type.
1766unsigned ASTContext::getAlignOfGlobalVar(QualType T) const {
1767 return std::max(getTypeAlign(T), getTargetInfo().getMinGlobalAlign());
1768}
1769
1770/// getAlignOfGlobalVarInChars - Return the alignment in characters that
1771/// should be given to a global variable of the specified type.
1772CharUnits ASTContext::getAlignOfGlobalVarInChars(QualType T) const {
1773 return toCharUnitsFromBits(getAlignOfGlobalVar(T));
1774}
1775
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001776/// DeepCollectObjCIvars -
1777/// This routine first collects all declared, but not synthesized, ivars in
1778/// super class and then collects all ivars, including those synthesized for
1779/// current class. This routine is used for implementation of current class
1780/// when all ivars, declared and synthesized are known.
Fariborz Jahanian98200742009-05-12 18:14:29 +00001781///
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001782void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI,
1783 bool leafClass,
Jordy Rosedb8264e2011-07-22 02:08:32 +00001784 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001785 if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
1786 DeepCollectObjCIvars(SuperClass, false, Ivars);
1787 if (!leafClass) {
1788 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
1789 E = OI->ivar_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00001790 Ivars.push_back(*I);
Chad Rosier30601782011-08-17 23:08:45 +00001791 } else {
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00001792 ObjCInterfaceDecl *IDecl = const_cast<ObjCInterfaceDecl *>(OI);
Jordy Rosedb8264e2011-07-22 02:08:32 +00001793 for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv;
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00001794 Iv= Iv->getNextIvar())
1795 Ivars.push_back(Iv);
1796 }
Fariborz Jahanian98200742009-05-12 18:14:29 +00001797}
1798
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001799/// CollectInheritedProtocols - Collect all protocols in current class and
1800/// those inherited by it.
1801void ASTContext::CollectInheritedProtocols(const Decl *CDecl,
Fariborz Jahanian432a8892010-02-12 19:27:33 +00001802 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001803 if (const ObjCInterfaceDecl *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001804 // We can use protocol_iterator here instead of
1805 // all_referenced_protocol_iterator since we are walking all categories.
1806 for (ObjCInterfaceDecl::all_protocol_iterator P = OI->all_referenced_protocol_begin(),
1807 PE = OI->all_referenced_protocol_end(); P != PE; ++P) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001808 ObjCProtocolDecl *Proto = (*P);
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001809 Protocols.insert(Proto->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001810 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
Fariborz Jahanianb2f81212010-02-25 18:24:33 +00001811 PE = Proto->protocol_end(); P != PE; ++P) {
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001812 Protocols.insert((*P)->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001813 CollectInheritedProtocols(*P, Protocols);
1814 }
Fariborz Jahanianb2f81212010-02-25 18:24:33 +00001815 }
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001816
1817 // Categories of this Interface.
Douglas Gregord3297242013-01-16 23:00:23 +00001818 for (ObjCInterfaceDecl::visible_categories_iterator
1819 Cat = OI->visible_categories_begin(),
1820 CatEnd = OI->visible_categories_end();
1821 Cat != CatEnd; ++Cat) {
1822 CollectInheritedProtocols(*Cat, Protocols);
1823 }
1824
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001825 if (ObjCInterfaceDecl *SD = OI->getSuperClass())
1826 while (SD) {
1827 CollectInheritedProtocols(SD, Protocols);
1828 SD = SD->getSuperClass();
1829 }
Benjamin Kramerb170ca52010-04-27 17:47:25 +00001830 } else if (const ObjCCategoryDecl *OC = dyn_cast<ObjCCategoryDecl>(CDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001831 for (ObjCCategoryDecl::protocol_iterator P = OC->protocol_begin(),
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001832 PE = OC->protocol_end(); P != PE; ++P) {
1833 ObjCProtocolDecl *Proto = (*P);
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001834 Protocols.insert(Proto->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001835 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
1836 PE = Proto->protocol_end(); P != PE; ++P)
1837 CollectInheritedProtocols(*P, Protocols);
1838 }
Benjamin Kramerb170ca52010-04-27 17:47:25 +00001839 } else if (const ObjCProtocolDecl *OP = dyn_cast<ObjCProtocolDecl>(CDecl)) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001840 for (ObjCProtocolDecl::protocol_iterator P = OP->protocol_begin(),
1841 PE = OP->protocol_end(); P != PE; ++P) {
1842 ObjCProtocolDecl *Proto = (*P);
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00001843 Protocols.insert(Proto->getCanonicalDecl());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001844 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
1845 PE = Proto->protocol_end(); P != PE; ++P)
1846 CollectInheritedProtocols(*P, Protocols);
1847 }
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00001848 }
1849}
1850
Jay Foad4ba2a172011-01-12 09:06:06 +00001851unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const {
Fariborz Jahanian3bfacdf2010-03-22 18:25:57 +00001852 unsigned count = 0;
1853 // Count ivars declared in class extension.
Douglas Gregord3297242013-01-16 23:00:23 +00001854 for (ObjCInterfaceDecl::known_extensions_iterator
1855 Ext = OI->known_extensions_begin(),
1856 ExtEnd = OI->known_extensions_end();
1857 Ext != ExtEnd; ++Ext) {
1858 count += Ext->ivar_size();
1859 }
1860
Fariborz Jahanian3bfacdf2010-03-22 18:25:57 +00001861 // Count ivar defined in this class's implementation. This
1862 // includes synthesized ivars.
1863 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation())
Benjamin Kramerb170ca52010-04-27 17:47:25 +00001864 count += ImplDecl->ivar_size();
1865
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00001866 return count;
1867}
1868
Argyrios Kyrtzidis8deabc12012-02-03 05:58:16 +00001869bool ASTContext::isSentinelNullExpr(const Expr *E) {
1870 if (!E)
1871 return false;
1872
1873 // nullptr_t is always treated as null.
1874 if (E->getType()->isNullPtrType()) return true;
1875
1876 if (E->getType()->isAnyPointerType() &&
1877 E->IgnoreParenCasts()->isNullPointerConstant(*this,
1878 Expr::NPC_ValueDependentIsNull))
1879 return true;
1880
1881 // Unfortunately, __null has type 'int'.
1882 if (isa<GNUNullExpr>(E)) return true;
1883
1884 return false;
1885}
1886
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001887/// \brief Get the implementation of ObjCInterfaceDecl,or NULL if none exists.
1888ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) {
1889 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
1890 I = ObjCImpls.find(D);
1891 if (I != ObjCImpls.end())
1892 return cast<ObjCImplementationDecl>(I->second);
1893 return 0;
1894}
1895/// \brief Get the implementation of ObjCCategoryDecl, or NULL if none exists.
1896ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) {
1897 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
1898 I = ObjCImpls.find(D);
1899 if (I != ObjCImpls.end())
1900 return cast<ObjCCategoryImplDecl>(I->second);
1901 return 0;
1902}
1903
1904/// \brief Set the implementation of ObjCInterfaceDecl.
1905void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD,
1906 ObjCImplementationDecl *ImplD) {
1907 assert(IFaceD && ImplD && "Passed null params");
1908 ObjCImpls[IFaceD] = ImplD;
1909}
1910/// \brief Set the implementation of ObjCCategoryDecl.
1911void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD,
1912 ObjCCategoryImplDecl *ImplD) {
1913 assert(CatD && ImplD && "Passed null params");
1914 ObjCImpls[CatD] = ImplD;
1915}
1916
Dmitri Gribenkob35cc2d2013-02-03 13:23:21 +00001917const ObjCInterfaceDecl *ASTContext::getObjContainingInterface(
1918 const NamedDecl *ND) const {
1919 if (const ObjCInterfaceDecl *ID =
1920 dyn_cast<ObjCInterfaceDecl>(ND->getDeclContext()))
Argyrios Kyrtzidis87ec9c22011-11-01 17:14:12 +00001921 return ID;
Dmitri Gribenkob35cc2d2013-02-03 13:23:21 +00001922 if (const ObjCCategoryDecl *CD =
1923 dyn_cast<ObjCCategoryDecl>(ND->getDeclContext()))
Argyrios Kyrtzidis87ec9c22011-11-01 17:14:12 +00001924 return CD->getClassInterface();
Dmitri Gribenkob35cc2d2013-02-03 13:23:21 +00001925 if (const ObjCImplDecl *IMD =
1926 dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
Argyrios Kyrtzidis87ec9c22011-11-01 17:14:12 +00001927 return IMD->getClassInterface();
1928
1929 return 0;
1930}
1931
Fariborz Jahanian1ceee5c2010-12-01 22:29:46 +00001932/// \brief Get the copy initialization expression of VarDecl,or NULL if
1933/// none exists.
Fariborz Jahanian830937b2010-12-02 17:02:11 +00001934Expr *ASTContext::getBlockVarCopyInits(const VarDecl*VD) {
Fariborz Jahaniand016ec22010-12-06 17:28:17 +00001935 assert(VD && "Passed null params");
1936 assert(VD->hasAttr<BlocksAttr>() &&
1937 "getBlockVarCopyInits - not __block var");
Fariborz Jahanian830937b2010-12-02 17:02:11 +00001938 llvm::DenseMap<const VarDecl*, Expr*>::iterator
Fariborz Jahaniand016ec22010-12-06 17:28:17 +00001939 I = BlockVarCopyInits.find(VD);
Fariborz Jahanian1ceee5c2010-12-01 22:29:46 +00001940 return (I != BlockVarCopyInits.end()) ? cast<Expr>(I->second) : 0;
1941}
1942
1943/// \brief Set the copy inialization expression of a block var decl.
1944void ASTContext::setBlockVarCopyInits(VarDecl*VD, Expr* Init) {
1945 assert(VD && Init && "Passed null params");
Fariborz Jahaniand016ec22010-12-06 17:28:17 +00001946 assert(VD->hasAttr<BlocksAttr>() &&
1947 "setBlockVarCopyInits - not __block var");
Fariborz Jahanian1ceee5c2010-12-01 22:29:46 +00001948 BlockVarCopyInits[VD] = Init;
1949}
1950
John McCalla93c9342009-12-07 02:54:59 +00001951TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T,
Jay Foad4ba2a172011-01-12 09:06:06 +00001952 unsigned DataSize) const {
John McCall109de5e2009-10-21 00:23:54 +00001953 if (!DataSize)
1954 DataSize = TypeLoc::getFullDataSizeForType(T);
1955 else
1956 assert(DataSize == TypeLoc::getFullDataSizeForType(T) &&
John McCalla93c9342009-12-07 02:54:59 +00001957 "incorrect data size provided to CreateTypeSourceInfo!");
John McCall109de5e2009-10-21 00:23:54 +00001958
John McCalla93c9342009-12-07 02:54:59 +00001959 TypeSourceInfo *TInfo =
1960 (TypeSourceInfo*)BumpAlloc.Allocate(sizeof(TypeSourceInfo) + DataSize, 8);
1961 new (TInfo) TypeSourceInfo(T);
1962 return TInfo;
Argyrios Kyrtzidisb17166c2009-08-19 01:27:32 +00001963}
1964
John McCalla93c9342009-12-07 02:54:59 +00001965TypeSourceInfo *ASTContext::getTrivialTypeSourceInfo(QualType T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001966 SourceLocation L) const {
John McCalla93c9342009-12-07 02:54:59 +00001967 TypeSourceInfo *DI = CreateTypeSourceInfo(T);
Douglas Gregorc21c7e92011-01-25 19:13:18 +00001968 DI->getTypeLoc().initialize(const_cast<ASTContext &>(*this), L);
John McCalla4eb74d2009-10-23 21:14:09 +00001969 return DI;
1970}
1971
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +00001972const ASTRecordLayout &
Jay Foad4ba2a172011-01-12 09:06:06 +00001973ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) const {
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +00001974 return getObjCLayout(D, 0);
1975}
1976
1977const ASTRecordLayout &
Jay Foad4ba2a172011-01-12 09:06:06 +00001978ASTContext::getASTObjCImplementationLayout(
1979 const ObjCImplementationDecl *D) const {
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +00001980 return getObjCLayout(D->getClassInterface(), D);
1981}
1982
Chris Lattnera7674d82007-07-13 22:13:22 +00001983//===----------------------------------------------------------------------===//
1984// Type creation/memoization methods
1985//===----------------------------------------------------------------------===//
1986
Jay Foad4ba2a172011-01-12 09:06:06 +00001987QualType
John McCall3b657512011-01-19 10:06:00 +00001988ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const {
1989 unsigned fastQuals = quals.getFastQualifiers();
1990 quals.removeFastQualifiers();
John McCall0953e762009-09-24 19:53:00 +00001991
1992 // Check if we've already instantiated this type.
1993 llvm::FoldingSetNodeID ID;
John McCall3b657512011-01-19 10:06:00 +00001994 ExtQuals::Profile(ID, baseType, quals);
1995 void *insertPos = 0;
1996 if (ExtQuals *eq = ExtQualNodes.FindNodeOrInsertPos(ID, insertPos)) {
1997 assert(eq->getQualifiers() == quals);
1998 return QualType(eq, fastQuals);
John McCall0953e762009-09-24 19:53:00 +00001999 }
2000
John McCall3b657512011-01-19 10:06:00 +00002001 // If the base type is not canonical, make the appropriate canonical type.
2002 QualType canon;
2003 if (!baseType->isCanonicalUnqualified()) {
2004 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split();
John McCall200fa532012-02-08 00:46:36 +00002005 canonSplit.Quals.addConsistentQualifiers(quals);
2006 canon = getExtQualType(canonSplit.Ty, canonSplit.Quals);
John McCall3b657512011-01-19 10:06:00 +00002007
2008 // Re-find the insert position.
2009 (void) ExtQualNodes.FindNodeOrInsertPos(ID, insertPos);
2010 }
2011
2012 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals);
2013 ExtQualNodes.InsertNode(eq, insertPos);
2014 return QualType(eq, fastQuals);
John McCall0953e762009-09-24 19:53:00 +00002015}
2016
Jay Foad4ba2a172011-01-12 09:06:06 +00002017QualType
2018ASTContext::getAddrSpaceQualType(QualType T, unsigned AddressSpace) const {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002019 QualType CanT = getCanonicalType(T);
2020 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattnerf46699c2008-02-20 20:55:12 +00002021 return T;
Chris Lattnerb7d25532009-02-18 22:53:11 +00002022
John McCall0953e762009-09-24 19:53:00 +00002023 // If we are composing extended qualifiers together, merge together
2024 // into one ExtQuals node.
2025 QualifierCollector Quals;
2026 const Type *TypeNode = Quals.strip(T);
Mike Stump1eb44332009-09-09 15:08:12 +00002027
John McCall0953e762009-09-24 19:53:00 +00002028 // If this type already has an address space specified, it cannot get
2029 // another one.
2030 assert(!Quals.hasAddressSpace() &&
2031 "Type cannot be in multiple addr spaces!");
2032 Quals.addAddressSpace(AddressSpace);
Mike Stump1eb44332009-09-09 15:08:12 +00002033
John McCall0953e762009-09-24 19:53:00 +00002034 return getExtQualType(TypeNode, Quals);
Christopher Lambebb97e92008-02-04 02:31:56 +00002035}
2036
Chris Lattnerb7d25532009-02-18 22:53:11 +00002037QualType ASTContext::getObjCGCQualType(QualType T,
Jay Foad4ba2a172011-01-12 09:06:06 +00002038 Qualifiers::GC GCAttr) const {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00002039 QualType CanT = getCanonicalType(T);
Chris Lattnerb7d25532009-02-18 22:53:11 +00002040 if (CanT.getObjCGCAttr() == GCAttr)
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00002041 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00002042
John McCall7f040a92010-12-24 02:08:15 +00002043 if (const PointerType *ptr = T->getAs<PointerType>()) {
2044 QualType Pointee = ptr->getPointeeType();
Steve Naroff58f9f2c2009-07-14 18:25:06 +00002045 if (Pointee->isAnyPointerType()) {
Fariborz Jahanian4027cd12009-06-03 17:15:17 +00002046 QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
2047 return getPointerType(ResultType);
2048 }
2049 }
Mike Stump1eb44332009-09-09 15:08:12 +00002050
John McCall0953e762009-09-24 19:53:00 +00002051 // If we are composing extended qualifiers together, merge together
2052 // into one ExtQuals node.
2053 QualifierCollector Quals;
2054 const Type *TypeNode = Quals.strip(T);
Mike Stump1eb44332009-09-09 15:08:12 +00002055
John McCall0953e762009-09-24 19:53:00 +00002056 // If this type already has an ObjCGC specified, it cannot get
2057 // another one.
2058 assert(!Quals.hasObjCGCAttr() &&
2059 "Type cannot have multiple ObjCGCs!");
2060 Quals.addObjCGCAttr(GCAttr);
Mike Stump1eb44332009-09-09 15:08:12 +00002061
John McCall0953e762009-09-24 19:53:00 +00002062 return getExtQualType(TypeNode, Quals);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00002063}
Chris Lattnera7674d82007-07-13 22:13:22 +00002064
John McCalle6a365d2010-12-19 02:44:49 +00002065const FunctionType *ASTContext::adjustFunctionType(const FunctionType *T,
2066 FunctionType::ExtInfo Info) {
2067 if (T->getExtInfo() == Info)
2068 return T;
2069
2070 QualType Result;
2071 if (const FunctionNoProtoType *FNPT = dyn_cast<FunctionNoProtoType>(T)) {
2072 Result = getFunctionNoProtoType(FNPT->getResultType(), Info);
2073 } else {
2074 const FunctionProtoType *FPT = cast<FunctionProtoType>(T);
2075 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2076 EPI.ExtInfo = Info;
Jordan Rosebea522f2013-03-08 21:51:21 +00002077 Result = getFunctionType(FPT->getResultType(),
2078 ArrayRef<QualType>(FPT->arg_type_begin(),
2079 FPT->getNumArgs()),
2080 EPI);
John McCalle6a365d2010-12-19 02:44:49 +00002081 }
2082
2083 return cast<FunctionType>(Result.getTypePtr());
2084}
2085
Richard Smith60e141e2013-05-04 07:00:32 +00002086void ASTContext::adjustDeducedFunctionResultType(FunctionDecl *FD,
2087 QualType ResultType) {
Richard Smith9dadfab2013-05-11 05:45:24 +00002088 FD = FD->getMostRecentDecl();
2089 while (true) {
Richard Smith60e141e2013-05-04 07:00:32 +00002090 const FunctionProtoType *FPT = FD->getType()->castAs<FunctionProtoType>();
2091 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2092 FD->setType(getFunctionType(ResultType, FPT->getArgTypes(), EPI));
Richard Smith9dadfab2013-05-11 05:45:24 +00002093 if (FunctionDecl *Next = FD->getPreviousDecl())
2094 FD = Next;
2095 else
2096 break;
Richard Smith60e141e2013-05-04 07:00:32 +00002097 }
Richard Smith9dadfab2013-05-11 05:45:24 +00002098 if (ASTMutationListener *L = getASTMutationListener())
2099 L->DeducedReturnType(FD, ResultType);
Richard Smith60e141e2013-05-04 07:00:32 +00002100}
2101
Reid Spencer5f016e22007-07-11 17:01:13 +00002102/// getComplexType - Return the uniqued reference to the type for a complex
2103/// number with the specified element type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002104QualType ASTContext::getComplexType(QualType T) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00002105 // Unique pointers, to guarantee there is only one pointer of a particular
2106 // structure.
2107 llvm::FoldingSetNodeID ID;
2108 ComplexType::Profile(ID, T);
Mike Stump1eb44332009-09-09 15:08:12 +00002109
Reid Spencer5f016e22007-07-11 17:01:13 +00002110 void *InsertPos = 0;
2111 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
2112 return QualType(CT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002113
Reid Spencer5f016e22007-07-11 17:01:13 +00002114 // If the pointee type isn't canonical, this won't be a canonical type either,
2115 // so fill in the canonical type field.
2116 QualType Canonical;
John McCall467b27b2009-10-22 20:10:53 +00002117 if (!T.isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002118 Canonical = getComplexType(getCanonicalType(T));
Mike Stump1eb44332009-09-09 15:08:12 +00002119
Reid Spencer5f016e22007-07-11 17:01:13 +00002120 // Get the new insert position for the node we care about.
2121 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002122 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002123 }
John McCall6b304a02009-09-24 23:30:46 +00002124 ComplexType *New = new (*this, TypeAlignment) ComplexType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00002125 Types.push_back(New);
2126 ComplexTypes.InsertNode(New, InsertPos);
2127 return QualType(New, 0);
2128}
2129
Reid Spencer5f016e22007-07-11 17:01:13 +00002130/// getPointerType - Return the uniqued reference to the type for a pointer to
2131/// the specified type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002132QualType ASTContext::getPointerType(QualType T) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00002133 // Unique pointers, to guarantee there is only one pointer of a particular
2134 // structure.
2135 llvm::FoldingSetNodeID ID;
2136 PointerType::Profile(ID, T);
Mike Stump1eb44332009-09-09 15:08:12 +00002137
Reid Spencer5f016e22007-07-11 17:01:13 +00002138 void *InsertPos = 0;
2139 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2140 return QualType(PT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002141
Reid Spencer5f016e22007-07-11 17:01:13 +00002142 // If the pointee type isn't canonical, this won't be a canonical type either,
2143 // so fill in the canonical type field.
2144 QualType Canonical;
Bob Wilsonc90cc932013-03-15 17:12:43 +00002145 if (!T.isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002146 Canonical = getPointerType(getCanonicalType(T));
Mike Stump1eb44332009-09-09 15:08:12 +00002147
Bob Wilsonc90cc932013-03-15 17:12:43 +00002148 // Get the new insert position for the node we care about.
2149 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
2150 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
2151 }
John McCall6b304a02009-09-24 23:30:46 +00002152 PointerType *New = new (*this, TypeAlignment) PointerType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00002153 Types.push_back(New);
2154 PointerTypes.InsertNode(New, InsertPos);
2155 return QualType(New, 0);
2156}
2157
Mike Stump1eb44332009-09-09 15:08:12 +00002158/// getBlockPointerType - Return the uniqued reference to the type for
Steve Naroff5618bd42008-08-27 16:04:49 +00002159/// a pointer to the specified block.
Jay Foad4ba2a172011-01-12 09:06:06 +00002160QualType ASTContext::getBlockPointerType(QualType T) const {
Steve Naroff296e8d52008-08-28 19:20:44 +00002161 assert(T->isFunctionType() && "block of function types only");
2162 // Unique pointers, to guarantee there is only one block of a particular
Steve Naroff5618bd42008-08-27 16:04:49 +00002163 // structure.
2164 llvm::FoldingSetNodeID ID;
2165 BlockPointerType::Profile(ID, T);
Mike Stump1eb44332009-09-09 15:08:12 +00002166
Steve Naroff5618bd42008-08-27 16:04:49 +00002167 void *InsertPos = 0;
2168 if (BlockPointerType *PT =
2169 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2170 return QualType(PT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002171
2172 // If the block pointee type isn't canonical, this won't be a canonical
Steve Naroff5618bd42008-08-27 16:04:49 +00002173 // type either so fill in the canonical type field.
2174 QualType Canonical;
John McCall467b27b2009-10-22 20:10:53 +00002175 if (!T.isCanonical()) {
Steve Naroff5618bd42008-08-27 16:04:49 +00002176 Canonical = getBlockPointerType(getCanonicalType(T));
Mike Stump1eb44332009-09-09 15:08:12 +00002177
Steve Naroff5618bd42008-08-27 16:04:49 +00002178 // Get the new insert position for the node we care about.
2179 BlockPointerType *NewIP =
2180 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002181 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Steve Naroff5618bd42008-08-27 16:04:49 +00002182 }
John McCall6b304a02009-09-24 23:30:46 +00002183 BlockPointerType *New
2184 = new (*this, TypeAlignment) BlockPointerType(T, Canonical);
Steve Naroff5618bd42008-08-27 16:04:49 +00002185 Types.push_back(New);
2186 BlockPointerTypes.InsertNode(New, InsertPos);
2187 return QualType(New, 0);
2188}
2189
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002190/// getLValueReferenceType - Return the uniqued reference to the type for an
2191/// lvalue reference to the specified type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002192QualType
2193ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const {
Douglas Gregor9625e442011-05-21 22:16:50 +00002194 assert(getCanonicalType(T) != OverloadTy &&
2195 "Unresolved overloaded function type");
2196
Reid Spencer5f016e22007-07-11 17:01:13 +00002197 // Unique pointers, to guarantee there is only one pointer of a particular
2198 // structure.
2199 llvm::FoldingSetNodeID ID;
John McCall54e14c42009-10-22 22:37:11 +00002200 ReferenceType::Profile(ID, T, SpelledAsLValue);
Reid Spencer5f016e22007-07-11 17:01:13 +00002201
2202 void *InsertPos = 0;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002203 if (LValueReferenceType *RT =
2204 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002205 return QualType(RT, 0);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002206
John McCall54e14c42009-10-22 22:37:11 +00002207 const ReferenceType *InnerRef = T->getAs<ReferenceType>();
2208
Reid Spencer5f016e22007-07-11 17:01:13 +00002209 // If the referencee type isn't canonical, this won't be a canonical type
2210 // either, so fill in the canonical type field.
2211 QualType Canonical;
John McCall54e14c42009-10-22 22:37:11 +00002212 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) {
2213 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
2214 Canonical = getLValueReferenceType(getCanonicalType(PointeeType));
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002215
Reid Spencer5f016e22007-07-11 17:01:13 +00002216 // Get the new insert position for the node we care about.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002217 LValueReferenceType *NewIP =
2218 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002219 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002220 }
2221
John McCall6b304a02009-09-24 23:30:46 +00002222 LValueReferenceType *New
John McCall54e14c42009-10-22 22:37:11 +00002223 = new (*this, TypeAlignment) LValueReferenceType(T, Canonical,
2224 SpelledAsLValue);
Reid Spencer5f016e22007-07-11 17:01:13 +00002225 Types.push_back(New);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002226 LValueReferenceTypes.InsertNode(New, InsertPos);
John McCall54e14c42009-10-22 22:37:11 +00002227
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002228 return QualType(New, 0);
2229}
2230
2231/// getRValueReferenceType - Return the uniqued reference to the type for an
2232/// rvalue reference to the specified type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002233QualType ASTContext::getRValueReferenceType(QualType T) const {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002234 // Unique pointers, to guarantee there is only one pointer of a particular
2235 // structure.
2236 llvm::FoldingSetNodeID ID;
John McCall54e14c42009-10-22 22:37:11 +00002237 ReferenceType::Profile(ID, T, false);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002238
2239 void *InsertPos = 0;
2240 if (RValueReferenceType *RT =
2241 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
2242 return QualType(RT, 0);
2243
John McCall54e14c42009-10-22 22:37:11 +00002244 const ReferenceType *InnerRef = T->getAs<ReferenceType>();
2245
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002246 // If the referencee type isn't canonical, this won't be a canonical type
2247 // either, so fill in the canonical type field.
2248 QualType Canonical;
John McCall54e14c42009-10-22 22:37:11 +00002249 if (InnerRef || !T.isCanonical()) {
2250 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
2251 Canonical = getRValueReferenceType(getCanonicalType(PointeeType));
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002252
2253 // Get the new insert position for the node we care about.
2254 RValueReferenceType *NewIP =
2255 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002256 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002257 }
2258
John McCall6b304a02009-09-24 23:30:46 +00002259 RValueReferenceType *New
2260 = new (*this, TypeAlignment) RValueReferenceType(T, Canonical);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002261 Types.push_back(New);
2262 RValueReferenceTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002263 return QualType(New, 0);
2264}
2265
Sebastian Redlf30208a2009-01-24 21:16:55 +00002266/// getMemberPointerType - Return the uniqued reference to the type for a
2267/// member pointer to the specified type, in the specified class.
Jay Foad4ba2a172011-01-12 09:06:06 +00002268QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls) const {
Sebastian Redlf30208a2009-01-24 21:16:55 +00002269 // Unique pointers, to guarantee there is only one pointer of a particular
2270 // structure.
2271 llvm::FoldingSetNodeID ID;
2272 MemberPointerType::Profile(ID, T, Cls);
2273
2274 void *InsertPos = 0;
2275 if (MemberPointerType *PT =
2276 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2277 return QualType(PT, 0);
2278
2279 // If the pointee or class type isn't canonical, this won't be a canonical
2280 // type either, so fill in the canonical type field.
2281 QualType Canonical;
Douglas Gregor87c12c42009-11-04 16:49:01 +00002282 if (!T.isCanonical() || !Cls->isCanonicalUnqualified()) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00002283 Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
2284
2285 // Get the new insert position for the node we care about.
2286 MemberPointerType *NewIP =
2287 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002288 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Sebastian Redlf30208a2009-01-24 21:16:55 +00002289 }
John McCall6b304a02009-09-24 23:30:46 +00002290 MemberPointerType *New
2291 = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical);
Sebastian Redlf30208a2009-01-24 21:16:55 +00002292 Types.push_back(New);
2293 MemberPointerTypes.InsertNode(New, InsertPos);
2294 return QualType(New, 0);
2295}
2296
Mike Stump1eb44332009-09-09 15:08:12 +00002297/// getConstantArrayType - Return the unique reference to the type for an
Steve Narofffb22d962007-08-30 01:06:46 +00002298/// array of the specified element type.
Mike Stump1eb44332009-09-09 15:08:12 +00002299QualType ASTContext::getConstantArrayType(QualType EltTy,
Chris Lattner38aeec72009-05-13 04:12:56 +00002300 const llvm::APInt &ArySizeIn,
Steve Naroffc9406122007-08-30 18:10:14 +00002301 ArrayType::ArraySizeModifier ASM,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002302 unsigned IndexTypeQuals) const {
Sebastian Redl923d56d2009-11-05 15:52:31 +00002303 assert((EltTy->isDependentType() ||
2304 EltTy->isIncompleteType() || EltTy->isConstantSizeType()) &&
Eli Friedman587cbdf2009-05-29 20:17:55 +00002305 "Constant array of VLAs is illegal!");
2306
Chris Lattner38aeec72009-05-13 04:12:56 +00002307 // Convert the array size into a canonical width matching the pointer size for
2308 // the target.
2309 llvm::APInt ArySize(ArySizeIn);
Jay Foad9f71a8f2010-12-07 08:25:34 +00002310 ArySize =
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002311 ArySize.zextOrTrunc(Target->getPointerWidth(getTargetAddressSpace(EltTy)));
Mike Stump1eb44332009-09-09 15:08:12 +00002312
Reid Spencer5f016e22007-07-11 17:01:13 +00002313 llvm::FoldingSetNodeID ID;
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002314 ConstantArrayType::Profile(ID, EltTy, ArySize, ASM, IndexTypeQuals);
Mike Stump1eb44332009-09-09 15:08:12 +00002315
Reid Spencer5f016e22007-07-11 17:01:13 +00002316 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002317 if (ConstantArrayType *ATP =
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002318 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002319 return QualType(ATP, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002320
John McCall3b657512011-01-19 10:06:00 +00002321 // If the element type isn't canonical or has qualifiers, this won't
2322 // be a canonical type either, so fill in the canonical type field.
2323 QualType Canon;
2324 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
2325 SplitQualType canonSplit = getCanonicalType(EltTy).split();
John McCall200fa532012-02-08 00:46:36 +00002326 Canon = getConstantArrayType(QualType(canonSplit.Ty, 0), ArySize,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002327 ASM, IndexTypeQuals);
John McCall200fa532012-02-08 00:46:36 +00002328 Canon = getQualifiedType(Canon, canonSplit.Quals);
John McCall3b657512011-01-19 10:06:00 +00002329
Reid Spencer5f016e22007-07-11 17:01:13 +00002330 // Get the new insert position for the node we care about.
Mike Stump1eb44332009-09-09 15:08:12 +00002331 ConstantArrayType *NewIP =
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002332 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002333 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002334 }
Mike Stump1eb44332009-09-09 15:08:12 +00002335
John McCall6b304a02009-09-24 23:30:46 +00002336 ConstantArrayType *New = new(*this,TypeAlignment)
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002337 ConstantArrayType(EltTy, Canon, ArySize, ASM, IndexTypeQuals);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002338 ConstantArrayTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002339 Types.push_back(New);
2340 return QualType(New, 0);
2341}
2342
John McCallce889032011-01-18 08:40:38 +00002343/// getVariableArrayDecayedType - Turns the given type, which may be
2344/// variably-modified, into the corresponding type with all the known
2345/// sizes replaced with [*].
2346QualType ASTContext::getVariableArrayDecayedType(QualType type) const {
2347 // Vastly most common case.
2348 if (!type->isVariablyModifiedType()) return type;
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00002349
John McCallce889032011-01-18 08:40:38 +00002350 QualType result;
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00002351
John McCallce889032011-01-18 08:40:38 +00002352 SplitQualType split = type.getSplitDesugaredType();
John McCall200fa532012-02-08 00:46:36 +00002353 const Type *ty = split.Ty;
John McCallce889032011-01-18 08:40:38 +00002354 switch (ty->getTypeClass()) {
2355#define TYPE(Class, Base)
2356#define ABSTRACT_TYPE(Class, Base)
2357#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
2358#include "clang/AST/TypeNodes.def"
2359 llvm_unreachable("didn't desugar past all non-canonical types?");
2360
2361 // These types should never be variably-modified.
2362 case Type::Builtin:
2363 case Type::Complex:
2364 case Type::Vector:
2365 case Type::ExtVector:
2366 case Type::DependentSizedExtVector:
2367 case Type::ObjCObject:
2368 case Type::ObjCInterface:
2369 case Type::ObjCObjectPointer:
2370 case Type::Record:
2371 case Type::Enum:
2372 case Type::UnresolvedUsing:
2373 case Type::TypeOfExpr:
2374 case Type::TypeOf:
2375 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00002376 case Type::UnaryTransform:
John McCallce889032011-01-18 08:40:38 +00002377 case Type::DependentName:
2378 case Type::InjectedClassName:
2379 case Type::TemplateSpecialization:
2380 case Type::DependentTemplateSpecialization:
2381 case Type::TemplateTypeParm:
2382 case Type::SubstTemplateTypeParmPack:
Richard Smith34b41d92011-02-20 03:19:35 +00002383 case Type::Auto:
John McCallce889032011-01-18 08:40:38 +00002384 case Type::PackExpansion:
2385 llvm_unreachable("type should never be variably-modified");
2386
2387 // These types can be variably-modified but should never need to
2388 // further decay.
2389 case Type::FunctionNoProto:
2390 case Type::FunctionProto:
2391 case Type::BlockPointer:
2392 case Type::MemberPointer:
2393 return type;
2394
2395 // These types can be variably-modified. All these modifications
2396 // preserve structure except as noted by comments.
2397 // TODO: if we ever care about optimizing VLAs, there are no-op
2398 // optimizations available here.
2399 case Type::Pointer:
2400 result = getPointerType(getVariableArrayDecayedType(
2401 cast<PointerType>(ty)->getPointeeType()));
2402 break;
2403
2404 case Type::LValueReference: {
2405 const LValueReferenceType *lv = cast<LValueReferenceType>(ty);
2406 result = getLValueReferenceType(
2407 getVariableArrayDecayedType(lv->getPointeeType()),
2408 lv->isSpelledAsLValue());
2409 break;
2410 }
2411
2412 case Type::RValueReference: {
2413 const RValueReferenceType *lv = cast<RValueReferenceType>(ty);
2414 result = getRValueReferenceType(
2415 getVariableArrayDecayedType(lv->getPointeeType()));
2416 break;
2417 }
2418
Eli Friedmanb001de72011-10-06 23:00:33 +00002419 case Type::Atomic: {
2420 const AtomicType *at = cast<AtomicType>(ty);
2421 result = getAtomicType(getVariableArrayDecayedType(at->getValueType()));
2422 break;
2423 }
2424
John McCallce889032011-01-18 08:40:38 +00002425 case Type::ConstantArray: {
2426 const ConstantArrayType *cat = cast<ConstantArrayType>(ty);
2427 result = getConstantArrayType(
2428 getVariableArrayDecayedType(cat->getElementType()),
2429 cat->getSize(),
2430 cat->getSizeModifier(),
2431 cat->getIndexTypeCVRQualifiers());
2432 break;
2433 }
2434
2435 case Type::DependentSizedArray: {
2436 const DependentSizedArrayType *dat = cast<DependentSizedArrayType>(ty);
2437 result = getDependentSizedArrayType(
2438 getVariableArrayDecayedType(dat->getElementType()),
2439 dat->getSizeExpr(),
2440 dat->getSizeModifier(),
2441 dat->getIndexTypeCVRQualifiers(),
2442 dat->getBracketsRange());
2443 break;
2444 }
2445
2446 // Turn incomplete types into [*] types.
2447 case Type::IncompleteArray: {
2448 const IncompleteArrayType *iat = cast<IncompleteArrayType>(ty);
2449 result = getVariableArrayType(
2450 getVariableArrayDecayedType(iat->getElementType()),
2451 /*size*/ 0,
2452 ArrayType::Normal,
2453 iat->getIndexTypeCVRQualifiers(),
2454 SourceRange());
2455 break;
2456 }
2457
2458 // Turn VLA types into [*] types.
2459 case Type::VariableArray: {
2460 const VariableArrayType *vat = cast<VariableArrayType>(ty);
2461 result = getVariableArrayType(
2462 getVariableArrayDecayedType(vat->getElementType()),
2463 /*size*/ 0,
2464 ArrayType::Star,
2465 vat->getIndexTypeCVRQualifiers(),
2466 vat->getBracketsRange());
2467 break;
2468 }
2469 }
2470
2471 // Apply the top-level qualifiers from the original.
John McCall200fa532012-02-08 00:46:36 +00002472 return getQualifiedType(result, split.Quals);
John McCallce889032011-01-18 08:40:38 +00002473}
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00002474
Steve Naroffbdbf7b02007-08-30 18:14:25 +00002475/// getVariableArrayType - Returns a non-unique reference to the type for a
2476/// variable array of the specified element type.
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002477QualType ASTContext::getVariableArrayType(QualType EltTy,
2478 Expr *NumElts,
Steve Naroffc9406122007-08-30 18:10:14 +00002479 ArrayType::ArraySizeModifier ASM,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002480 unsigned IndexTypeQuals,
Jay Foad4ba2a172011-01-12 09:06:06 +00002481 SourceRange Brackets) const {
Eli Friedmanc5773c42008-02-15 18:16:39 +00002482 // Since we don't unique expressions, it isn't possible to unique VLA's
2483 // that have an expression provided for their size.
John McCall3b657512011-01-19 10:06:00 +00002484 QualType Canon;
Douglas Gregor715e9c82010-05-23 16:10:32 +00002485
John McCall3b657512011-01-19 10:06:00 +00002486 // Be sure to pull qualifiers off the element type.
2487 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
2488 SplitQualType canonSplit = getCanonicalType(EltTy).split();
John McCall200fa532012-02-08 00:46:36 +00002489 Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM,
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002490 IndexTypeQuals, Brackets);
John McCall200fa532012-02-08 00:46:36 +00002491 Canon = getQualifiedType(Canon, canonSplit.Quals);
Douglas Gregor715e9c82010-05-23 16:10:32 +00002492 }
2493
John McCall6b304a02009-09-24 23:30:46 +00002494 VariableArrayType *New = new(*this, TypeAlignment)
Abramo Bagnara63e7d252011-01-27 19:55:10 +00002495 VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002496
2497 VariableArrayTypes.push_back(New);
2498 Types.push_back(New);
2499 return QualType(New, 0);
2500}
2501
Douglas Gregor898574e2008-12-05 23:32:09 +00002502/// getDependentSizedArrayType - Returns a non-unique reference to
2503/// the type for a dependently-sized array of the specified element
Douglas Gregor04d4bee2009-07-31 00:23:35 +00002504/// type.
John McCall3b657512011-01-19 10:06:00 +00002505QualType ASTContext::getDependentSizedArrayType(QualType elementType,
2506 Expr *numElements,
Douglas Gregor898574e2008-12-05 23:32:09 +00002507 ArrayType::ArraySizeModifier ASM,
John McCall3b657512011-01-19 10:06:00 +00002508 unsigned elementTypeQuals,
2509 SourceRange brackets) const {
2510 assert((!numElements || numElements->isTypeDependent() ||
2511 numElements->isValueDependent()) &&
Douglas Gregor898574e2008-12-05 23:32:09 +00002512 "Size must be type- or value-dependent!");
2513
John McCall3b657512011-01-19 10:06:00 +00002514 // Dependently-sized array types that do not have a specified number
2515 // of elements will have their sizes deduced from a dependent
2516 // initializer. We do no canonicalization here at all, which is okay
2517 // because they can't be used in most locations.
2518 if (!numElements) {
2519 DependentSizedArrayType *newType
2520 = new (*this, TypeAlignment)
2521 DependentSizedArrayType(*this, elementType, QualType(),
2522 numElements, ASM, elementTypeQuals,
2523 brackets);
2524 Types.push_back(newType);
2525 return QualType(newType, 0);
2526 }
2527
2528 // Otherwise, we actually build a new type every time, but we
2529 // also build a canonical type.
2530
2531 SplitQualType canonElementType = getCanonicalType(elementType).split();
2532
2533 void *insertPos = 0;
Douglas Gregor789b1f62010-02-04 18:10:26 +00002534 llvm::FoldingSetNodeID ID;
John McCall3b657512011-01-19 10:06:00 +00002535 DependentSizedArrayType::Profile(ID, *this,
John McCall200fa532012-02-08 00:46:36 +00002536 QualType(canonElementType.Ty, 0),
John McCall3b657512011-01-19 10:06:00 +00002537 ASM, elementTypeQuals, numElements);
Douglas Gregorcb78d882009-11-19 18:03:26 +00002538
John McCall3b657512011-01-19 10:06:00 +00002539 // Look for an existing type with these properties.
2540 DependentSizedArrayType *canonTy =
2541 DependentSizedArrayTypes.FindNodeOrInsertPos(ID, insertPos);
Douglas Gregorcb78d882009-11-19 18:03:26 +00002542
John McCall3b657512011-01-19 10:06:00 +00002543 // If we don't have one, build one.
2544 if (!canonTy) {
2545 canonTy = new (*this, TypeAlignment)
John McCall200fa532012-02-08 00:46:36 +00002546 DependentSizedArrayType(*this, QualType(canonElementType.Ty, 0),
John McCall3b657512011-01-19 10:06:00 +00002547 QualType(), numElements, ASM, elementTypeQuals,
2548 brackets);
2549 DependentSizedArrayTypes.InsertNode(canonTy, insertPos);
2550 Types.push_back(canonTy);
Douglas Gregorcb78d882009-11-19 18:03:26 +00002551 }
2552
John McCall3b657512011-01-19 10:06:00 +00002553 // Apply qualifiers from the element type to the array.
2554 QualType canon = getQualifiedType(QualType(canonTy,0),
John McCall200fa532012-02-08 00:46:36 +00002555 canonElementType.Quals);
Mike Stump1eb44332009-09-09 15:08:12 +00002556
John McCall3b657512011-01-19 10:06:00 +00002557 // If we didn't need extra canonicalization for the element type,
2558 // then just use that as our result.
John McCall200fa532012-02-08 00:46:36 +00002559 if (QualType(canonElementType.Ty, 0) == elementType)
John McCall3b657512011-01-19 10:06:00 +00002560 return canon;
2561
2562 // Otherwise, we need to build a type which follows the spelling
2563 // of the element type.
2564 DependentSizedArrayType *sugaredType
2565 = new (*this, TypeAlignment)
2566 DependentSizedArrayType(*this, elementType, canon, numElements,
2567 ASM, elementTypeQuals, brackets);
2568 Types.push_back(sugaredType);
2569 return QualType(sugaredType, 0);
Douglas Gregor898574e2008-12-05 23:32:09 +00002570}
2571
John McCall3b657512011-01-19 10:06:00 +00002572QualType ASTContext::getIncompleteArrayType(QualType elementType,
Eli Friedmanc5773c42008-02-15 18:16:39 +00002573 ArrayType::ArraySizeModifier ASM,
John McCall3b657512011-01-19 10:06:00 +00002574 unsigned elementTypeQuals) const {
Eli Friedmanc5773c42008-02-15 18:16:39 +00002575 llvm::FoldingSetNodeID ID;
John McCall3b657512011-01-19 10:06:00 +00002576 IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002577
John McCall3b657512011-01-19 10:06:00 +00002578 void *insertPos = 0;
2579 if (IncompleteArrayType *iat =
2580 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos))
2581 return QualType(iat, 0);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002582
2583 // If the element type isn't canonical, this won't be a canonical type
John McCall3b657512011-01-19 10:06:00 +00002584 // either, so fill in the canonical type field. We also have to pull
2585 // qualifiers off the element type.
2586 QualType canon;
Eli Friedmanc5773c42008-02-15 18:16:39 +00002587
John McCall3b657512011-01-19 10:06:00 +00002588 if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) {
2589 SplitQualType canonSplit = getCanonicalType(elementType).split();
John McCall200fa532012-02-08 00:46:36 +00002590 canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0),
John McCall3b657512011-01-19 10:06:00 +00002591 ASM, elementTypeQuals);
John McCall200fa532012-02-08 00:46:36 +00002592 canon = getQualifiedType(canon, canonSplit.Quals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002593
2594 // Get the new insert position for the node we care about.
John McCall3b657512011-01-19 10:06:00 +00002595 IncompleteArrayType *existing =
2596 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos);
2597 assert(!existing && "Shouldn't be in the map!"); (void) existing;
Ted Kremenek2bd24ba2007-10-29 23:37:31 +00002598 }
Eli Friedmanc5773c42008-02-15 18:16:39 +00002599
John McCall3b657512011-01-19 10:06:00 +00002600 IncompleteArrayType *newType = new (*this, TypeAlignment)
2601 IncompleteArrayType(elementType, canon, ASM, elementTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00002602
John McCall3b657512011-01-19 10:06:00 +00002603 IncompleteArrayTypes.InsertNode(newType, insertPos);
2604 Types.push_back(newType);
2605 return QualType(newType, 0);
Steve Narofffb22d962007-08-30 01:06:46 +00002606}
2607
Steve Naroff73322922007-07-18 18:00:27 +00002608/// getVectorType - Return the unique reference to a vector type of
2609/// the specified element type and size. VectorType must be a built-in type.
John Thompson82287d12010-02-05 00:12:22 +00002610QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts,
Jay Foad4ba2a172011-01-12 09:06:06 +00002611 VectorType::VectorKind VecKind) const {
John McCall3b657512011-01-19 10:06:00 +00002612 assert(vecType->isBuiltinType());
Mike Stump1eb44332009-09-09 15:08:12 +00002613
Reid Spencer5f016e22007-07-11 17:01:13 +00002614 // Check if we've already instantiated a vector of this type.
2615 llvm::FoldingSetNodeID ID;
Bob Wilsone86d78c2010-11-10 21:56:12 +00002616 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
Chris Lattner788b0fd2010-06-23 06:00:24 +00002617
Reid Spencer5f016e22007-07-11 17:01:13 +00002618 void *InsertPos = 0;
2619 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
2620 return QualType(VTP, 0);
2621
2622 // If the element type isn't canonical, this won't be a canonical type either,
2623 // so fill in the canonical type field.
2624 QualType Canonical;
Douglas Gregor255210e2010-08-06 10:14:59 +00002625 if (!vecType.isCanonical()) {
Bob Wilson231da7e2010-11-16 00:32:20 +00002626 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
Mike Stump1eb44332009-09-09 15:08:12 +00002627
Reid Spencer5f016e22007-07-11 17:01:13 +00002628 // Get the new insert position for the node we care about.
2629 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002630 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002631 }
John McCall6b304a02009-09-24 23:30:46 +00002632 VectorType *New = new (*this, TypeAlignment)
Bob Wilsone86d78c2010-11-10 21:56:12 +00002633 VectorType(vecType, NumElts, Canonical, VecKind);
Reid Spencer5f016e22007-07-11 17:01:13 +00002634 VectorTypes.InsertNode(New, InsertPos);
2635 Types.push_back(New);
2636 return QualType(New, 0);
2637}
2638
Nate Begeman213541a2008-04-18 23:10:10 +00002639/// getExtVectorType - Return the unique reference to an extended vector type of
Steve Naroff73322922007-07-18 18:00:27 +00002640/// the specified element type and size. VectorType must be a built-in type.
Jay Foad4ba2a172011-01-12 09:06:06 +00002641QualType
2642ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const {
Douglas Gregor4ac01402011-06-15 16:02:29 +00002643 assert(vecType->isBuiltinType() || vecType->isDependentType());
Mike Stump1eb44332009-09-09 15:08:12 +00002644
Steve Naroff73322922007-07-18 18:00:27 +00002645 // Check if we've already instantiated a vector of this type.
2646 llvm::FoldingSetNodeID ID;
Chris Lattner788b0fd2010-06-23 06:00:24 +00002647 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector,
Bob Wilsone86d78c2010-11-10 21:56:12 +00002648 VectorType::GenericVector);
Steve Naroff73322922007-07-18 18:00:27 +00002649 void *InsertPos = 0;
2650 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
2651 return QualType(VTP, 0);
2652
2653 // If the element type isn't canonical, this won't be a canonical type either,
2654 // so fill in the canonical type field.
2655 QualType Canonical;
John McCall467b27b2009-10-22 20:10:53 +00002656 if (!vecType.isCanonical()) {
Nate Begeman213541a2008-04-18 23:10:10 +00002657 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
Mike Stump1eb44332009-09-09 15:08:12 +00002658
Steve Naroff73322922007-07-18 18:00:27 +00002659 // Get the new insert position for the node we care about.
2660 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002661 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Steve Naroff73322922007-07-18 18:00:27 +00002662 }
John McCall6b304a02009-09-24 23:30:46 +00002663 ExtVectorType *New = new (*this, TypeAlignment)
2664 ExtVectorType(vecType, NumElts, Canonical);
Steve Naroff73322922007-07-18 18:00:27 +00002665 VectorTypes.InsertNode(New, InsertPos);
2666 Types.push_back(New);
2667 return QualType(New, 0);
2668}
2669
Jay Foad4ba2a172011-01-12 09:06:06 +00002670QualType
2671ASTContext::getDependentSizedExtVectorType(QualType vecType,
2672 Expr *SizeExpr,
2673 SourceLocation AttrLoc) const {
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002674 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +00002675 DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType),
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002676 SizeExpr);
Mike Stump1eb44332009-09-09 15:08:12 +00002677
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002678 void *InsertPos = 0;
2679 DependentSizedExtVectorType *Canon
2680 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
2681 DependentSizedExtVectorType *New;
2682 if (Canon) {
2683 // We already have a canonical version of this array type; use it as
2684 // the canonical type for a newly-built type.
John McCall6b304a02009-09-24 23:30:46 +00002685 New = new (*this, TypeAlignment)
2686 DependentSizedExtVectorType(*this, vecType, QualType(Canon, 0),
2687 SizeExpr, AttrLoc);
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002688 } else {
2689 QualType CanonVecTy = getCanonicalType(vecType);
2690 if (CanonVecTy == vecType) {
John McCall6b304a02009-09-24 23:30:46 +00002691 New = new (*this, TypeAlignment)
2692 DependentSizedExtVectorType(*this, vecType, QualType(), SizeExpr,
2693 AttrLoc);
Douglas Gregor789b1f62010-02-04 18:10:26 +00002694
2695 DependentSizedExtVectorType *CanonCheck
2696 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
2697 assert(!CanonCheck && "Dependent-sized ext_vector canonical type broken");
2698 (void)CanonCheck;
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002699 DependentSizedExtVectorTypes.InsertNode(New, InsertPos);
2700 } else {
2701 QualType Canon = getDependentSizedExtVectorType(CanonVecTy, SizeExpr,
2702 SourceLocation());
John McCall6b304a02009-09-24 23:30:46 +00002703 New = new (*this, TypeAlignment)
2704 DependentSizedExtVectorType(*this, vecType, Canon, SizeExpr, AttrLoc);
Douglas Gregor2ec09f12009-07-31 03:54:25 +00002705 }
2706 }
Mike Stump1eb44332009-09-09 15:08:12 +00002707
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002708 Types.push_back(New);
2709 return QualType(New, 0);
2710}
2711
Douglas Gregor72564e72009-02-26 23:50:07 +00002712/// getFunctionNoProtoType - Return a K&R style C function type like 'int()'.
Reid Spencer5f016e22007-07-11 17:01:13 +00002713///
Jay Foad4ba2a172011-01-12 09:06:06 +00002714QualType
2715ASTContext::getFunctionNoProtoType(QualType ResultTy,
2716 const FunctionType::ExtInfo &Info) const {
Roman Divackycfe9af22011-03-01 17:40:53 +00002717 const CallingConv DefaultCC = Info.getCC();
2718 const CallingConv CallConv = (LangOpts.MRTD && DefaultCC == CC_Default) ?
2719 CC_X86StdCall : DefaultCC;
Reid Spencer5f016e22007-07-11 17:01:13 +00002720 // Unique functions, to guarantee there is only one function of a particular
2721 // structure.
2722 llvm::FoldingSetNodeID ID;
Rafael Espindola264ba482010-03-30 20:24:48 +00002723 FunctionNoProtoType::Profile(ID, ResultTy, Info);
Mike Stump1eb44332009-09-09 15:08:12 +00002724
Reid Spencer5f016e22007-07-11 17:01:13 +00002725 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002726 if (FunctionNoProtoType *FT =
Douglas Gregor72564e72009-02-26 23:50:07 +00002727 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002728 return QualType(FT, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002729
Reid Spencer5f016e22007-07-11 17:01:13 +00002730 QualType Canonical;
Douglas Gregorab8bbf42010-01-18 17:14:39 +00002731 if (!ResultTy.isCanonical() ||
John McCall04a67a62010-02-05 21:31:56 +00002732 getCanonicalCallConv(CallConv) != CallConv) {
Rafael Espindola264ba482010-03-30 20:24:48 +00002733 Canonical =
2734 getFunctionNoProtoType(getCanonicalType(ResultTy),
2735 Info.withCallingConv(getCanonicalCallConv(CallConv)));
Mike Stump1eb44332009-09-09 15:08:12 +00002736
Reid Spencer5f016e22007-07-11 17:01:13 +00002737 // Get the new insert position for the node we care about.
Douglas Gregor72564e72009-02-26 23:50:07 +00002738 FunctionNoProtoType *NewIP =
2739 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002740 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002741 }
Mike Stump1eb44332009-09-09 15:08:12 +00002742
Roman Divackycfe9af22011-03-01 17:40:53 +00002743 FunctionProtoType::ExtInfo newInfo = Info.withCallingConv(CallConv);
John McCall6b304a02009-09-24 23:30:46 +00002744 FunctionNoProtoType *New = new (*this, TypeAlignment)
Roman Divackycfe9af22011-03-01 17:40:53 +00002745 FunctionNoProtoType(ResultTy, Canonical, newInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00002746 Types.push_back(New);
Douglas Gregor72564e72009-02-26 23:50:07 +00002747 FunctionNoProtoTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002748 return QualType(New, 0);
2749}
2750
Douglas Gregor02dd7982013-01-17 23:36:45 +00002751/// \brief Determine whether \p T is canonical as the result type of a function.
2752static bool isCanonicalResultType(QualType T) {
2753 return T.isCanonical() &&
2754 (T.getObjCLifetime() == Qualifiers::OCL_None ||
2755 T.getObjCLifetime() == Qualifiers::OCL_ExplicitNone);
2756}
2757
Reid Spencer5f016e22007-07-11 17:01:13 +00002758/// getFunctionType - Return a normal function type with a typed argument
2759/// list. isVariadic indicates whether the argument list includes '...'.
Jay Foad4ba2a172011-01-12 09:06:06 +00002760QualType
Jordan Rosebea522f2013-03-08 21:51:21 +00002761ASTContext::getFunctionType(QualType ResultTy, ArrayRef<QualType> ArgArray,
Jay Foad4ba2a172011-01-12 09:06:06 +00002762 const FunctionProtoType::ExtProtoInfo &EPI) const {
Jordan Rosebea522f2013-03-08 21:51:21 +00002763 size_t NumArgs = ArgArray.size();
2764
Reid Spencer5f016e22007-07-11 17:01:13 +00002765 // Unique functions, to guarantee there is only one function of a particular
2766 // structure.
2767 llvm::FoldingSetNodeID ID;
Jordan Rosebea522f2013-03-08 21:51:21 +00002768 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
2769 *this);
Reid Spencer5f016e22007-07-11 17:01:13 +00002770
2771 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002772 if (FunctionProtoType *FTP =
Douglas Gregor72564e72009-02-26 23:50:07 +00002773 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00002774 return QualType(FTP, 0);
Sebastian Redl465226e2009-05-27 22:11:52 +00002775
2776 // Determine whether the type being created is already canonical or not.
Richard Smitheefb3d52012-02-10 09:58:53 +00002777 bool isCanonical =
Douglas Gregor02dd7982013-01-17 23:36:45 +00002778 EPI.ExceptionSpecType == EST_None && isCanonicalResultType(ResultTy) &&
Richard Smitheefb3d52012-02-10 09:58:53 +00002779 !EPI.HasTrailingReturn;
Reid Spencer5f016e22007-07-11 17:01:13 +00002780 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
John McCall54e14c42009-10-22 22:37:11 +00002781 if (!ArgArray[i].isCanonicalAsParam())
Reid Spencer5f016e22007-07-11 17:01:13 +00002782 isCanonical = false;
2783
Roman Divackycfe9af22011-03-01 17:40:53 +00002784 const CallingConv DefaultCC = EPI.ExtInfo.getCC();
2785 const CallingConv CallConv = (LangOpts.MRTD && DefaultCC == CC_Default) ?
2786 CC_X86StdCall : DefaultCC;
John McCalle23cf432010-12-14 08:05:40 +00002787
Reid Spencer5f016e22007-07-11 17:01:13 +00002788 // If this type isn't canonical, get the canonical version of it.
Sebastian Redl465226e2009-05-27 22:11:52 +00002789 // The exception spec is not part of the canonical type.
Reid Spencer5f016e22007-07-11 17:01:13 +00002790 QualType Canonical;
John McCall04a67a62010-02-05 21:31:56 +00002791 if (!isCanonical || getCanonicalCallConv(CallConv) != CallConv) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002792 SmallVector<QualType, 16> CanonicalArgs;
Reid Spencer5f016e22007-07-11 17:01:13 +00002793 CanonicalArgs.reserve(NumArgs);
2794 for (unsigned i = 0; i != NumArgs; ++i)
John McCall54e14c42009-10-22 22:37:11 +00002795 CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i]));
Sebastian Redl465226e2009-05-27 22:11:52 +00002796
John McCalle23cf432010-12-14 08:05:40 +00002797 FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI;
Richard Smitheefb3d52012-02-10 09:58:53 +00002798 CanonicalEPI.HasTrailingReturn = false;
Sebastian Redl8b5b4092011-03-06 10:52:04 +00002799 CanonicalEPI.ExceptionSpecType = EST_None;
2800 CanonicalEPI.NumExceptions = 0;
John McCalle23cf432010-12-14 08:05:40 +00002801 CanonicalEPI.ExtInfo
2802 = CanonicalEPI.ExtInfo.withCallingConv(getCanonicalCallConv(CallConv));
2803
Douglas Gregor02dd7982013-01-17 23:36:45 +00002804 // Result types do not have ARC lifetime qualifiers.
2805 QualType CanResultTy = getCanonicalType(ResultTy);
2806 if (ResultTy.getQualifiers().hasObjCLifetime()) {
2807 Qualifiers Qs = CanResultTy.getQualifiers();
2808 Qs.removeObjCLifetime();
2809 CanResultTy = getQualifiedType(CanResultTy.getUnqualifiedType(), Qs);
2810 }
2811
Jordan Rosebea522f2013-03-08 21:51:21 +00002812 Canonical = getFunctionType(CanResultTy, CanonicalArgs, CanonicalEPI);
Sebastian Redl465226e2009-05-27 22:11:52 +00002813
Reid Spencer5f016e22007-07-11 17:01:13 +00002814 // Get the new insert position for the node we care about.
Douglas Gregor72564e72009-02-26 23:50:07 +00002815 FunctionProtoType *NewIP =
2816 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002817 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002818 }
Sebastian Redl465226e2009-05-27 22:11:52 +00002819
John McCallf85e1932011-06-15 23:02:42 +00002820 // FunctionProtoType objects are allocated with extra bytes after
2821 // them for three variable size arrays at the end:
2822 // - parameter types
2823 // - exception types
2824 // - consumed-arguments flags
2825 // Instead of the exception types, there could be a noexcept
Richard Smithb9d0b762012-07-27 04:22:15 +00002826 // expression, or information used to resolve the exception
2827 // specification.
John McCalle23cf432010-12-14 08:05:40 +00002828 size_t Size = sizeof(FunctionProtoType) +
Sebastian Redl60618fa2011-03-12 11:50:43 +00002829 NumArgs * sizeof(QualType);
Richard Smithb9d0b762012-07-27 04:22:15 +00002830 if (EPI.ExceptionSpecType == EST_Dynamic) {
Sebastian Redl60618fa2011-03-12 11:50:43 +00002831 Size += EPI.NumExceptions * sizeof(QualType);
Richard Smithb9d0b762012-07-27 04:22:15 +00002832 } else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) {
Sebastian Redl8026f6d2011-03-13 17:09:40 +00002833 Size += sizeof(Expr*);
Richard Smithe6975e92012-04-17 00:58:00 +00002834 } else if (EPI.ExceptionSpecType == EST_Uninstantiated) {
Richard Smith13bffc52012-04-19 00:08:28 +00002835 Size += 2 * sizeof(FunctionDecl*);
Richard Smithb9d0b762012-07-27 04:22:15 +00002836 } else if (EPI.ExceptionSpecType == EST_Unevaluated) {
2837 Size += sizeof(FunctionDecl*);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002838 }
John McCallf85e1932011-06-15 23:02:42 +00002839 if (EPI.ConsumedArguments)
2840 Size += NumArgs * sizeof(bool);
2841
John McCalle23cf432010-12-14 08:05:40 +00002842 FunctionProtoType *FTP = (FunctionProtoType*) Allocate(Size, TypeAlignment);
Roman Divackycfe9af22011-03-01 17:40:53 +00002843 FunctionProtoType::ExtProtoInfo newEPI = EPI;
2844 newEPI.ExtInfo = EPI.ExtInfo.withCallingConv(CallConv);
Jordan Rosebea522f2013-03-08 21:51:21 +00002845 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
Reid Spencer5f016e22007-07-11 17:01:13 +00002846 Types.push_back(FTP);
Douglas Gregor72564e72009-02-26 23:50:07 +00002847 FunctionProtoTypes.InsertNode(FTP, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00002848 return QualType(FTP, 0);
2849}
2850
John McCall3cb0ebd2010-03-10 03:28:59 +00002851#ifndef NDEBUG
2852static bool NeedsInjectedClassNameType(const RecordDecl *D) {
2853 if (!isa<CXXRecordDecl>(D)) return false;
2854 const CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
2855 if (isa<ClassTemplatePartialSpecializationDecl>(RD))
2856 return true;
2857 if (RD->getDescribedClassTemplate() &&
2858 !isa<ClassTemplateSpecializationDecl>(RD))
2859 return true;
2860 return false;
2861}
2862#endif
2863
2864/// getInjectedClassNameType - Return the unique reference to the
2865/// injected class name type for the specified templated declaration.
2866QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl,
Jay Foad4ba2a172011-01-12 09:06:06 +00002867 QualType TST) const {
John McCall3cb0ebd2010-03-10 03:28:59 +00002868 assert(NeedsInjectedClassNameType(Decl));
2869 if (Decl->TypeForDecl) {
2870 assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
Douglas Gregoref96ee02012-01-14 16:38:05 +00002871 } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) {
John McCall3cb0ebd2010-03-10 03:28:59 +00002872 assert(PrevDecl->TypeForDecl && "previous declaration has no type");
2873 Decl->TypeForDecl = PrevDecl->TypeForDecl;
2874 assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
2875 } else {
John McCallf4c73712011-01-19 06:33:43 +00002876 Type *newType =
John McCall31f17ec2010-04-27 00:57:59 +00002877 new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
John McCallf4c73712011-01-19 06:33:43 +00002878 Decl->TypeForDecl = newType;
2879 Types.push_back(newType);
John McCall3cb0ebd2010-03-10 03:28:59 +00002880 }
2881 return QualType(Decl->TypeForDecl, 0);
2882}
2883
Douglas Gregor2ce52f32008-04-13 21:07:44 +00002884/// getTypeDeclType - Return the unique reference to the type for the
2885/// specified type declaration.
Jay Foad4ba2a172011-01-12 09:06:06 +00002886QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const {
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00002887 assert(Decl && "Passed null for Decl param");
John McCallbecb8d52010-03-10 06:48:02 +00002888 assert(!Decl->TypeForDecl && "TypeForDecl present in slow case");
Mike Stump1eb44332009-09-09 15:08:12 +00002889
Richard Smith162e1c12011-04-15 14:24:37 +00002890 if (const TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00002891 return getTypedefType(Typedef);
John McCallbecb8d52010-03-10 06:48:02 +00002892
John McCallbecb8d52010-03-10 06:48:02 +00002893 assert(!isa<TemplateTypeParmDecl>(Decl) &&
2894 "Template type parameter types are always available.");
2895
John McCall19c85762010-02-16 03:57:14 +00002896 if (const RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
Douglas Gregoref96ee02012-01-14 16:38:05 +00002897 assert(!Record->getPreviousDecl() &&
John McCallbecb8d52010-03-10 06:48:02 +00002898 "struct/union has previous declaration");
2899 assert(!NeedsInjectedClassNameType(Record));
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002900 return getRecordType(Record);
John McCall19c85762010-02-16 03:57:14 +00002901 } else if (const EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
Douglas Gregoref96ee02012-01-14 16:38:05 +00002902 assert(!Enum->getPreviousDecl() &&
John McCallbecb8d52010-03-10 06:48:02 +00002903 "enum has previous declaration");
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002904 return getEnumType(Enum);
John McCall19c85762010-02-16 03:57:14 +00002905 } else if (const UnresolvedUsingTypenameDecl *Using =
John McCalled976492009-12-04 22:46:56 +00002906 dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
John McCallf4c73712011-01-19 06:33:43 +00002907 Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using);
2908 Decl->TypeForDecl = newType;
2909 Types.push_back(newType);
Mike Stump9fdbab32009-07-31 02:02:20 +00002910 } else
John McCallbecb8d52010-03-10 06:48:02 +00002911 llvm_unreachable("TypeDecl without a type?");
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00002912
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00002913 return QualType(Decl->TypeForDecl, 0);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00002914}
2915
Reid Spencer5f016e22007-07-11 17:01:13 +00002916/// getTypedefType - Return the unique reference to the type for the
Richard Smith162e1c12011-04-15 14:24:37 +00002917/// specified typedef name decl.
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00002918QualType
Richard Smith162e1c12011-04-15 14:24:37 +00002919ASTContext::getTypedefType(const TypedefNameDecl *Decl,
2920 QualType Canonical) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00002921 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002922
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00002923 if (Canonical.isNull())
2924 Canonical = getCanonicalType(Decl->getUnderlyingType());
John McCallf4c73712011-01-19 06:33:43 +00002925 TypedefType *newType = new(*this, TypeAlignment)
John McCall6b304a02009-09-24 23:30:46 +00002926 TypedefType(Type::Typedef, Decl, Canonical);
John McCallf4c73712011-01-19 06:33:43 +00002927 Decl->TypeForDecl = newType;
2928 Types.push_back(newType);
2929 return QualType(newType, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00002930}
2931
Jay Foad4ba2a172011-01-12 09:06:06 +00002932QualType ASTContext::getRecordType(const RecordDecl *Decl) const {
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002933 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
2934
Douglas Gregoref96ee02012-01-14 16:38:05 +00002935 if (const RecordDecl *PrevDecl = Decl->getPreviousDecl())
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002936 if (PrevDecl->TypeForDecl)
2937 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
2938
John McCallf4c73712011-01-19 06:33:43 +00002939 RecordType *newType = new (*this, TypeAlignment) RecordType(Decl);
2940 Decl->TypeForDecl = newType;
2941 Types.push_back(newType);
2942 return QualType(newType, 0);
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002943}
2944
Jay Foad4ba2a172011-01-12 09:06:06 +00002945QualType ASTContext::getEnumType(const EnumDecl *Decl) const {
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002946 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
2947
Douglas Gregoref96ee02012-01-14 16:38:05 +00002948 if (const EnumDecl *PrevDecl = Decl->getPreviousDecl())
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002949 if (PrevDecl->TypeForDecl)
2950 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
2951
John McCallf4c73712011-01-19 06:33:43 +00002952 EnumType *newType = new (*this, TypeAlignment) EnumType(Decl);
2953 Decl->TypeForDecl = newType;
2954 Types.push_back(newType);
2955 return QualType(newType, 0);
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002956}
2957
John McCall9d156a72011-01-06 01:58:22 +00002958QualType ASTContext::getAttributedType(AttributedType::Kind attrKind,
2959 QualType modifiedType,
2960 QualType equivalentType) {
2961 llvm::FoldingSetNodeID id;
2962 AttributedType::Profile(id, attrKind, modifiedType, equivalentType);
2963
2964 void *insertPos = 0;
2965 AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos);
2966 if (type) return QualType(type, 0);
2967
2968 QualType canon = getCanonicalType(equivalentType);
2969 type = new (*this, TypeAlignment)
2970 AttributedType(canon, attrKind, modifiedType, equivalentType);
2971
2972 Types.push_back(type);
2973 AttributedTypes.InsertNode(type, insertPos);
2974
2975 return QualType(type, 0);
2976}
2977
2978
John McCall49a832b2009-10-18 09:09:24 +00002979/// \brief Retrieve a substitution-result type.
2980QualType
2981ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm,
Jay Foad4ba2a172011-01-12 09:06:06 +00002982 QualType Replacement) const {
John McCall467b27b2009-10-22 20:10:53 +00002983 assert(Replacement.isCanonical()
John McCall49a832b2009-10-18 09:09:24 +00002984 && "replacement types must always be canonical");
2985
2986 llvm::FoldingSetNodeID ID;
2987 SubstTemplateTypeParmType::Profile(ID, Parm, Replacement);
2988 void *InsertPos = 0;
2989 SubstTemplateTypeParmType *SubstParm
2990 = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
2991
2992 if (!SubstParm) {
2993 SubstParm = new (*this, TypeAlignment)
2994 SubstTemplateTypeParmType(Parm, Replacement);
2995 Types.push_back(SubstParm);
2996 SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
2997 }
2998
2999 return QualType(SubstParm, 0);
3000}
3001
Douglas Gregorc3069d62011-01-14 02:55:32 +00003002/// \brief Retrieve a
3003QualType ASTContext::getSubstTemplateTypeParmPackType(
3004 const TemplateTypeParmType *Parm,
3005 const TemplateArgument &ArgPack) {
3006#ifndef NDEBUG
3007 for (TemplateArgument::pack_iterator P = ArgPack.pack_begin(),
3008 PEnd = ArgPack.pack_end();
3009 P != PEnd; ++P) {
3010 assert(P->getKind() == TemplateArgument::Type &&"Pack contains a non-type");
3011 assert(P->getAsType().isCanonical() && "Pack contains non-canonical type");
3012 }
3013#endif
3014
3015 llvm::FoldingSetNodeID ID;
3016 SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack);
3017 void *InsertPos = 0;
3018 if (SubstTemplateTypeParmPackType *SubstParm
3019 = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos))
3020 return QualType(SubstParm, 0);
3021
3022 QualType Canon;
3023 if (!Parm->isCanonicalUnqualified()) {
3024 Canon = getCanonicalType(QualType(Parm, 0));
3025 Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon),
3026 ArgPack);
3027 SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos);
3028 }
3029
3030 SubstTemplateTypeParmPackType *SubstParm
3031 = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon,
3032 ArgPack);
3033 Types.push_back(SubstParm);
3034 SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
3035 return QualType(SubstParm, 0);
3036}
3037
Douglas Gregorfab9d672009-02-05 23:33:38 +00003038/// \brief Retrieve the template type parameter type for a template
Mike Stump1eb44332009-09-09 15:08:12 +00003039/// parameter or parameter pack with the given depth, index, and (optionally)
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003040/// name.
Mike Stump1eb44332009-09-09 15:08:12 +00003041QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003042 bool ParameterPack,
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003043 TemplateTypeParmDecl *TTPDecl) const {
Douglas Gregorfab9d672009-02-05 23:33:38 +00003044 llvm::FoldingSetNodeID ID;
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003045 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl);
Douglas Gregorfab9d672009-02-05 23:33:38 +00003046 void *InsertPos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003047 TemplateTypeParmType *TypeParm
Douglas Gregorfab9d672009-02-05 23:33:38 +00003048 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3049
3050 if (TypeParm)
3051 return QualType(TypeParm, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00003052
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003053 if (TTPDecl) {
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003054 QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack);
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003055 TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003056
3057 TemplateTypeParmType *TypeCheck
3058 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3059 assert(!TypeCheck && "Template type parameter canonical type broken");
3060 (void)TypeCheck;
Anders Carlsson76e4ce42009-06-16 00:30:48 +00003061 } else
John McCall6b304a02009-09-24 23:30:46 +00003062 TypeParm = new (*this, TypeAlignment)
3063 TemplateTypeParmType(Depth, Index, ParameterPack);
Douglas Gregorfab9d672009-02-05 23:33:38 +00003064
3065 Types.push_back(TypeParm);
3066 TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
3067
3068 return QualType(TypeParm, 0);
3069}
3070
John McCall3cb0ebd2010-03-10 03:28:59 +00003071TypeSourceInfo *
3072ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name,
3073 SourceLocation NameLoc,
3074 const TemplateArgumentListInfo &Args,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003075 QualType Underlying) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003076 assert(!Name.getAsDependentTemplateName() &&
3077 "No dependent template names here!");
Richard Smith3e4c6c42011-05-05 21:57:07 +00003078 QualType TST = getTemplateSpecializationType(Name, Args, Underlying);
John McCall3cb0ebd2010-03-10 03:28:59 +00003079
3080 TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
David Blaikie39e6ab42013-02-18 22:06:02 +00003081 TemplateSpecializationTypeLoc TL =
3082 DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>();
Abramo Bagnara55d23c92012-02-06 14:41:24 +00003083 TL.setTemplateKeywordLoc(SourceLocation());
John McCall3cb0ebd2010-03-10 03:28:59 +00003084 TL.setTemplateNameLoc(NameLoc);
3085 TL.setLAngleLoc(Args.getLAngleLoc());
3086 TL.setRAngleLoc(Args.getRAngleLoc());
3087 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
3088 TL.setArgLocInfo(i, Args[i].getLocInfo());
3089 return DI;
3090}
3091
Mike Stump1eb44332009-09-09 15:08:12 +00003092QualType
Douglas Gregor7532dc62009-03-30 22:58:21 +00003093ASTContext::getTemplateSpecializationType(TemplateName Template,
John McCalld5532b62009-11-23 01:53:49 +00003094 const TemplateArgumentListInfo &Args,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003095 QualType Underlying) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003096 assert(!Template.getAsDependentTemplateName() &&
3097 "No dependent template names here!");
3098
John McCalld5532b62009-11-23 01:53:49 +00003099 unsigned NumArgs = Args.size();
3100
Chris Lattner5f9e2722011-07-23 10:55:15 +00003101 SmallVector<TemplateArgument, 4> ArgVec;
John McCall833ca992009-10-29 08:12:44 +00003102 ArgVec.reserve(NumArgs);
3103 for (unsigned i = 0; i != NumArgs; ++i)
3104 ArgVec.push_back(Args[i].getArgument());
3105
John McCall31f17ec2010-04-27 00:57:59 +00003106 return getTemplateSpecializationType(Template, ArgVec.data(), NumArgs,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003107 Underlying);
John McCall833ca992009-10-29 08:12:44 +00003108}
3109
Douglas Gregorb70126a2012-02-03 17:16:23 +00003110#ifndef NDEBUG
3111static bool hasAnyPackExpansions(const TemplateArgument *Args,
3112 unsigned NumArgs) {
3113 for (unsigned I = 0; I != NumArgs; ++I)
3114 if (Args[I].isPackExpansion())
3115 return true;
3116
3117 return true;
3118}
3119#endif
3120
John McCall833ca992009-10-29 08:12:44 +00003121QualType
3122ASTContext::getTemplateSpecializationType(TemplateName Template,
Douglas Gregor7532dc62009-03-30 22:58:21 +00003123 const TemplateArgument *Args,
3124 unsigned NumArgs,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003125 QualType Underlying) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003126 assert(!Template.getAsDependentTemplateName() &&
3127 "No dependent template names here!");
Douglas Gregor0f0ea2a2011-03-03 17:04:51 +00003128 // Look through qualified template names.
3129 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3130 Template = TemplateName(QTN->getTemplateDecl());
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003131
Douglas Gregorb70126a2012-02-03 17:16:23 +00003132 bool IsTypeAlias =
Richard Smith3e4c6c42011-05-05 21:57:07 +00003133 Template.getAsTemplateDecl() &&
3134 isa<TypeAliasTemplateDecl>(Template.getAsTemplateDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00003135 QualType CanonType;
3136 if (!Underlying.isNull())
3137 CanonType = getCanonicalType(Underlying);
3138 else {
Douglas Gregorb70126a2012-02-03 17:16:23 +00003139 // We can get here with an alias template when the specialization contains
3140 // a pack expansion that does not match up with a parameter pack.
3141 assert((!IsTypeAlias || hasAnyPackExpansions(Args, NumArgs)) &&
3142 "Caller must compute aliased type");
3143 IsTypeAlias = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00003144 CanonType = getCanonicalTemplateSpecializationType(Template, Args,
3145 NumArgs);
3146 }
Douglas Gregorfc705b82009-02-26 22:19:44 +00003147
Douglas Gregor1275ae02009-07-28 23:00:59 +00003148 // Allocate the (non-canonical) template specialization type, but don't
3149 // try to unique it: these types typically have location information that
3150 // we don't unique and don't want to lose.
Richard Smith3e4c6c42011-05-05 21:57:07 +00003151 void *Mem = Allocate(sizeof(TemplateSpecializationType) +
3152 sizeof(TemplateArgument) * NumArgs +
Douglas Gregorb70126a2012-02-03 17:16:23 +00003153 (IsTypeAlias? sizeof(QualType) : 0),
John McCall6b304a02009-09-24 23:30:46 +00003154 TypeAlignment);
Mike Stump1eb44332009-09-09 15:08:12 +00003155 TemplateSpecializationType *Spec
Douglas Gregorb70126a2012-02-03 17:16:23 +00003156 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
3157 IsTypeAlias ? Underlying : QualType());
Mike Stump1eb44332009-09-09 15:08:12 +00003158
Douglas Gregor55f6b142009-02-09 18:46:07 +00003159 Types.push_back(Spec);
Mike Stump1eb44332009-09-09 15:08:12 +00003160 return QualType(Spec, 0);
Douglas Gregor55f6b142009-02-09 18:46:07 +00003161}
3162
Mike Stump1eb44332009-09-09 15:08:12 +00003163QualType
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003164ASTContext::getCanonicalTemplateSpecializationType(TemplateName Template,
3165 const TemplateArgument *Args,
Jay Foad4ba2a172011-01-12 09:06:06 +00003166 unsigned NumArgs) const {
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003167 assert(!Template.getAsDependentTemplateName() &&
3168 "No dependent template names here!");
Richard Smith3e4c6c42011-05-05 21:57:07 +00003169
Douglas Gregor0f0ea2a2011-03-03 17:04:51 +00003170 // Look through qualified template names.
3171 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3172 Template = TemplateName(QTN->getTemplateDecl());
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003173
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003174 // Build the canonical template specialization type.
3175 TemplateName CanonTemplate = getCanonicalTemplateName(Template);
Chris Lattner5f9e2722011-07-23 10:55:15 +00003176 SmallVector<TemplateArgument, 4> CanonArgs;
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003177 CanonArgs.reserve(NumArgs);
3178 for (unsigned I = 0; I != NumArgs; ++I)
3179 CanonArgs.push_back(getCanonicalTemplateArgument(Args[I]));
3180
3181 // Determine whether this canonical template specialization type already
3182 // exists.
3183 llvm::FoldingSetNodeID ID;
3184 TemplateSpecializationType::Profile(ID, CanonTemplate,
3185 CanonArgs.data(), NumArgs, *this);
3186
3187 void *InsertPos = 0;
3188 TemplateSpecializationType *Spec
3189 = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3190
3191 if (!Spec) {
3192 // Allocate a new canonical template specialization type.
3193 void *Mem = Allocate((sizeof(TemplateSpecializationType) +
3194 sizeof(TemplateArgument) * NumArgs),
3195 TypeAlignment);
3196 Spec = new (Mem) TemplateSpecializationType(CanonTemplate,
3197 CanonArgs.data(), NumArgs,
Richard Smith3e4c6c42011-05-05 21:57:07 +00003198 QualType(), QualType());
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003199 Types.push_back(Spec);
3200 TemplateSpecializationTypes.InsertNode(Spec, InsertPos);
3201 }
3202
3203 assert(Spec->isDependentType() &&
3204 "Non-dependent template-id type must have a canonical type");
3205 return QualType(Spec, 0);
3206}
3207
3208QualType
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003209ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword,
3210 NestedNameSpecifier *NNS,
Jay Foad4ba2a172011-01-12 09:06:06 +00003211 QualType NamedType) const {
Douglas Gregore4e5b052009-03-19 00:18:19 +00003212 llvm::FoldingSetNodeID ID;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003213 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003214
3215 void *InsertPos = 0;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003216 ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003217 if (T)
3218 return QualType(T, 0);
3219
Douglas Gregor789b1f62010-02-04 18:10:26 +00003220 QualType Canon = NamedType;
3221 if (!Canon.isCanonical()) {
3222 Canon = getCanonicalType(NamedType);
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003223 ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
3224 assert(!CheckT && "Elaborated canonical type broken");
Douglas Gregor789b1f62010-02-04 18:10:26 +00003225 (void)CheckT;
3226 }
3227
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003228 T = new (*this) ElaboratedType(Keyword, NNS, NamedType, Canon);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003229 Types.push_back(T);
Abramo Bagnara465d41b2010-05-11 21:36:43 +00003230 ElaboratedTypes.InsertNode(T, InsertPos);
Douglas Gregore4e5b052009-03-19 00:18:19 +00003231 return QualType(T, 0);
3232}
3233
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003234QualType
Jay Foad4ba2a172011-01-12 09:06:06 +00003235ASTContext::getParenType(QualType InnerType) const {
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003236 llvm::FoldingSetNodeID ID;
3237 ParenType::Profile(ID, InnerType);
3238
3239 void *InsertPos = 0;
3240 ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3241 if (T)
3242 return QualType(T, 0);
3243
3244 QualType Canon = InnerType;
3245 if (!Canon.isCanonical()) {
3246 Canon = getCanonicalType(InnerType);
3247 ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3248 assert(!CheckT && "Paren canonical type broken");
3249 (void)CheckT;
3250 }
3251
3252 T = new (*this) ParenType(InnerType, Canon);
3253 Types.push_back(T);
3254 ParenTypes.InsertNode(T, InsertPos);
3255 return QualType(T, 0);
3256}
3257
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003258QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword,
3259 NestedNameSpecifier *NNS,
3260 const IdentifierInfo *Name,
Jay Foad4ba2a172011-01-12 09:06:06 +00003261 QualType Canon) const {
Douglas Gregord57959a2009-03-27 23:10:48 +00003262 assert(NNS->isDependent() && "nested-name-specifier must be dependent");
3263
3264 if (Canon.isNull()) {
3265 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003266 ElaboratedTypeKeyword CanonKeyword = Keyword;
3267 if (Keyword == ETK_None)
3268 CanonKeyword = ETK_Typename;
3269
3270 if (CanonNNS != NNS || CanonKeyword != Keyword)
3271 Canon = getDependentNameType(CanonKeyword, CanonNNS, Name);
Douglas Gregord57959a2009-03-27 23:10:48 +00003272 }
3273
3274 llvm::FoldingSetNodeID ID;
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003275 DependentNameType::Profile(ID, Keyword, NNS, Name);
Douglas Gregord57959a2009-03-27 23:10:48 +00003276
3277 void *InsertPos = 0;
Douglas Gregor4714c122010-03-31 17:34:00 +00003278 DependentNameType *T
3279 = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregord57959a2009-03-27 23:10:48 +00003280 if (T)
3281 return QualType(T, 0);
3282
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003283 T = new (*this) DependentNameType(Keyword, NNS, Name, Canon);
Douglas Gregord57959a2009-03-27 23:10:48 +00003284 Types.push_back(T);
Douglas Gregor4714c122010-03-31 17:34:00 +00003285 DependentNameTypes.InsertNode(T, InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00003286 return QualType(T, 0);
Douglas Gregord57959a2009-03-27 23:10:48 +00003287}
3288
Mike Stump1eb44332009-09-09 15:08:12 +00003289QualType
John McCall33500952010-06-11 00:33:02 +00003290ASTContext::getDependentTemplateSpecializationType(
3291 ElaboratedTypeKeyword Keyword,
Douglas Gregor4a2023f2010-03-31 20:19:30 +00003292 NestedNameSpecifier *NNS,
John McCall33500952010-06-11 00:33:02 +00003293 const IdentifierInfo *Name,
Jay Foad4ba2a172011-01-12 09:06:06 +00003294 const TemplateArgumentListInfo &Args) const {
John McCall33500952010-06-11 00:33:02 +00003295 // TODO: avoid this copy
Chris Lattner5f9e2722011-07-23 10:55:15 +00003296 SmallVector<TemplateArgument, 16> ArgCopy;
John McCall33500952010-06-11 00:33:02 +00003297 for (unsigned I = 0, E = Args.size(); I != E; ++I)
3298 ArgCopy.push_back(Args[I].getArgument());
3299 return getDependentTemplateSpecializationType(Keyword, NNS, Name,
3300 ArgCopy.size(),
3301 ArgCopy.data());
3302}
3303
3304QualType
3305ASTContext::getDependentTemplateSpecializationType(
3306 ElaboratedTypeKeyword Keyword,
3307 NestedNameSpecifier *NNS,
3308 const IdentifierInfo *Name,
3309 unsigned NumArgs,
Jay Foad4ba2a172011-01-12 09:06:06 +00003310 const TemplateArgument *Args) const {
Douglas Gregoraa2187d2011-02-28 00:04:36 +00003311 assert((!NNS || NNS->isDependent()) &&
3312 "nested-name-specifier must be dependent");
Douglas Gregor17343172009-04-01 00:28:59 +00003313
Douglas Gregor789b1f62010-02-04 18:10:26 +00003314 llvm::FoldingSetNodeID ID;
John McCall33500952010-06-11 00:33:02 +00003315 DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS,
3316 Name, NumArgs, Args);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003317
3318 void *InsertPos = 0;
John McCall33500952010-06-11 00:33:02 +00003319 DependentTemplateSpecializationType *T
3320 = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003321 if (T)
3322 return QualType(T, 0);
3323
John McCall33500952010-06-11 00:33:02 +00003324 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
Douglas Gregor789b1f62010-02-04 18:10:26 +00003325
John McCall33500952010-06-11 00:33:02 +00003326 ElaboratedTypeKeyword CanonKeyword = Keyword;
3327 if (Keyword == ETK_None) CanonKeyword = ETK_Typename;
3328
3329 bool AnyNonCanonArgs = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003330 SmallVector<TemplateArgument, 16> CanonArgs(NumArgs);
John McCall33500952010-06-11 00:33:02 +00003331 for (unsigned I = 0; I != NumArgs; ++I) {
3332 CanonArgs[I] = getCanonicalTemplateArgument(Args[I]);
3333 if (!CanonArgs[I].structurallyEquals(Args[I]))
3334 AnyNonCanonArgs = true;
Douglas Gregor17343172009-04-01 00:28:59 +00003335 }
3336
John McCall33500952010-06-11 00:33:02 +00003337 QualType Canon;
3338 if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) {
3339 Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS,
3340 Name, NumArgs,
3341 CanonArgs.data());
3342
3343 // Find the insert position again.
3344 DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3345 }
3346
3347 void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) +
3348 sizeof(TemplateArgument) * NumArgs),
3349 TypeAlignment);
John McCallef990012010-06-11 11:07:21 +00003350 T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS,
John McCall33500952010-06-11 00:33:02 +00003351 Name, NumArgs, Args, Canon);
Douglas Gregor17343172009-04-01 00:28:59 +00003352 Types.push_back(T);
John McCall33500952010-06-11 00:33:02 +00003353 DependentTemplateSpecializationTypes.InsertNode(T, InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00003354 return QualType(T, 0);
Douglas Gregor17343172009-04-01 00:28:59 +00003355}
3356
Douglas Gregorcded4f62011-01-14 17:04:44 +00003357QualType ASTContext::getPackExpansionType(QualType Pattern,
David Blaikiedc84cd52013-02-20 22:23:23 +00003358 Optional<unsigned> NumExpansions) {
Douglas Gregor7536dd52010-12-20 02:24:11 +00003359 llvm::FoldingSetNodeID ID;
Douglas Gregorcded4f62011-01-14 17:04:44 +00003360 PackExpansionType::Profile(ID, Pattern, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00003361
3362 assert(Pattern->containsUnexpandedParameterPack() &&
3363 "Pack expansions must expand one or more parameter packs");
3364 void *InsertPos = 0;
3365 PackExpansionType *T
3366 = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3367 if (T)
3368 return QualType(T, 0);
3369
3370 QualType Canon;
3371 if (!Pattern.isCanonical()) {
Richard Smithd8672ef2012-07-16 00:20:35 +00003372 Canon = getCanonicalType(Pattern);
3373 // The canonical type might not contain an unexpanded parameter pack, if it
3374 // contains an alias template specialization which ignores one of its
3375 // parameters.
3376 if (Canon->containsUnexpandedParameterPack()) {
3377 Canon = getPackExpansionType(getCanonicalType(Pattern), NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00003378
Richard Smithd8672ef2012-07-16 00:20:35 +00003379 // Find the insert position again, in case we inserted an element into
3380 // PackExpansionTypes and invalidated our insert position.
3381 PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3382 }
Douglas Gregor7536dd52010-12-20 02:24:11 +00003383 }
3384
Douglas Gregorcded4f62011-01-14 17:04:44 +00003385 T = new (*this) PackExpansionType(Pattern, Canon, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00003386 Types.push_back(T);
3387 PackExpansionTypes.InsertNode(T, InsertPos);
3388 return QualType(T, 0);
3389}
3390
Chris Lattner88cb27a2008-04-07 04:56:42 +00003391/// CmpProtocolNames - Comparison predicate for sorting protocols
3392/// alphabetically.
3393static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
3394 const ObjCProtocolDecl *RHS) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +00003395 return LHS->getDeclName() < RHS->getDeclName();
Chris Lattner88cb27a2008-04-07 04:56:42 +00003396}
3397
John McCallc12c5bb2010-05-15 11:32:37 +00003398static bool areSortedAndUniqued(ObjCProtocolDecl * const *Protocols,
John McCall54e14c42009-10-22 22:37:11 +00003399 unsigned NumProtocols) {
3400 if (NumProtocols == 0) return true;
3401
Douglas Gregor61cc2962012-01-02 02:00:30 +00003402 if (Protocols[0]->getCanonicalDecl() != Protocols[0])
3403 return false;
3404
John McCall54e14c42009-10-22 22:37:11 +00003405 for (unsigned i = 1; i != NumProtocols; ++i)
Douglas Gregor61cc2962012-01-02 02:00:30 +00003406 if (!CmpProtocolNames(Protocols[i-1], Protocols[i]) ||
3407 Protocols[i]->getCanonicalDecl() != Protocols[i])
John McCall54e14c42009-10-22 22:37:11 +00003408 return false;
3409 return true;
3410}
3411
3412static void SortAndUniqueProtocols(ObjCProtocolDecl **Protocols,
Chris Lattner88cb27a2008-04-07 04:56:42 +00003413 unsigned &NumProtocols) {
3414 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
Mike Stump1eb44332009-09-09 15:08:12 +00003415
Chris Lattner88cb27a2008-04-07 04:56:42 +00003416 // Sort protocols, keyed by name.
3417 std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
3418
Douglas Gregor61cc2962012-01-02 02:00:30 +00003419 // Canonicalize.
3420 for (unsigned I = 0, N = NumProtocols; I != N; ++I)
3421 Protocols[I] = Protocols[I]->getCanonicalDecl();
3422
Chris Lattner88cb27a2008-04-07 04:56:42 +00003423 // Remove duplicates.
3424 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
3425 NumProtocols = ProtocolsEnd-Protocols;
3426}
3427
John McCallc12c5bb2010-05-15 11:32:37 +00003428QualType ASTContext::getObjCObjectType(QualType BaseType,
3429 ObjCProtocolDecl * const *Protocols,
Jay Foad4ba2a172011-01-12 09:06:06 +00003430 unsigned NumProtocols) const {
John McCallc12c5bb2010-05-15 11:32:37 +00003431 // If the base type is an interface and there aren't any protocols
3432 // to add, then the interface type will do just fine.
3433 if (!NumProtocols && isa<ObjCInterfaceType>(BaseType))
3434 return BaseType;
3435
3436 // Look in the folding set for an existing type.
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003437 llvm::FoldingSetNodeID ID;
John McCallc12c5bb2010-05-15 11:32:37 +00003438 ObjCObjectTypeImpl::Profile(ID, BaseType, Protocols, NumProtocols);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003439 void *InsertPos = 0;
John McCallc12c5bb2010-05-15 11:32:37 +00003440 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
3441 return QualType(QT, 0);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003442
John McCallc12c5bb2010-05-15 11:32:37 +00003443 // Build the canonical type, which has the canonical base type and
3444 // a sorted-and-uniqued list of protocols.
John McCall54e14c42009-10-22 22:37:11 +00003445 QualType Canonical;
John McCallc12c5bb2010-05-15 11:32:37 +00003446 bool ProtocolsSorted = areSortedAndUniqued(Protocols, NumProtocols);
3447 if (!ProtocolsSorted || !BaseType.isCanonical()) {
3448 if (!ProtocolsSorted) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00003449 SmallVector<ObjCProtocolDecl*, 8> Sorted(Protocols,
Benjamin Kramer02379412010-04-27 17:12:11 +00003450 Protocols + NumProtocols);
John McCall54e14c42009-10-22 22:37:11 +00003451 unsigned UniqueCount = NumProtocols;
3452
John McCall54e14c42009-10-22 22:37:11 +00003453 SortAndUniqueProtocols(&Sorted[0], UniqueCount);
John McCallc12c5bb2010-05-15 11:32:37 +00003454 Canonical = getObjCObjectType(getCanonicalType(BaseType),
3455 &Sorted[0], UniqueCount);
John McCall54e14c42009-10-22 22:37:11 +00003456 } else {
John McCallc12c5bb2010-05-15 11:32:37 +00003457 Canonical = getObjCObjectType(getCanonicalType(BaseType),
3458 Protocols, NumProtocols);
John McCall54e14c42009-10-22 22:37:11 +00003459 }
3460
3461 // Regenerate InsertPos.
John McCallc12c5bb2010-05-15 11:32:37 +00003462 ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos);
3463 }
3464
3465 unsigned Size = sizeof(ObjCObjectTypeImpl);
3466 Size += NumProtocols * sizeof(ObjCProtocolDecl *);
3467 void *Mem = Allocate(Size, TypeAlignment);
3468 ObjCObjectTypeImpl *T =
3469 new (Mem) ObjCObjectTypeImpl(Canonical, BaseType, Protocols, NumProtocols);
3470
3471 Types.push_back(T);
3472 ObjCObjectTypes.InsertNode(T, InsertPos);
3473 return QualType(T, 0);
3474}
3475
3476/// getObjCObjectPointerType - Return a ObjCObjectPointerType type for
3477/// the given object type.
Jay Foad4ba2a172011-01-12 09:06:06 +00003478QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const {
John McCallc12c5bb2010-05-15 11:32:37 +00003479 llvm::FoldingSetNodeID ID;
3480 ObjCObjectPointerType::Profile(ID, ObjectT);
3481
3482 void *InsertPos = 0;
3483 if (ObjCObjectPointerType *QT =
3484 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3485 return QualType(QT, 0);
3486
3487 // Find the canonical object type.
3488 QualType Canonical;
3489 if (!ObjectT.isCanonical()) {
3490 Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT));
3491
3492 // Regenerate InsertPos.
John McCall54e14c42009-10-22 22:37:11 +00003493 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3494 }
3495
Douglas Gregorfd6a0882010-02-08 22:59:26 +00003496 // No match.
John McCallc12c5bb2010-05-15 11:32:37 +00003497 void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment);
3498 ObjCObjectPointerType *QType =
3499 new (Mem) ObjCObjectPointerType(Canonical, ObjectT);
Mike Stump1eb44332009-09-09 15:08:12 +00003500
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003501 Types.push_back(QType);
3502 ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
John McCallc12c5bb2010-05-15 11:32:37 +00003503 return QualType(QType, 0);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003504}
Chris Lattner88cb27a2008-04-07 04:56:42 +00003505
Douglas Gregordeacbdc2010-08-11 12:19:30 +00003506/// getObjCInterfaceType - Return the unique reference to the type for the
3507/// specified ObjC interface decl. The list of protocols is optional.
Douglas Gregor0af55012011-12-16 03:12:41 +00003508QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl,
3509 ObjCInterfaceDecl *PrevDecl) const {
Douglas Gregordeacbdc2010-08-11 12:19:30 +00003510 if (Decl->TypeForDecl)
3511 return QualType(Decl->TypeForDecl, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00003512
Douglas Gregor0af55012011-12-16 03:12:41 +00003513 if (PrevDecl) {
3514 assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl");
3515 Decl->TypeForDecl = PrevDecl->TypeForDecl;
3516 return QualType(PrevDecl->TypeForDecl, 0);
3517 }
3518
Douglas Gregor8d2dbbf2011-12-16 16:34:57 +00003519 // Prefer the definition, if there is one.
3520 if (const ObjCInterfaceDecl *Def = Decl->getDefinition())
3521 Decl = Def;
3522
Douglas Gregordeacbdc2010-08-11 12:19:30 +00003523 void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment);
3524 ObjCInterfaceType *T = new (Mem) ObjCInterfaceType(Decl);
3525 Decl->TypeForDecl = T;
3526 Types.push_back(T);
3527 return QualType(T, 0);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00003528}
3529
Douglas Gregor72564e72009-02-26 23:50:07 +00003530/// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique
3531/// TypeOfExprType AST's (since expression's are never shared). For example,
Steve Naroff9752f252007-08-01 18:02:17 +00003532/// multiple declarations that refer to "typeof(x)" all contain different
Mike Stump1eb44332009-09-09 15:08:12 +00003533/// DeclRefExpr's. This doesn't effect the type checker, since it operates
Steve Naroff9752f252007-08-01 18:02:17 +00003534/// on canonical type's (which are always unique).
Jay Foad4ba2a172011-01-12 09:06:06 +00003535QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const {
Douglas Gregordd0257c2009-07-08 00:03:05 +00003536 TypeOfExprType *toe;
Douglas Gregorb1975722009-07-30 23:18:24 +00003537 if (tofExpr->isTypeDependent()) {
3538 llvm::FoldingSetNodeID ID;
3539 DependentTypeOfExprType::Profile(ID, *this, tofExpr);
Mike Stump1eb44332009-09-09 15:08:12 +00003540
Douglas Gregorb1975722009-07-30 23:18:24 +00003541 void *InsertPos = 0;
3542 DependentTypeOfExprType *Canon
3543 = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos);
3544 if (Canon) {
3545 // We already have a "canonical" version of an identical, dependent
3546 // typeof(expr) type. Use that as our canonical type.
John McCall6b304a02009-09-24 23:30:46 +00003547 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr,
Douglas Gregorb1975722009-07-30 23:18:24 +00003548 QualType((TypeOfExprType*)Canon, 0));
Chad Rosier30601782011-08-17 23:08:45 +00003549 } else {
Douglas Gregorb1975722009-07-30 23:18:24 +00003550 // Build a new, canonical typeof(expr) type.
John McCall6b304a02009-09-24 23:30:46 +00003551 Canon
3552 = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr);
Douglas Gregorb1975722009-07-30 23:18:24 +00003553 DependentTypeOfExprTypes.InsertNode(Canon, InsertPos);
3554 toe = Canon;
3555 }
3556 } else {
Douglas Gregordd0257c2009-07-08 00:03:05 +00003557 QualType Canonical = getCanonicalType(tofExpr->getType());
John McCall6b304a02009-09-24 23:30:46 +00003558 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical);
Douglas Gregordd0257c2009-07-08 00:03:05 +00003559 }
Steve Naroff9752f252007-08-01 18:02:17 +00003560 Types.push_back(toe);
3561 return QualType(toe, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00003562}
3563
Steve Naroff9752f252007-08-01 18:02:17 +00003564/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
3565/// TypeOfType AST's. The only motivation to unique these nodes would be
3566/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
Mike Stump1eb44332009-09-09 15:08:12 +00003567/// an issue. This doesn't effect the type checker, since it operates
Steve Naroff9752f252007-08-01 18:02:17 +00003568/// on canonical type's (which are always unique).
Jay Foad4ba2a172011-01-12 09:06:06 +00003569QualType ASTContext::getTypeOfType(QualType tofType) const {
Chris Lattnerf52ab252008-04-06 22:59:24 +00003570 QualType Canonical = getCanonicalType(tofType);
John McCall6b304a02009-09-24 23:30:46 +00003571 TypeOfType *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical);
Steve Naroff9752f252007-08-01 18:02:17 +00003572 Types.push_back(tot);
3573 return QualType(tot, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00003574}
3575
Anders Carlsson60a9a2a2009-06-24 21:24:56 +00003576
Anders Carlsson395b4752009-06-24 19:06:50 +00003577/// getDecltypeType - Unlike many "get<Type>" functions, we don't unique
3578/// DecltypeType AST's. The only motivation to unique these nodes would be
3579/// memory savings. Since decltype(t) is fairly uncommon, space shouldn't be
Mike Stump1eb44332009-09-09 15:08:12 +00003580/// an issue. This doesn't effect the type checker, since it operates
David Blaikie39e02032011-11-06 22:28:03 +00003581/// on canonical types (which are always unique).
Douglas Gregorf8af9822012-02-12 18:42:33 +00003582QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const {
Douglas Gregordd0257c2009-07-08 00:03:05 +00003583 DecltypeType *dt;
Douglas Gregor561f8122011-07-01 01:22:09 +00003584
3585 // C++0x [temp.type]p2:
3586 // If an expression e involves a template parameter, decltype(e) denotes a
3587 // unique dependent type. Two such decltype-specifiers refer to the same
3588 // type only if their expressions are equivalent (14.5.6.1).
3589 if (e->isInstantiationDependent()) {
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003590 llvm::FoldingSetNodeID ID;
3591 DependentDecltypeType::Profile(ID, *this, e);
Mike Stump1eb44332009-09-09 15:08:12 +00003592
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003593 void *InsertPos = 0;
3594 DependentDecltypeType *Canon
3595 = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos);
3596 if (Canon) {
3597 // We already have a "canonical" version of an equivalent, dependent
3598 // decltype type. Use that as our canonical type.
Richard Smith0d729102012-08-13 20:08:14 +00003599 dt = new (*this, TypeAlignment) DecltypeType(e, UnderlyingType,
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003600 QualType((DecltypeType*)Canon, 0));
Chad Rosier30601782011-08-17 23:08:45 +00003601 } else {
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003602 // Build a new, canonical typeof(expr) type.
John McCall6b304a02009-09-24 23:30:46 +00003603 Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e);
Douglas Gregor9d702ae2009-07-30 23:36:40 +00003604 DependentDecltypeTypes.InsertNode(Canon, InsertPos);
3605 dt = Canon;
3606 }
3607 } else {
Douglas Gregorf8af9822012-02-12 18:42:33 +00003608 dt = new (*this, TypeAlignment) DecltypeType(e, UnderlyingType,
3609 getCanonicalType(UnderlyingType));
Douglas Gregordd0257c2009-07-08 00:03:05 +00003610 }
Anders Carlsson395b4752009-06-24 19:06:50 +00003611 Types.push_back(dt);
3612 return QualType(dt, 0);
3613}
3614
Sean Huntca63c202011-05-24 22:41:36 +00003615/// getUnaryTransformationType - We don't unique these, since the memory
3616/// savings are minimal and these are rare.
3617QualType ASTContext::getUnaryTransformType(QualType BaseType,
3618 QualType UnderlyingType,
3619 UnaryTransformType::UTTKind Kind)
3620 const {
3621 UnaryTransformType *Ty =
Douglas Gregor69d97752011-05-25 17:51:54 +00003622 new (*this, TypeAlignment) UnaryTransformType (BaseType, UnderlyingType,
3623 Kind,
3624 UnderlyingType->isDependentType() ?
Peter Collingbourne12fc4b02012-03-05 16:02:06 +00003625 QualType() : getCanonicalType(UnderlyingType));
Sean Huntca63c202011-05-24 22:41:36 +00003626 Types.push_back(Ty);
3627 return QualType(Ty, 0);
3628}
3629
Richard Smith60e141e2013-05-04 07:00:32 +00003630/// getAutoType - Return the uniqued reference to the 'auto' type which has been
3631/// deduced to the given type, or to the canonical undeduced 'auto' type, or the
3632/// canonical deduced-but-dependent 'auto' type.
3633QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto,
Richard Smithdc7a4f52013-04-30 13:56:41 +00003634 bool IsDependent) const {
Richard Smith60e141e2013-05-04 07:00:32 +00003635 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent)
3636 return getAutoDeductType();
3637
3638 // Look in the folding set for an existing type.
Richard Smith483b9f32011-02-21 20:05:19 +00003639 void *InsertPos = 0;
Richard Smith60e141e2013-05-04 07:00:32 +00003640 llvm::FoldingSetNodeID ID;
3641 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent);
3642 if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos))
3643 return QualType(AT, 0);
Richard Smith483b9f32011-02-21 20:05:19 +00003644
Richard Smitha2c36462013-04-26 16:15:35 +00003645 AutoType *AT = new (*this, TypeAlignment) AutoType(DeducedType,
Richard Smithdc7a4f52013-04-30 13:56:41 +00003646 IsDecltypeAuto,
3647 IsDependent);
Richard Smith483b9f32011-02-21 20:05:19 +00003648 Types.push_back(AT);
3649 if (InsertPos)
3650 AutoTypes.InsertNode(AT, InsertPos);
3651 return QualType(AT, 0);
Richard Smith34b41d92011-02-20 03:19:35 +00003652}
3653
Eli Friedmanb001de72011-10-06 23:00:33 +00003654/// getAtomicType - Return the uniqued reference to the atomic type for
3655/// the given value type.
3656QualType ASTContext::getAtomicType(QualType T) const {
3657 // Unique pointers, to guarantee there is only one pointer of a particular
3658 // structure.
3659 llvm::FoldingSetNodeID ID;
3660 AtomicType::Profile(ID, T);
3661
3662 void *InsertPos = 0;
3663 if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos))
3664 return QualType(AT, 0);
3665
3666 // If the atomic value type isn't canonical, this won't be a canonical type
3667 // either, so fill in the canonical type field.
3668 QualType Canonical;
3669 if (!T.isCanonical()) {
3670 Canonical = getAtomicType(getCanonicalType(T));
3671
3672 // Get the new insert position for the node we care about.
3673 AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos);
3674 assert(NewIP == 0 && "Shouldn't be in the map!"); (void)NewIP;
3675 }
3676 AtomicType *New = new (*this, TypeAlignment) AtomicType(T, Canonical);
3677 Types.push_back(New);
3678 AtomicTypes.InsertNode(New, InsertPos);
3679 return QualType(New, 0);
3680}
3681
Richard Smithad762fc2011-04-14 22:09:26 +00003682/// getAutoDeductType - Get type pattern for deducing against 'auto'.
3683QualType ASTContext::getAutoDeductType() const {
3684 if (AutoDeductTy.isNull())
Richard Smith60e141e2013-05-04 07:00:32 +00003685 AutoDeductTy = QualType(
3686 new (*this, TypeAlignment) AutoType(QualType(), /*decltype(auto)*/false,
3687 /*dependent*/false),
3688 0);
Richard Smithad762fc2011-04-14 22:09:26 +00003689 return AutoDeductTy;
3690}
3691
3692/// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'.
3693QualType ASTContext::getAutoRRefDeductType() const {
3694 if (AutoRRefDeductTy.isNull())
3695 AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType());
3696 assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern");
3697 return AutoRRefDeductTy;
3698}
3699
Reid Spencer5f016e22007-07-11 17:01:13 +00003700/// getTagDeclType - Return the unique reference to the type for the
3701/// specified TagDecl (struct/union/class/enum) decl.
Jay Foad4ba2a172011-01-12 09:06:06 +00003702QualType ASTContext::getTagDeclType(const TagDecl *Decl) const {
Ted Kremenekd778f882007-11-26 21:16:01 +00003703 assert (Decl);
Mike Stumpe607ed02009-08-07 18:05:12 +00003704 // FIXME: What is the design on getTagDeclType when it requires casting
3705 // away const? mutable?
3706 return getTypeDeclType(const_cast<TagDecl*>(Decl));
Reid Spencer5f016e22007-07-11 17:01:13 +00003707}
3708
Mike Stump1eb44332009-09-09 15:08:12 +00003709/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
3710/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
3711/// needs to agree with the definition in <stddef.h>.
Anders Carlssona3ccda52009-12-12 00:26:23 +00003712CanQualType ASTContext::getSizeType() const {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003713 return getFromTargetType(Target->getSizeType());
Reid Spencer5f016e22007-07-11 17:01:13 +00003714}
3715
Hans Wennborg29e97cb2011-10-27 08:29:09 +00003716/// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5).
3717CanQualType ASTContext::getIntMaxType() const {
3718 return getFromTargetType(Target->getIntMaxType());
3719}
3720
3721/// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5).
3722CanQualType ASTContext::getUIntMaxType() const {
3723 return getFromTargetType(Target->getUIntMaxType());
3724}
3725
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00003726/// getSignedWCharType - Return the type of "signed wchar_t".
3727/// Used when in C++, as a GCC extension.
3728QualType ASTContext::getSignedWCharType() const {
3729 // FIXME: derive from "Target" ?
3730 return WCharTy;
3731}
3732
3733/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
3734/// Used when in C++, as a GCC extension.
3735QualType ASTContext::getUnsignedWCharType() const {
3736 // FIXME: derive from "Target" ?
3737 return UnsignedIntTy;
3738}
3739
Enea Zaffanella9677eb82013-01-26 17:08:37 +00003740QualType ASTContext::getIntPtrType() const {
3741 return getFromTargetType(Target->getIntPtrType());
3742}
3743
3744QualType ASTContext::getUIntPtrType() const {
3745 return getCorrespondingUnsignedType(getIntPtrType());
3746}
3747
Hans Wennborg29e97cb2011-10-27 08:29:09 +00003748/// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17)
Chris Lattner8b9023b2007-07-13 03:05:23 +00003749/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
3750QualType ASTContext::getPointerDiffType() const {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003751 return getFromTargetType(Target->getPtrDiffType(0));
Chris Lattner8b9023b2007-07-13 03:05:23 +00003752}
3753
Eli Friedman6902e412012-11-27 02:58:24 +00003754/// \brief Return the unique type for "pid_t" defined in
3755/// <sys/types.h>. We need this to compute the correct type for vfork().
3756QualType ASTContext::getProcessIDType() const {
3757 return getFromTargetType(Target->getProcessIDType());
3758}
3759
Chris Lattnere6327742008-04-02 05:18:44 +00003760//===----------------------------------------------------------------------===//
3761// Type Operators
3762//===----------------------------------------------------------------------===//
3763
Jay Foad4ba2a172011-01-12 09:06:06 +00003764CanQualType ASTContext::getCanonicalParamType(QualType T) const {
John McCall54e14c42009-10-22 22:37:11 +00003765 // Push qualifiers into arrays, and then discard any remaining
3766 // qualifiers.
3767 T = getCanonicalType(T);
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00003768 T = getVariableArrayDecayedType(T);
John McCall54e14c42009-10-22 22:37:11 +00003769 const Type *Ty = T.getTypePtr();
John McCall54e14c42009-10-22 22:37:11 +00003770 QualType Result;
3771 if (isa<ArrayType>(Ty)) {
3772 Result = getArrayDecayedType(QualType(Ty,0));
3773 } else if (isa<FunctionType>(Ty)) {
3774 Result = getPointerType(QualType(Ty, 0));
3775 } else {
3776 Result = QualType(Ty, 0);
3777 }
3778
3779 return CanQualType::CreateUnsafe(Result);
3780}
3781
John McCall62c28c82011-01-18 07:41:22 +00003782QualType ASTContext::getUnqualifiedArrayType(QualType type,
3783 Qualifiers &quals) {
3784 SplitQualType splitType = type.getSplitUnqualifiedType();
3785
3786 // FIXME: getSplitUnqualifiedType() actually walks all the way to
3787 // the unqualified desugared type and then drops it on the floor.
3788 // We then have to strip that sugar back off with
3789 // getUnqualifiedDesugaredType(), which is silly.
3790 const ArrayType *AT =
John McCall200fa532012-02-08 00:46:36 +00003791 dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType());
John McCall62c28c82011-01-18 07:41:22 +00003792
3793 // If we don't have an array, just use the results in splitType.
Douglas Gregor9dadd942010-05-17 18:45:21 +00003794 if (!AT) {
John McCall200fa532012-02-08 00:46:36 +00003795 quals = splitType.Quals;
3796 return QualType(splitType.Ty, 0);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003797 }
3798
John McCall62c28c82011-01-18 07:41:22 +00003799 // Otherwise, recurse on the array's element type.
3800 QualType elementType = AT->getElementType();
3801 QualType unqualElementType = getUnqualifiedArrayType(elementType, quals);
3802
3803 // If that didn't change the element type, AT has no qualifiers, so we
3804 // can just use the results in splitType.
3805 if (elementType == unqualElementType) {
3806 assert(quals.empty()); // from the recursive call
John McCall200fa532012-02-08 00:46:36 +00003807 quals = splitType.Quals;
3808 return QualType(splitType.Ty, 0);
John McCall62c28c82011-01-18 07:41:22 +00003809 }
3810
3811 // Otherwise, add in the qualifiers from the outermost type, then
3812 // build the type back up.
John McCall200fa532012-02-08 00:46:36 +00003813 quals.addConsistentQualifiers(splitType.Quals);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003814
Douglas Gregor9dadd942010-05-17 18:45:21 +00003815 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
John McCall62c28c82011-01-18 07:41:22 +00003816 return getConstantArrayType(unqualElementType, CAT->getSize(),
Chandler Carruth28e318c2009-12-29 07:16:59 +00003817 CAT->getSizeModifier(), 0);
3818 }
3819
Douglas Gregor9dadd942010-05-17 18:45:21 +00003820 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
John McCall62c28c82011-01-18 07:41:22 +00003821 return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003822 }
3823
Douglas Gregor9dadd942010-05-17 18:45:21 +00003824 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(AT)) {
John McCall62c28c82011-01-18 07:41:22 +00003825 return getVariableArrayType(unqualElementType,
John McCall3fa5cae2010-10-26 07:05:15 +00003826 VAT->getSizeExpr(),
Douglas Gregor9dadd942010-05-17 18:45:21 +00003827 VAT->getSizeModifier(),
3828 VAT->getIndexTypeCVRQualifiers(),
3829 VAT->getBracketsRange());
3830 }
3831
3832 const DependentSizedArrayType *DSAT = cast<DependentSizedArrayType>(AT);
John McCall62c28c82011-01-18 07:41:22 +00003833 return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(),
Chandler Carruth28e318c2009-12-29 07:16:59 +00003834 DSAT->getSizeModifier(), 0,
3835 SourceRange());
3836}
3837
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003838/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
3839/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
3840/// they point to and return true. If T1 and T2 aren't pointer types
3841/// or pointer-to-member types, or if they are not similar at this
3842/// level, returns false and leaves T1 and T2 unchanged. Top-level
3843/// qualifiers on T1 and T2 are ignored. This function will typically
3844/// be called in a loop that successively "unwraps" pointer and
3845/// pointer-to-member types to compare them at each level.
3846bool ASTContext::UnwrapSimilarPointerTypes(QualType &T1, QualType &T2) {
3847 const PointerType *T1PtrType = T1->getAs<PointerType>(),
3848 *T2PtrType = T2->getAs<PointerType>();
3849 if (T1PtrType && T2PtrType) {
3850 T1 = T1PtrType->getPointeeType();
3851 T2 = T2PtrType->getPointeeType();
3852 return true;
3853 }
3854
3855 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
3856 *T2MPType = T2->getAs<MemberPointerType>();
3857 if (T1MPType && T2MPType &&
3858 hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0),
3859 QualType(T2MPType->getClass(), 0))) {
3860 T1 = T1MPType->getPointeeType();
3861 T2 = T2MPType->getPointeeType();
3862 return true;
3863 }
3864
David Blaikie4e4d0842012-03-11 07:00:24 +00003865 if (getLangOpts().ObjC1) {
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003866 const ObjCObjectPointerType *T1OPType = T1->getAs<ObjCObjectPointerType>(),
3867 *T2OPType = T2->getAs<ObjCObjectPointerType>();
3868 if (T1OPType && T2OPType) {
3869 T1 = T1OPType->getPointeeType();
3870 T2 = T2OPType->getPointeeType();
3871 return true;
3872 }
3873 }
3874
3875 // FIXME: Block pointers, too?
3876
3877 return false;
3878}
3879
Jay Foad4ba2a172011-01-12 09:06:06 +00003880DeclarationNameInfo
3881ASTContext::getNameForTemplate(TemplateName Name,
3882 SourceLocation NameLoc) const {
John McCall14606042011-06-30 08:33:18 +00003883 switch (Name.getKind()) {
3884 case TemplateName::QualifiedTemplate:
3885 case TemplateName::Template:
Abramo Bagnara25777432010-08-11 22:01:17 +00003886 // DNInfo work in progress: CHECKME: what about DNLoc?
John McCall14606042011-06-30 08:33:18 +00003887 return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(),
3888 NameLoc);
Abramo Bagnara25777432010-08-11 22:01:17 +00003889
John McCall14606042011-06-30 08:33:18 +00003890 case TemplateName::OverloadedTemplate: {
3891 OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate();
3892 // DNInfo work in progress: CHECKME: what about DNLoc?
3893 return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc);
3894 }
3895
3896 case TemplateName::DependentTemplate: {
3897 DependentTemplateName *DTN = Name.getAsDependentTemplateName();
Abramo Bagnara25777432010-08-11 22:01:17 +00003898 DeclarationName DName;
John McCall80ad16f2009-11-24 18:42:40 +00003899 if (DTN->isIdentifier()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00003900 DName = DeclarationNames.getIdentifier(DTN->getIdentifier());
3901 return DeclarationNameInfo(DName, NameLoc);
John McCall80ad16f2009-11-24 18:42:40 +00003902 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00003903 DName = DeclarationNames.getCXXOperatorName(DTN->getOperator());
3904 // DNInfo work in progress: FIXME: source locations?
3905 DeclarationNameLoc DNLoc;
3906 DNLoc.CXXOperatorName.BeginOpNameLoc = SourceLocation().getRawEncoding();
3907 DNLoc.CXXOperatorName.EndOpNameLoc = SourceLocation().getRawEncoding();
3908 return DeclarationNameInfo(DName, NameLoc, DNLoc);
John McCall80ad16f2009-11-24 18:42:40 +00003909 }
3910 }
3911
John McCall14606042011-06-30 08:33:18 +00003912 case TemplateName::SubstTemplateTemplateParm: {
3913 SubstTemplateTemplateParmStorage *subst
3914 = Name.getAsSubstTemplateTemplateParm();
3915 return DeclarationNameInfo(subst->getParameter()->getDeclName(),
3916 NameLoc);
3917 }
3918
3919 case TemplateName::SubstTemplateTemplateParmPack: {
3920 SubstTemplateTemplateParmPackStorage *subst
3921 = Name.getAsSubstTemplateTemplateParmPack();
3922 return DeclarationNameInfo(subst->getParameterPack()->getDeclName(),
3923 NameLoc);
3924 }
3925 }
3926
3927 llvm_unreachable("bad template name kind!");
John McCall80ad16f2009-11-24 18:42:40 +00003928}
3929
Jay Foad4ba2a172011-01-12 09:06:06 +00003930TemplateName ASTContext::getCanonicalTemplateName(TemplateName Name) const {
John McCall14606042011-06-30 08:33:18 +00003931 switch (Name.getKind()) {
3932 case TemplateName::QualifiedTemplate:
3933 case TemplateName::Template: {
3934 TemplateDecl *Template = Name.getAsTemplateDecl();
Douglas Gregor3e1274f2010-06-16 21:09:37 +00003935 if (TemplateTemplateParmDecl *TTP
John McCall14606042011-06-30 08:33:18 +00003936 = dyn_cast<TemplateTemplateParmDecl>(Template))
Douglas Gregor3e1274f2010-06-16 21:09:37 +00003937 Template = getCanonicalTemplateTemplateParmDecl(TTP);
3938
3939 // The canonical template name is the canonical template declaration.
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00003940 return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl()));
Douglas Gregor3e1274f2010-06-16 21:09:37 +00003941 }
Douglas Gregor25a3ef72009-05-07 06:41:52 +00003942
John McCall14606042011-06-30 08:33:18 +00003943 case TemplateName::OverloadedTemplate:
3944 llvm_unreachable("cannot canonicalize overloaded template");
Mike Stump1eb44332009-09-09 15:08:12 +00003945
John McCall14606042011-06-30 08:33:18 +00003946 case TemplateName::DependentTemplate: {
3947 DependentTemplateName *DTN = Name.getAsDependentTemplateName();
3948 assert(DTN && "Non-dependent template names must refer to template decls.");
3949 return DTN->CanonicalTemplateName;
3950 }
3951
3952 case TemplateName::SubstTemplateTemplateParm: {
3953 SubstTemplateTemplateParmStorage *subst
3954 = Name.getAsSubstTemplateTemplateParm();
3955 return getCanonicalTemplateName(subst->getReplacement());
3956 }
3957
3958 case TemplateName::SubstTemplateTemplateParmPack: {
3959 SubstTemplateTemplateParmPackStorage *subst
3960 = Name.getAsSubstTemplateTemplateParmPack();
3961 TemplateTemplateParmDecl *canonParameter
3962 = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack());
3963 TemplateArgument canonArgPack
3964 = getCanonicalTemplateArgument(subst->getArgumentPack());
3965 return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack);
3966 }
3967 }
3968
3969 llvm_unreachable("bad template name!");
Douglas Gregor25a3ef72009-05-07 06:41:52 +00003970}
3971
Douglas Gregordb0d4b72009-11-11 23:06:43 +00003972bool ASTContext::hasSameTemplateName(TemplateName X, TemplateName Y) {
3973 X = getCanonicalTemplateName(X);
3974 Y = getCanonicalTemplateName(Y);
3975 return X.getAsVoidPointer() == Y.getAsVoidPointer();
3976}
3977
Mike Stump1eb44332009-09-09 15:08:12 +00003978TemplateArgument
Jay Foad4ba2a172011-01-12 09:06:06 +00003979ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const {
Douglas Gregor1275ae02009-07-28 23:00:59 +00003980 switch (Arg.getKind()) {
3981 case TemplateArgument::Null:
3982 return Arg;
Mike Stump1eb44332009-09-09 15:08:12 +00003983
Douglas Gregor1275ae02009-07-28 23:00:59 +00003984 case TemplateArgument::Expression:
Douglas Gregor1275ae02009-07-28 23:00:59 +00003985 return Arg;
Mike Stump1eb44332009-09-09 15:08:12 +00003986
Douglas Gregord2008e22012-04-06 22:40:38 +00003987 case TemplateArgument::Declaration: {
Eli Friedmand7a6b162012-09-26 02:36:12 +00003988 ValueDecl *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl());
3989 return TemplateArgument(D, Arg.isDeclForReferenceParam());
Douglas Gregord2008e22012-04-06 22:40:38 +00003990 }
Mike Stump1eb44332009-09-09 15:08:12 +00003991
Eli Friedmand7a6b162012-09-26 02:36:12 +00003992 case TemplateArgument::NullPtr:
3993 return TemplateArgument(getCanonicalType(Arg.getNullPtrType()),
3994 /*isNullPtr*/true);
3995
Douglas Gregor788cd062009-11-11 01:00:40 +00003996 case TemplateArgument::Template:
3997 return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate()));
Douglas Gregora7fc9012011-01-05 18:58:31 +00003998
3999 case TemplateArgument::TemplateExpansion:
4000 return TemplateArgument(getCanonicalTemplateName(
4001 Arg.getAsTemplateOrTemplatePattern()),
Douglas Gregor2be29f42011-01-14 23:41:42 +00004002 Arg.getNumTemplateExpansions());
Douglas Gregora7fc9012011-01-05 18:58:31 +00004003
Douglas Gregor1275ae02009-07-28 23:00:59 +00004004 case TemplateArgument::Integral:
Benjamin Kramer85524372012-06-07 15:09:51 +00004005 return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType()));
Mike Stump1eb44332009-09-09 15:08:12 +00004006
Douglas Gregor1275ae02009-07-28 23:00:59 +00004007 case TemplateArgument::Type:
John McCall833ca992009-10-29 08:12:44 +00004008 return TemplateArgument(getCanonicalType(Arg.getAsType()));
Mike Stump1eb44332009-09-09 15:08:12 +00004009
Douglas Gregor1275ae02009-07-28 23:00:59 +00004010 case TemplateArgument::Pack: {
Douglas Gregor87dd6972010-12-20 16:52:59 +00004011 if (Arg.pack_size() == 0)
4012 return Arg;
4013
Douglas Gregor910f8002010-11-07 23:05:16 +00004014 TemplateArgument *CanonArgs
4015 = new (*this) TemplateArgument[Arg.pack_size()];
Douglas Gregor1275ae02009-07-28 23:00:59 +00004016 unsigned Idx = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004017 for (TemplateArgument::pack_iterator A = Arg.pack_begin(),
Douglas Gregor1275ae02009-07-28 23:00:59 +00004018 AEnd = Arg.pack_end();
4019 A != AEnd; (void)++A, ++Idx)
4020 CanonArgs[Idx] = getCanonicalTemplateArgument(*A);
Mike Stump1eb44332009-09-09 15:08:12 +00004021
Douglas Gregor910f8002010-11-07 23:05:16 +00004022 return TemplateArgument(CanonArgs, Arg.pack_size());
Douglas Gregor1275ae02009-07-28 23:00:59 +00004023 }
4024 }
4025
4026 // Silence GCC warning
David Blaikieb219cfc2011-09-23 05:06:16 +00004027 llvm_unreachable("Unhandled template argument kind");
Douglas Gregor1275ae02009-07-28 23:00:59 +00004028}
4029
Douglas Gregord57959a2009-03-27 23:10:48 +00004030NestedNameSpecifier *
Jay Foad4ba2a172011-01-12 09:06:06 +00004031ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const {
Mike Stump1eb44332009-09-09 15:08:12 +00004032 if (!NNS)
Douglas Gregord57959a2009-03-27 23:10:48 +00004033 return 0;
4034
4035 switch (NNS->getKind()) {
4036 case NestedNameSpecifier::Identifier:
4037 // Canonicalize the prefix but keep the identifier the same.
Mike Stump1eb44332009-09-09 15:08:12 +00004038 return NestedNameSpecifier::Create(*this,
Douglas Gregord57959a2009-03-27 23:10:48 +00004039 getCanonicalNestedNameSpecifier(NNS->getPrefix()),
4040 NNS->getAsIdentifier());
4041
4042 case NestedNameSpecifier::Namespace:
4043 // A namespace is canonical; build a nested-name-specifier with
4044 // this namespace and no prefix.
Douglas Gregor14aba762011-02-24 02:36:08 +00004045 return NestedNameSpecifier::Create(*this, 0,
4046 NNS->getAsNamespace()->getOriginalNamespace());
4047
4048 case NestedNameSpecifier::NamespaceAlias:
4049 // A namespace is canonical; build a nested-name-specifier with
4050 // this namespace and no prefix.
4051 return NestedNameSpecifier::Create(*this, 0,
4052 NNS->getAsNamespaceAlias()->getNamespace()
4053 ->getOriginalNamespace());
Douglas Gregord57959a2009-03-27 23:10:48 +00004054
4055 case NestedNameSpecifier::TypeSpec:
4056 case NestedNameSpecifier::TypeSpecWithTemplate: {
4057 QualType T = getCanonicalType(QualType(NNS->getAsType(), 0));
Douglas Gregor264bf662010-11-04 00:09:33 +00004058
4059 // If we have some kind of dependent-named type (e.g., "typename T::type"),
4060 // break it apart into its prefix and identifier, then reconsititute those
4061 // as the canonical nested-name-specifier. This is required to canonicalize
4062 // a dependent nested-name-specifier involving typedefs of dependent-name
4063 // types, e.g.,
4064 // typedef typename T::type T1;
4065 // typedef typename T1::type T2;
Eli Friedman16412ef2012-03-03 04:09:56 +00004066 if (const DependentNameType *DNT = T->getAs<DependentNameType>())
4067 return NestedNameSpecifier::Create(*this, DNT->getQualifier(),
Douglas Gregor264bf662010-11-04 00:09:33 +00004068 const_cast<IdentifierInfo *>(DNT->getIdentifier()));
Douglas Gregor264bf662010-11-04 00:09:33 +00004069
Eli Friedman16412ef2012-03-03 04:09:56 +00004070 // Otherwise, just canonicalize the type, and force it to be a TypeSpec.
4071 // FIXME: Why are TypeSpec and TypeSpecWithTemplate distinct in the
4072 // first place?
John McCall3b657512011-01-19 10:06:00 +00004073 return NestedNameSpecifier::Create(*this, 0, false,
4074 const_cast<Type*>(T.getTypePtr()));
Douglas Gregord57959a2009-03-27 23:10:48 +00004075 }
4076
4077 case NestedNameSpecifier::Global:
4078 // The global specifier is canonical and unique.
4079 return NNS;
4080 }
4081
David Blaikie7530c032012-01-17 06:56:22 +00004082 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregord57959a2009-03-27 23:10:48 +00004083}
4084
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004085
Jay Foad4ba2a172011-01-12 09:06:06 +00004086const ArrayType *ASTContext::getAsArrayType(QualType T) const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004087 // Handle the non-qualified case efficiently.
Douglas Gregora4923eb2009-11-16 21:35:15 +00004088 if (!T.hasLocalQualifiers()) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004089 // Handle the common positive case fast.
4090 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
4091 return AT;
4092 }
Mike Stump1eb44332009-09-09 15:08:12 +00004093
John McCall0953e762009-09-24 19:53:00 +00004094 // Handle the common negative case fast.
John McCall3b657512011-01-19 10:06:00 +00004095 if (!isa<ArrayType>(T.getCanonicalType()))
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004096 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004097
John McCall0953e762009-09-24 19:53:00 +00004098 // Apply any qualifiers from the array type to the element type. This
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004099 // implements C99 6.7.3p8: "If the specification of an array type includes
4100 // any type qualifiers, the element type is so qualified, not the array type."
Mike Stump1eb44332009-09-09 15:08:12 +00004101
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004102 // If we get here, we either have type qualifiers on the type, or we have
4103 // sugar such as a typedef in the way. If we have type qualifiers on the type
Douglas Gregor50d62d12009-08-05 05:36:45 +00004104 // we must propagate them down into the element type.
Mike Stump1eb44332009-09-09 15:08:12 +00004105
John McCall3b657512011-01-19 10:06:00 +00004106 SplitQualType split = T.getSplitDesugaredType();
John McCall200fa532012-02-08 00:46:36 +00004107 Qualifiers qs = split.Quals;
Mike Stump1eb44332009-09-09 15:08:12 +00004108
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004109 // If we have a simple case, just return now.
John McCall200fa532012-02-08 00:46:36 +00004110 const ArrayType *ATy = dyn_cast<ArrayType>(split.Ty);
John McCall3b657512011-01-19 10:06:00 +00004111 if (ATy == 0 || qs.empty())
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004112 return ATy;
Mike Stump1eb44332009-09-09 15:08:12 +00004113
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004114 // Otherwise, we have an array and we have qualifiers on it. Push the
4115 // qualifiers into the array element type and return a new array type.
John McCall3b657512011-01-19 10:06:00 +00004116 QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs);
Mike Stump1eb44332009-09-09 15:08:12 +00004117
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004118 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
4119 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
4120 CAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004121 CAT->getIndexTypeCVRQualifiers()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004122 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
4123 return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
4124 IAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004125 IAT->getIndexTypeCVRQualifiers()));
Douglas Gregor898574e2008-12-05 23:32:09 +00004126
Mike Stump1eb44332009-09-09 15:08:12 +00004127 if (const DependentSizedArrayType *DSAT
Douglas Gregor898574e2008-12-05 23:32:09 +00004128 = dyn_cast<DependentSizedArrayType>(ATy))
4129 return cast<ArrayType>(
Mike Stump1eb44332009-09-09 15:08:12 +00004130 getDependentSizedArrayType(NewEltTy,
John McCall3fa5cae2010-10-26 07:05:15 +00004131 DSAT->getSizeExpr(),
Douglas Gregor898574e2008-12-05 23:32:09 +00004132 DSAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004133 DSAT->getIndexTypeCVRQualifiers(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004134 DSAT->getBracketsRange()));
Mike Stump1eb44332009-09-09 15:08:12 +00004135
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004136 const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004137 return cast<ArrayType>(getVariableArrayType(NewEltTy,
John McCall3fa5cae2010-10-26 07:05:15 +00004138 VAT->getSizeExpr(),
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004139 VAT->getSizeModifier(),
John McCall0953e762009-09-24 19:53:00 +00004140 VAT->getIndexTypeCVRQualifiers(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004141 VAT->getBracketsRange()));
Chris Lattner77c96472008-04-06 22:41:35 +00004142}
4143
Abramo Bagnaraad9689f2012-05-17 12:44:05 +00004144QualType ASTContext::getAdjustedParameterType(QualType T) const {
Douglas Gregor79e6bd32011-07-12 04:42:08 +00004145 // C99 6.7.5.3p7:
4146 // A declaration of a parameter as "array of type" shall be
4147 // adjusted to "qualified pointer to type", where the type
4148 // qualifiers (if any) are those specified within the [ and ] of
4149 // the array type derivation.
4150 if (T->isArrayType())
4151 return getArrayDecayedType(T);
4152
4153 // C99 6.7.5.3p8:
4154 // A declaration of a parameter as "function returning type"
4155 // shall be adjusted to "pointer to function returning type", as
4156 // in 6.3.2.1.
4157 if (T->isFunctionType())
4158 return getPointerType(T);
4159
4160 return T;
4161}
4162
Abramo Bagnaraad9689f2012-05-17 12:44:05 +00004163QualType ASTContext::getSignatureParameterType(QualType T) const {
Douglas Gregor79e6bd32011-07-12 04:42:08 +00004164 T = getVariableArrayDecayedType(T);
4165 T = getAdjustedParameterType(T);
4166 return T.getUnqualifiedType();
4167}
4168
Chris Lattnere6327742008-04-02 05:18:44 +00004169/// getArrayDecayedType - Return the properly qualified result of decaying the
4170/// specified array type to a pointer. This operation is non-trivial when
4171/// handling typedefs etc. The canonical type of "T" must be an array type,
4172/// this returns a pointer to a properly qualified element of the array.
4173///
4174/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
Jay Foad4ba2a172011-01-12 09:06:06 +00004175QualType ASTContext::getArrayDecayedType(QualType Ty) const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004176 // Get the element type with 'getAsArrayType' so that we don't lose any
4177 // typedefs in the element type of the array. This also handles propagation
4178 // of type qualifiers from the array type into the element type if present
4179 // (C99 6.7.3p8).
4180 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
4181 assert(PrettyArrayType && "Not an array type!");
Mike Stump1eb44332009-09-09 15:08:12 +00004182
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004183 QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
Chris Lattnere6327742008-04-02 05:18:44 +00004184
4185 // int x[restrict 4] -> int *restrict
John McCall0953e762009-09-24 19:53:00 +00004186 return getQualifiedType(PtrTy, PrettyArrayType->getIndexTypeQualifiers());
Chris Lattnere6327742008-04-02 05:18:44 +00004187}
4188
John McCall3b657512011-01-19 10:06:00 +00004189QualType ASTContext::getBaseElementType(const ArrayType *array) const {
4190 return getBaseElementType(array->getElementType());
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00004191}
4192
John McCall3b657512011-01-19 10:06:00 +00004193QualType ASTContext::getBaseElementType(QualType type) const {
4194 Qualifiers qs;
4195 while (true) {
4196 SplitQualType split = type.getSplitDesugaredType();
John McCall200fa532012-02-08 00:46:36 +00004197 const ArrayType *array = split.Ty->getAsArrayTypeUnsafe();
John McCall3b657512011-01-19 10:06:00 +00004198 if (!array) break;
Mike Stump1eb44332009-09-09 15:08:12 +00004199
John McCall3b657512011-01-19 10:06:00 +00004200 type = array->getElementType();
John McCall200fa532012-02-08 00:46:36 +00004201 qs.addConsistentQualifiers(split.Quals);
John McCall3b657512011-01-19 10:06:00 +00004202 }
Mike Stump1eb44332009-09-09 15:08:12 +00004203
John McCall3b657512011-01-19 10:06:00 +00004204 return getQualifiedType(type, qs);
Anders Carlsson6183a992008-12-21 03:44:36 +00004205}
4206
Fariborz Jahanian0de78992009-08-21 16:31:06 +00004207/// getConstantArrayElementCount - Returns number of constant array elements.
Mike Stump1eb44332009-09-09 15:08:12 +00004208uint64_t
Fariborz Jahanian0de78992009-08-21 16:31:06 +00004209ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA) const {
4210 uint64_t ElementCount = 1;
4211 do {
4212 ElementCount *= CA->getSize().getZExtValue();
Richard Smithd5e83942012-12-06 03:04:50 +00004213 CA = dyn_cast_or_null<ConstantArrayType>(
4214 CA->getElementType()->getAsArrayTypeUnsafe());
Fariborz Jahanian0de78992009-08-21 16:31:06 +00004215 } while (CA);
4216 return ElementCount;
4217}
4218
Reid Spencer5f016e22007-07-11 17:01:13 +00004219/// getFloatingRank - Return a relative rank for floating point types.
4220/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnera75cea32008-04-06 23:38:49 +00004221static FloatingRank getFloatingRank(QualType T) {
John McCall183700f2009-09-21 23:43:11 +00004222 if (const ComplexType *CT = T->getAs<ComplexType>())
Reid Spencer5f016e22007-07-11 17:01:13 +00004223 return getFloatingRank(CT->getElementType());
Chris Lattnera75cea32008-04-06 23:38:49 +00004224
John McCall183700f2009-09-21 23:43:11 +00004225 assert(T->getAs<BuiltinType>() && "getFloatingRank(): not a floating type");
4226 switch (T->getAs<BuiltinType>()->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00004227 default: llvm_unreachable("getFloatingRank(): not a floating type");
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004228 case BuiltinType::Half: return HalfRank;
Reid Spencer5f016e22007-07-11 17:01:13 +00004229 case BuiltinType::Float: return FloatRank;
4230 case BuiltinType::Double: return DoubleRank;
4231 case BuiltinType::LongDouble: return LongDoubleRank;
4232 }
4233}
4234
Mike Stump1eb44332009-09-09 15:08:12 +00004235/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
4236/// point or a complex type (based on typeDomain/typeSize).
Steve Naroff716c7302007-08-27 01:41:48 +00004237/// 'typeDomain' is a real floating point or complex type.
4238/// 'typeSize' is a real floating point or complex type.
Chris Lattner1361b112008-04-06 23:58:54 +00004239QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
4240 QualType Domain) const {
4241 FloatingRank EltRank = getFloatingRank(Size);
4242 if (Domain->isComplexType()) {
4243 switch (EltRank) {
David Blaikie561d3ab2012-01-17 02:30:50 +00004244 case HalfRank: llvm_unreachable("Complex half is not supported");
Steve Narofff1448a02007-08-27 01:27:54 +00004245 case FloatRank: return FloatComplexTy;
4246 case DoubleRank: return DoubleComplexTy;
4247 case LongDoubleRank: return LongDoubleComplexTy;
4248 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004249 }
Chris Lattner1361b112008-04-06 23:58:54 +00004250
4251 assert(Domain->isRealFloatingType() && "Unknown domain!");
4252 switch (EltRank) {
Joey Gouly19dbb202013-01-23 11:56:20 +00004253 case HalfRank: return HalfTy;
Chris Lattner1361b112008-04-06 23:58:54 +00004254 case FloatRank: return FloatTy;
4255 case DoubleRank: return DoubleTy;
4256 case LongDoubleRank: return LongDoubleTy;
Steve Narofff1448a02007-08-27 01:27:54 +00004257 }
David Blaikie561d3ab2012-01-17 02:30:50 +00004258 llvm_unreachable("getFloatingRank(): illegal value for rank");
Reid Spencer5f016e22007-07-11 17:01:13 +00004259}
4260
Chris Lattner7cfeb082008-04-06 23:55:33 +00004261/// getFloatingTypeOrder - Compare the rank of the two specified floating
4262/// point types, ignoring the domain of the type (i.e. 'double' ==
4263/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
Mike Stump1eb44332009-09-09 15:08:12 +00004264/// LHS < RHS, return -1.
Jay Foad4ba2a172011-01-12 09:06:06 +00004265int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const {
Chris Lattnera75cea32008-04-06 23:38:49 +00004266 FloatingRank LHSR = getFloatingRank(LHS);
4267 FloatingRank RHSR = getFloatingRank(RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00004268
Chris Lattnera75cea32008-04-06 23:38:49 +00004269 if (LHSR == RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00004270 return 0;
Chris Lattnera75cea32008-04-06 23:38:49 +00004271 if (LHSR > RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00004272 return 1;
4273 return -1;
Reid Spencer5f016e22007-07-11 17:01:13 +00004274}
4275
Chris Lattnerf52ab252008-04-06 22:59:24 +00004276/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
4277/// routine will assert if passed a built-in type that isn't an integer or enum,
4278/// or if it is not canonicalized.
John McCallf4c73712011-01-19 06:33:43 +00004279unsigned ASTContext::getIntegerRank(const Type *T) const {
John McCall467b27b2009-10-22 20:10:53 +00004280 assert(T->isCanonicalUnqualified() && "T should be canonicalized");
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00004281
Chris Lattnerf52ab252008-04-06 22:59:24 +00004282 switch (cast<BuiltinType>(T)->getKind()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00004283 default: llvm_unreachable("getIntegerRank(): not a built-in integer");
Chris Lattner7cfeb082008-04-06 23:55:33 +00004284 case BuiltinType::Bool:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004285 return 1 + (getIntWidth(BoolTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004286 case BuiltinType::Char_S:
4287 case BuiltinType::Char_U:
4288 case BuiltinType::SChar:
4289 case BuiltinType::UChar:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004290 return 2 + (getIntWidth(CharTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004291 case BuiltinType::Short:
4292 case BuiltinType::UShort:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004293 return 3 + (getIntWidth(ShortTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004294 case BuiltinType::Int:
4295 case BuiltinType::UInt:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004296 return 4 + (getIntWidth(IntTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004297 case BuiltinType::Long:
4298 case BuiltinType::ULong:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004299 return 5 + (getIntWidth(LongTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00004300 case BuiltinType::LongLong:
4301 case BuiltinType::ULongLong:
Eli Friedmanf98aba32009-02-13 02:31:07 +00004302 return 6 + (getIntWidth(LongLongTy) << 3);
Chris Lattner2df9ced2009-04-30 02:43:43 +00004303 case BuiltinType::Int128:
4304 case BuiltinType::UInt128:
4305 return 7 + (getIntWidth(Int128Ty) << 3);
Chris Lattnerf52ab252008-04-06 22:59:24 +00004306 }
4307}
4308
Eli Friedman04e83572009-08-20 04:21:42 +00004309/// \brief Whether this is a promotable bitfield reference according
4310/// to C99 6.3.1.1p2, bullet 2 (and GCC extensions).
4311///
4312/// \returns the type this bit-field will promote to, or NULL if no
4313/// promotion occurs.
Jay Foad4ba2a172011-01-12 09:06:06 +00004314QualType ASTContext::isPromotableBitField(Expr *E) const {
Douglas Gregorceafbde2010-05-24 20:13:53 +00004315 if (E->isTypeDependent() || E->isValueDependent())
4316 return QualType();
4317
John McCall993f43f2013-05-06 21:39:12 +00004318 FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields?
Eli Friedman04e83572009-08-20 04:21:42 +00004319 if (!Field)
4320 return QualType();
4321
4322 QualType FT = Field->getType();
4323
Richard Smitha6b8b2c2011-10-10 18:28:20 +00004324 uint64_t BitWidth = Field->getBitWidthValue(*this);
Eli Friedman04e83572009-08-20 04:21:42 +00004325 uint64_t IntSize = getTypeSize(IntTy);
4326 // GCC extension compatibility: if the bit-field size is less than or equal
4327 // to the size of int, it gets promoted no matter what its type is.
4328 // For instance, unsigned long bf : 4 gets promoted to signed int.
4329 if (BitWidth < IntSize)
4330 return IntTy;
4331
4332 if (BitWidth == IntSize)
4333 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
4334
4335 // Types bigger than int are not subject to promotions, and therefore act
4336 // like the base type.
4337 // FIXME: This doesn't quite match what gcc does, but what gcc does here
4338 // is ridiculous.
4339 return QualType();
4340}
4341
Eli Friedmana95d7572009-08-19 07:44:53 +00004342/// getPromotedIntegerType - Returns the type that Promotable will
4343/// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
4344/// integer type.
Jay Foad4ba2a172011-01-12 09:06:06 +00004345QualType ASTContext::getPromotedIntegerType(QualType Promotable) const {
Eli Friedmana95d7572009-08-19 07:44:53 +00004346 assert(!Promotable.isNull());
4347 assert(Promotable->isPromotableIntegerType());
John McCall842aef82009-12-09 09:09:27 +00004348 if (const EnumType *ET = Promotable->getAs<EnumType>())
4349 return ET->getDecl()->getPromotionType();
Eli Friedman68a2dc42011-10-26 07:22:48 +00004350
4351 if (const BuiltinType *BT = Promotable->getAs<BuiltinType>()) {
4352 // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t
4353 // (3.9.1) can be converted to a prvalue of the first of the following
4354 // types that can represent all the values of its underlying type:
4355 // int, unsigned int, long int, unsigned long int, long long int, or
4356 // unsigned long long int [...]
4357 // FIXME: Is there some better way to compute this?
4358 if (BT->getKind() == BuiltinType::WChar_S ||
4359 BT->getKind() == BuiltinType::WChar_U ||
4360 BT->getKind() == BuiltinType::Char16 ||
4361 BT->getKind() == BuiltinType::Char32) {
4362 bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S;
4363 uint64_t FromSize = getTypeSize(BT);
4364 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy,
4365 LongLongTy, UnsignedLongLongTy };
4366 for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) {
4367 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]);
4368 if (FromSize < ToSize ||
4369 (FromSize == ToSize &&
4370 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType()))
4371 return PromoteTypes[Idx];
4372 }
4373 llvm_unreachable("char type should fit into long long");
4374 }
4375 }
4376
4377 // At this point, we should have a signed or unsigned integer type.
Eli Friedmana95d7572009-08-19 07:44:53 +00004378 if (Promotable->isSignedIntegerType())
4379 return IntTy;
Eli Friedman5b64e772012-11-15 01:21:59 +00004380 uint64_t PromotableSize = getIntWidth(Promotable);
4381 uint64_t IntSize = getIntWidth(IntTy);
Eli Friedmana95d7572009-08-19 07:44:53 +00004382 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
4383 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
4384}
4385
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +00004386/// \brief Recurses in pointer/array types until it finds an objc retainable
4387/// type and returns its ownership.
4388Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const {
4389 while (!T.isNull()) {
4390 if (T.getObjCLifetime() != Qualifiers::OCL_None)
4391 return T.getObjCLifetime();
4392 if (T->isArrayType())
4393 T = getBaseElementType(T);
4394 else if (const PointerType *PT = T->getAs<PointerType>())
4395 T = PT->getPointeeType();
4396 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
Argyrios Kyrtzidis28445f02011-07-01 23:01:46 +00004397 T = RT->getPointeeType();
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +00004398 else
4399 break;
4400 }
4401
4402 return Qualifiers::OCL_None;
4403}
4404
Mike Stump1eb44332009-09-09 15:08:12 +00004405/// getIntegerTypeOrder - Returns the highest ranked integer type:
Chris Lattner7cfeb082008-04-06 23:55:33 +00004406/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
Mike Stump1eb44332009-09-09 15:08:12 +00004407/// LHS < RHS, return -1.
Jay Foad4ba2a172011-01-12 09:06:06 +00004408int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const {
John McCallf4c73712011-01-19 06:33:43 +00004409 const Type *LHSC = getCanonicalType(LHS).getTypePtr();
4410 const Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner7cfeb082008-04-06 23:55:33 +00004411 if (LHSC == RHSC) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004412
Chris Lattnerf52ab252008-04-06 22:59:24 +00004413 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
4414 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +00004415
Chris Lattner7cfeb082008-04-06 23:55:33 +00004416 unsigned LHSRank = getIntegerRank(LHSC);
4417 unsigned RHSRank = getIntegerRank(RHSC);
Mike Stump1eb44332009-09-09 15:08:12 +00004418
Chris Lattner7cfeb082008-04-06 23:55:33 +00004419 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
4420 if (LHSRank == RHSRank) return 0;
4421 return LHSRank > RHSRank ? 1 : -1;
4422 }
Mike Stump1eb44332009-09-09 15:08:12 +00004423
Chris Lattner7cfeb082008-04-06 23:55:33 +00004424 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
4425 if (LHSUnsigned) {
4426 // If the unsigned [LHS] type is larger, return it.
4427 if (LHSRank >= RHSRank)
4428 return 1;
Mike Stump1eb44332009-09-09 15:08:12 +00004429
Chris Lattner7cfeb082008-04-06 23:55:33 +00004430 // If the signed type can represent all values of the unsigned type, it
4431 // wins. Because we are dealing with 2's complement and types that are
Mike Stump1eb44332009-09-09 15:08:12 +00004432 // powers of two larger than each other, this is always safe.
Chris Lattner7cfeb082008-04-06 23:55:33 +00004433 return -1;
4434 }
Chris Lattnerf52ab252008-04-06 22:59:24 +00004435
Chris Lattner7cfeb082008-04-06 23:55:33 +00004436 // If the unsigned [RHS] type is larger, return it.
4437 if (RHSRank >= LHSRank)
4438 return -1;
Mike Stump1eb44332009-09-09 15:08:12 +00004439
Chris Lattner7cfeb082008-04-06 23:55:33 +00004440 // If the signed type can represent all values of the unsigned type, it
4441 // wins. Because we are dealing with 2's complement and types that are
Mike Stump1eb44332009-09-09 15:08:12 +00004442 // powers of two larger than each other, this is always safe.
Chris Lattner7cfeb082008-04-06 23:55:33 +00004443 return 1;
Reid Spencer5f016e22007-07-11 17:01:13 +00004444}
Anders Carlsson71993dd2007-08-17 05:31:46 +00004445
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004446static RecordDecl *
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004447CreateRecordDecl(const ASTContext &Ctx, RecordDecl::TagKind TK,
4448 DeclContext *DC, IdentifierInfo *Id) {
4449 SourceLocation Loc;
David Blaikie4e4d0842012-03-11 07:00:24 +00004450 if (Ctx.getLangOpts().CPlusPlus)
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004451 return CXXRecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004452 else
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004453 return RecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004454}
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004455
Mike Stump1eb44332009-09-09 15:08:12 +00004456// getCFConstantStringType - Return the type used for constant CFStrings.
Jay Foad4ba2a172011-01-12 09:06:06 +00004457QualType ASTContext::getCFConstantStringType() const {
Anders Carlsson71993dd2007-08-17 05:31:46 +00004458 if (!CFConstantStringTypeDecl) {
Mike Stump1eb44332009-09-09 15:08:12 +00004459 CFConstantStringTypeDecl =
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004460 CreateRecordDecl(*this, TTK_Struct, TUDecl,
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004461 &Idents.get("NSConstantString"));
John McCall5cfa0112010-02-05 01:33:36 +00004462 CFConstantStringTypeDecl->startDefinition();
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004463
Anders Carlssonf06273f2007-11-19 00:25:30 +00004464 QualType FieldTypes[4];
Mike Stump1eb44332009-09-09 15:08:12 +00004465
Anders Carlsson71993dd2007-08-17 05:31:46 +00004466 // const int *isa;
John McCall0953e762009-09-24 19:53:00 +00004467 FieldTypes[0] = getPointerType(IntTy.withConst());
Anders Carlssonf06273f2007-11-19 00:25:30 +00004468 // int flags;
4469 FieldTypes[1] = IntTy;
Anders Carlsson71993dd2007-08-17 05:31:46 +00004470 // const char *str;
John McCall0953e762009-09-24 19:53:00 +00004471 FieldTypes[2] = getPointerType(CharTy.withConst());
Anders Carlsson71993dd2007-08-17 05:31:46 +00004472 // long length;
Mike Stump1eb44332009-09-09 15:08:12 +00004473 FieldTypes[3] = LongTy;
4474
Anders Carlsson71993dd2007-08-17 05:31:46 +00004475 // Create fields
Douglas Gregor44b43212008-12-11 16:49:14 +00004476 for (unsigned i = 0; i < 4; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +00004477 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004478 SourceLocation(),
Douglas Gregor44b43212008-12-11 16:49:14 +00004479 SourceLocation(), 0,
John McCalla93c9342009-12-07 02:54:59 +00004480 FieldTypes[i], /*TInfo=*/0,
Mike Stump1eb44332009-09-09 15:08:12 +00004481 /*BitWidth=*/0,
Richard Smith7a614d82011-06-11 17:19:42 +00004482 /*Mutable=*/false,
Richard Smithca523302012-06-10 03:12:00 +00004483 ICIS_NoInit);
John McCall2888b652010-04-30 21:35:41 +00004484 Field->setAccess(AS_public);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004485 CFConstantStringTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00004486 }
4487
Douglas Gregor838db382010-02-11 01:19:42 +00004488 CFConstantStringTypeDecl->completeDefinition();
Anders Carlsson71993dd2007-08-17 05:31:46 +00004489 }
Mike Stump1eb44332009-09-09 15:08:12 +00004490
Anders Carlsson71993dd2007-08-17 05:31:46 +00004491 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif84675832007-09-11 15:32:40 +00004492}
Anders Carlssonb2cf3572007-10-11 01:00:40 +00004493
Fariborz Jahanianf7992132013-01-04 18:45:40 +00004494QualType ASTContext::getObjCSuperType() const {
4495 if (ObjCSuperType.isNull()) {
4496 RecordDecl *ObjCSuperTypeDecl =
4497 CreateRecordDecl(*this, TTK_Struct, TUDecl, &Idents.get("objc_super"));
4498 TUDecl->addDecl(ObjCSuperTypeDecl);
4499 ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl);
4500 }
4501 return ObjCSuperType;
4502}
4503
Douglas Gregor319ac892009-04-23 22:29:11 +00004504void ASTContext::setCFConstantStringType(QualType T) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004505 const RecordType *Rec = T->getAs<RecordType>();
Douglas Gregor319ac892009-04-23 22:29:11 +00004506 assert(Rec && "Invalid CFConstantStringType");
4507 CFConstantStringTypeDecl = Rec->getDecl();
4508}
4509
Jay Foad4ba2a172011-01-12 09:06:06 +00004510QualType ASTContext::getBlockDescriptorType() const {
Mike Stumpadaaad32009-10-20 02:12:22 +00004511 if (BlockDescriptorType)
4512 return getTagDeclType(BlockDescriptorType);
4513
4514 RecordDecl *T;
4515 // FIXME: Needs the FlagAppleBlock bit.
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004516 T = CreateRecordDecl(*this, TTK_Struct, TUDecl,
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004517 &Idents.get("__block_descriptor"));
John McCall5cfa0112010-02-05 01:33:36 +00004518 T->startDefinition();
Mike Stumpadaaad32009-10-20 02:12:22 +00004519
4520 QualType FieldTypes[] = {
4521 UnsignedLongTy,
4522 UnsignedLongTy,
4523 };
4524
4525 const char *FieldNames[] = {
4526 "reserved",
Mike Stump083c25e2009-10-22 00:49:09 +00004527 "Size"
Mike Stumpadaaad32009-10-20 02:12:22 +00004528 };
4529
4530 for (size_t i = 0; i < 2; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004531 FieldDecl *Field = FieldDecl::Create(*this, T, SourceLocation(),
Mike Stumpadaaad32009-10-20 02:12:22 +00004532 SourceLocation(),
4533 &Idents.get(FieldNames[i]),
John McCalla93c9342009-12-07 02:54:59 +00004534 FieldTypes[i], /*TInfo=*/0,
Mike Stumpadaaad32009-10-20 02:12:22 +00004535 /*BitWidth=*/0,
Richard Smith7a614d82011-06-11 17:19:42 +00004536 /*Mutable=*/false,
Richard Smithca523302012-06-10 03:12:00 +00004537 ICIS_NoInit);
John McCall2888b652010-04-30 21:35:41 +00004538 Field->setAccess(AS_public);
Mike Stumpadaaad32009-10-20 02:12:22 +00004539 T->addDecl(Field);
4540 }
4541
Douglas Gregor838db382010-02-11 01:19:42 +00004542 T->completeDefinition();
Mike Stumpadaaad32009-10-20 02:12:22 +00004543
4544 BlockDescriptorType = T;
4545
4546 return getTagDeclType(BlockDescriptorType);
4547}
4548
Jay Foad4ba2a172011-01-12 09:06:06 +00004549QualType ASTContext::getBlockDescriptorExtendedType() const {
Mike Stump083c25e2009-10-22 00:49:09 +00004550 if (BlockDescriptorExtendedType)
4551 return getTagDeclType(BlockDescriptorExtendedType);
4552
4553 RecordDecl *T;
4554 // FIXME: Needs the FlagAppleBlock bit.
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004555 T = CreateRecordDecl(*this, TTK_Struct, TUDecl,
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00004556 &Idents.get("__block_descriptor_withcopydispose"));
John McCall5cfa0112010-02-05 01:33:36 +00004557 T->startDefinition();
Mike Stump083c25e2009-10-22 00:49:09 +00004558
4559 QualType FieldTypes[] = {
4560 UnsignedLongTy,
4561 UnsignedLongTy,
4562 getPointerType(VoidPtrTy),
4563 getPointerType(VoidPtrTy)
4564 };
4565
4566 const char *FieldNames[] = {
4567 "reserved",
4568 "Size",
4569 "CopyFuncPtr",
4570 "DestroyFuncPtr"
4571 };
4572
4573 for (size_t i = 0; i < 4; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004574 FieldDecl *Field = FieldDecl::Create(*this, T, SourceLocation(),
Mike Stump083c25e2009-10-22 00:49:09 +00004575 SourceLocation(),
4576 &Idents.get(FieldNames[i]),
John McCalla93c9342009-12-07 02:54:59 +00004577 FieldTypes[i], /*TInfo=*/0,
Mike Stump083c25e2009-10-22 00:49:09 +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 Stump083c25e2009-10-22 00:49:09 +00004582 T->addDecl(Field);
4583 }
4584
Douglas Gregor838db382010-02-11 01:19:42 +00004585 T->completeDefinition();
Mike Stump083c25e2009-10-22 00:49:09 +00004586
4587 BlockDescriptorExtendedType = T;
4588
4589 return getTagDeclType(BlockDescriptorExtendedType);
4590}
4591
Fariborz Jahanianb15c8982012-11-28 23:12:17 +00004592/// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty"
4593/// requires copy/dispose. Note that this must match the logic
4594/// in buildByrefHelpers.
4595bool ASTContext::BlockRequiresCopying(QualType Ty,
4596 const VarDecl *D) {
4597 if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) {
4598 const Expr *copyExpr = getBlockVarCopyInits(D);
4599 if (!copyExpr && record->hasTrivialDestructor()) return false;
4600
Mike Stumpaf7b44d2009-10-21 18:16:27 +00004601 return true;
Fariborz Jahaniane38be612010-11-17 00:21:28 +00004602 }
Fariborz Jahanianb15c8982012-11-28 23:12:17 +00004603
4604 if (!Ty->isObjCRetainableType()) return false;
4605
4606 Qualifiers qs = Ty.getQualifiers();
4607
4608 // If we have lifetime, that dominates.
4609 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
4610 assert(getLangOpts().ObjCAutoRefCount);
4611
4612 switch (lifetime) {
4613 case Qualifiers::OCL_None: llvm_unreachable("impossible");
4614
4615 // These are just bits as far as the runtime is concerned.
4616 case Qualifiers::OCL_ExplicitNone:
4617 case Qualifiers::OCL_Autoreleasing:
4618 return false;
4619
4620 // Tell the runtime that this is ARC __weak, called by the
4621 // byref routines.
4622 case Qualifiers::OCL_Weak:
4623 // ARC __strong __block variables need to be retained.
4624 case Qualifiers::OCL_Strong:
4625 return true;
4626 }
4627 llvm_unreachable("fell out of lifetime switch!");
4628 }
4629 return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) ||
4630 Ty->isObjCObjectPointerType());
Mike Stumpaf7b44d2009-10-21 18:16:27 +00004631}
4632
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00004633bool ASTContext::getByrefLifetime(QualType Ty,
4634 Qualifiers::ObjCLifetime &LifeTime,
4635 bool &HasByrefExtendedLayout) const {
4636
4637 if (!getLangOpts().ObjC1 ||
4638 getLangOpts().getGC() != LangOptions::NonGC)
4639 return false;
4640
4641 HasByrefExtendedLayout = false;
Fariborz Jahanian34db84f2012-12-11 19:58:01 +00004642 if (Ty->isRecordType()) {
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00004643 HasByrefExtendedLayout = true;
4644 LifeTime = Qualifiers::OCL_None;
4645 }
4646 else if (getLangOpts().ObjCAutoRefCount)
4647 LifeTime = Ty.getObjCLifetime();
4648 // MRR.
4649 else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
4650 LifeTime = Qualifiers::OCL_ExplicitNone;
4651 else
4652 LifeTime = Qualifiers::OCL_None;
4653 return true;
4654}
4655
Douglas Gregore97179c2011-09-08 01:46:34 +00004656TypedefDecl *ASTContext::getObjCInstanceTypeDecl() {
4657 if (!ObjCInstanceTypeDecl)
4658 ObjCInstanceTypeDecl = TypedefDecl::Create(*this,
4659 getTranslationUnitDecl(),
4660 SourceLocation(),
4661 SourceLocation(),
4662 &Idents.get("instancetype"),
4663 getTrivialTypeSourceInfo(getObjCIdType()));
4664 return ObjCInstanceTypeDecl;
4665}
4666
Anders Carlssone8c49532007-10-29 06:33:42 +00004667// This returns true if a type has been typedefed to BOOL:
4668// typedef <type> BOOL;
Chris Lattner2d998332007-10-30 20:27:44 +00004669static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone8c49532007-10-29 06:33:42 +00004670 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattnerbb49c3e2008-11-24 03:52:59 +00004671 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
4672 return II->isStr("BOOL");
Mike Stump1eb44332009-09-09 15:08:12 +00004673
Anders Carlsson85f9bce2007-10-29 05:01:08 +00004674 return false;
4675}
4676
Ted Kremeneka526c5c2008-01-07 19:49:32 +00004677/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004678/// purpose.
Jay Foad4ba2a172011-01-12 09:06:06 +00004679CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const {
Douglas Gregorf968d832011-05-27 01:19:52 +00004680 if (!type->isIncompleteArrayType() && type->isIncompleteType())
4681 return CharUnits::Zero();
4682
Ken Dyck199c3d62010-01-11 17:06:35 +00004683 CharUnits sz = getTypeSizeInChars(type);
Mike Stump1eb44332009-09-09 15:08:12 +00004684
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004685 // Make all integer and enum types at least as large as an int
Douglas Gregor2ade35e2010-06-16 00:17:44 +00004686 if (sz.isPositive() && type->isIntegralOrEnumerationType())
Ken Dyck199c3d62010-01-11 17:06:35 +00004687 sz = std::max(sz, getTypeSizeInChars(IntTy));
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004688 // Treat arrays as pointers, since that's how they're passed in.
4689 else if (type->isArrayType())
Ken Dyck199c3d62010-01-11 17:06:35 +00004690 sz = getTypeSizeInChars(VoidPtrTy);
Ken Dyckaa8741a2010-01-11 19:19:56 +00004691 return sz;
Ken Dyck199c3d62010-01-11 17:06:35 +00004692}
4693
4694static inline
4695std::string charUnitsToString(const CharUnits &CU) {
4696 return llvm::itostr(CU.getQuantity());
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004697}
4698
John McCall6b5a61b2011-02-07 10:33:21 +00004699/// getObjCEncodingForBlock - Return the encoded type for this block
David Chisnall5e530af2009-11-17 19:33:30 +00004700/// declaration.
John McCall6b5a61b2011-02-07 10:33:21 +00004701std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const {
4702 std::string S;
4703
David Chisnall5e530af2009-11-17 19:33:30 +00004704 const BlockDecl *Decl = Expr->getBlockDecl();
4705 QualType BlockTy =
4706 Expr->getType()->getAs<BlockPointerType>()->getPointeeType();
4707 // Encode result type.
Fariborz Jahanian3d145f62012-11-15 19:02:45 +00004708 if (getLangOpts().EncodeExtendedBlockSig)
Fariborz Jahanian06cffc02012-11-14 23:11:38 +00004709 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None,
4710 BlockTy->getAs<FunctionType>()->getResultType(),
4711 S, true /*Extended*/);
4712 else
4713 getObjCEncodingForType(BlockTy->getAs<FunctionType>()->getResultType(),
4714 S);
David Chisnall5e530af2009-11-17 19:33:30 +00004715 // Compute size of all parameters.
4716 // Start with computing size of a pointer in number of bytes.
4717 // FIXME: There might(should) be a better way of doing this computation!
4718 SourceLocation Loc;
Ken Dyck199c3d62010-01-11 17:06:35 +00004719 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
4720 CharUnits ParmOffset = PtrSize;
Fariborz Jahanian6f46c262010-04-08 18:06:22 +00004721 for (BlockDecl::param_const_iterator PI = Decl->param_begin(),
David Chisnall5e530af2009-11-17 19:33:30 +00004722 E = Decl->param_end(); PI != E; ++PI) {
4723 QualType PType = (*PI)->getType();
Ken Dyckaa8741a2010-01-11 19:19:56 +00004724 CharUnits sz = getObjCEncodingTypeSize(PType);
Fariborz Jahanian075a5432012-06-30 00:48:59 +00004725 if (sz.isZero())
4726 continue;
Ken Dyck199c3d62010-01-11 17:06:35 +00004727 assert (sz.isPositive() && "BlockExpr - Incomplete param type");
David Chisnall5e530af2009-11-17 19:33:30 +00004728 ParmOffset += sz;
4729 }
4730 // Size of the argument frame
Ken Dyck199c3d62010-01-11 17:06:35 +00004731 S += charUnitsToString(ParmOffset);
David Chisnall5e530af2009-11-17 19:33:30 +00004732 // Block pointer and offset.
4733 S += "@?0";
David Chisnall5e530af2009-11-17 19:33:30 +00004734
4735 // Argument types.
4736 ParmOffset = PtrSize;
4737 for (BlockDecl::param_const_iterator PI = Decl->param_begin(), E =
4738 Decl->param_end(); PI != E; ++PI) {
4739 ParmVarDecl *PVDecl = *PI;
4740 QualType PType = PVDecl->getOriginalType();
4741 if (const ArrayType *AT =
4742 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
4743 // Use array's original type only if it has known number of
4744 // elements.
4745 if (!isa<ConstantArrayType>(AT))
4746 PType = PVDecl->getType();
4747 } else if (PType->isFunctionType())
4748 PType = PVDecl->getType();
Fariborz Jahanian3d145f62012-11-15 19:02:45 +00004749 if (getLangOpts().EncodeExtendedBlockSig)
Fariborz Jahanian06cffc02012-11-14 23:11:38 +00004750 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType,
4751 S, true /*Extended*/);
4752 else
4753 getObjCEncodingForType(PType, S);
Ken Dyck199c3d62010-01-11 17:06:35 +00004754 S += charUnitsToString(ParmOffset);
Ken Dyckaa8741a2010-01-11 19:19:56 +00004755 ParmOffset += getObjCEncodingTypeSize(PType);
David Chisnall5e530af2009-11-17 19:33:30 +00004756 }
John McCall6b5a61b2011-02-07 10:33:21 +00004757
4758 return S;
David Chisnall5e530af2009-11-17 19:33:30 +00004759}
4760
Douglas Gregorf968d832011-05-27 01:19:52 +00004761bool ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl,
David Chisnall5389f482010-12-30 14:05:53 +00004762 std::string& S) {
4763 // Encode result type.
4764 getObjCEncodingForType(Decl->getResultType(), S);
4765 CharUnits ParmOffset;
4766 // Compute size of all parameters.
4767 for (FunctionDecl::param_const_iterator PI = Decl->param_begin(),
4768 E = Decl->param_end(); PI != E; ++PI) {
4769 QualType PType = (*PI)->getType();
4770 CharUnits sz = getObjCEncodingTypeSize(PType);
Douglas Gregorf968d832011-05-27 01:19:52 +00004771 if (sz.isZero())
Fariborz Jahanian7e68ba52012-06-29 22:54:56 +00004772 continue;
4773
David Chisnall5389f482010-12-30 14:05:53 +00004774 assert (sz.isPositive() &&
Douglas Gregorf968d832011-05-27 01:19:52 +00004775 "getObjCEncodingForFunctionDecl - Incomplete param type");
David Chisnall5389f482010-12-30 14:05:53 +00004776 ParmOffset += sz;
4777 }
4778 S += charUnitsToString(ParmOffset);
4779 ParmOffset = CharUnits::Zero();
4780
4781 // Argument types.
4782 for (FunctionDecl::param_const_iterator PI = Decl->param_begin(),
4783 E = Decl->param_end(); PI != E; ++PI) {
4784 ParmVarDecl *PVDecl = *PI;
4785 QualType PType = PVDecl->getOriginalType();
4786 if (const ArrayType *AT =
4787 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
4788 // Use array's original type only if it has known number of
4789 // elements.
4790 if (!isa<ConstantArrayType>(AT))
4791 PType = PVDecl->getType();
4792 } else if (PType->isFunctionType())
4793 PType = PVDecl->getType();
4794 getObjCEncodingForType(PType, S);
4795 S += charUnitsToString(ParmOffset);
4796 ParmOffset += getObjCEncodingTypeSize(PType);
4797 }
Douglas Gregorf968d832011-05-27 01:19:52 +00004798
4799 return false;
David Chisnall5389f482010-12-30 14:05:53 +00004800}
4801
Bob Wilsondc8dab62011-11-30 01:57:58 +00004802/// getObjCEncodingForMethodParameter - Return the encoded type for a single
4803/// method parameter or return type. If Extended, include class names and
4804/// block object types.
4805void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
4806 QualType T, std::string& S,
4807 bool Extended) const {
4808 // Encode type qualifer, 'in', 'inout', etc. for the parameter.
4809 getObjCEncodingForTypeQualifier(QT, S);
4810 // Encode parameter type.
4811 getObjCEncodingForTypeImpl(T, S, true, true, 0,
4812 true /*OutermostType*/,
4813 false /*EncodingProperty*/,
4814 false /*StructField*/,
4815 Extended /*EncodeBlockParameters*/,
4816 Extended /*EncodeClassNames*/);
4817}
4818
Ted Kremeneka526c5c2008-01-07 19:49:32 +00004819/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004820/// declaration.
Douglas Gregorf968d832011-05-27 01:19:52 +00004821bool ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
Bob Wilsondc8dab62011-11-30 01:57:58 +00004822 std::string& S,
4823 bool Extended) const {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004824 // FIXME: This is not very efficient.
Bob Wilsondc8dab62011-11-30 01:57:58 +00004825 // Encode return type.
4826 getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(),
4827 Decl->getResultType(), S, Extended);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004828 // Compute size of all parameters.
4829 // Start with computing size of a pointer in number of bytes.
4830 // FIXME: There might(should) be a better way of doing this computation!
4831 SourceLocation Loc;
Ken Dyck199c3d62010-01-11 17:06:35 +00004832 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004833 // The first two arguments (self and _cmd) are pointers; account for
4834 // their size.
Ken Dyck199c3d62010-01-11 17:06:35 +00004835 CharUnits ParmOffset = 2 * PtrSize;
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00004836 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
Fariborz Jahanian7732cc92010-04-08 21:29:11 +00004837 E = Decl->sel_param_end(); PI != E; ++PI) {
Chris Lattner89951a82009-02-20 18:43:26 +00004838 QualType PType = (*PI)->getType();
Ken Dyckaa8741a2010-01-11 19:19:56 +00004839 CharUnits sz = getObjCEncodingTypeSize(PType);
Douglas Gregorf968d832011-05-27 01:19:52 +00004840 if (sz.isZero())
Fariborz Jahanian7e68ba52012-06-29 22:54:56 +00004841 continue;
4842
Ken Dyck199c3d62010-01-11 17:06:35 +00004843 assert (sz.isPositive() &&
4844 "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004845 ParmOffset += sz;
4846 }
Ken Dyck199c3d62010-01-11 17:06:35 +00004847 S += charUnitsToString(ParmOffset);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004848 S += "@0:";
Ken Dyck199c3d62010-01-11 17:06:35 +00004849 S += charUnitsToString(PtrSize);
Mike Stump1eb44332009-09-09 15:08:12 +00004850
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004851 // Argument types.
4852 ParmOffset = 2 * PtrSize;
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00004853 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
Fariborz Jahanian7732cc92010-04-08 21:29:11 +00004854 E = Decl->sel_param_end(); PI != E; ++PI) {
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00004855 const ParmVarDecl *PVDecl = *PI;
Mike Stump1eb44332009-09-09 15:08:12 +00004856 QualType PType = PVDecl->getOriginalType();
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00004857 if (const ArrayType *AT =
Steve Naroffab76d452009-04-14 00:03:58 +00004858 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
4859 // Use array's original type only if it has known number of
4860 // elements.
Steve Naroffbb3fde32009-04-14 00:40:09 +00004861 if (!isa<ConstantArrayType>(AT))
Steve Naroffab76d452009-04-14 00:03:58 +00004862 PType = PVDecl->getType();
4863 } else if (PType->isFunctionType())
4864 PType = PVDecl->getType();
Bob Wilsondc8dab62011-11-30 01:57:58 +00004865 getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(),
4866 PType, S, Extended);
Ken Dyck199c3d62010-01-11 17:06:35 +00004867 S += charUnitsToString(ParmOffset);
Ken Dyckaa8741a2010-01-11 19:19:56 +00004868 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004869 }
Douglas Gregorf968d832011-05-27 01:19:52 +00004870
4871 return false;
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00004872}
4873
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004874/// getObjCEncodingForPropertyDecl - Return the encoded type for this
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00004875/// property declaration. If non-NULL, Container must be either an
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004876/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
4877/// NULL when getting encodings for protocol properties.
Mike Stump1eb44332009-09-09 15:08:12 +00004878/// Property attributes are stored as a comma-delimited C string. The simple
4879/// attributes readonly and bycopy are encoded as single characters. The
4880/// parametrized attributes, getter=name, setter=name, and ivar=name, are
4881/// encoded as single characters, followed by an identifier. Property types
4882/// are also encoded as a parametrized attribute. The characters used to encode
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00004883/// these attributes are defined by the following enumeration:
4884/// @code
4885/// enum PropertyAttributes {
4886/// kPropertyReadOnly = 'R', // property is read-only.
4887/// kPropertyBycopy = 'C', // property is a copy of the value last assigned
4888/// kPropertyByref = '&', // property is a reference to the value last assigned
4889/// kPropertyDynamic = 'D', // property is dynamic
4890/// kPropertyGetter = 'G', // followed by getter selector name
4891/// kPropertySetter = 'S', // followed by setter selector name
4892/// kPropertyInstanceVariable = 'V' // followed by instance variable name
Bob Wilson0d4cb852012-03-22 17:48:02 +00004893/// kPropertyType = 'T' // followed by old-style type encoding.
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00004894/// kPropertyWeak = 'W' // 'weak' property
4895/// kPropertyStrong = 'P' // property GC'able
4896/// kPropertyNonAtomic = 'N' // property non-atomic
4897/// };
4898/// @endcode
Mike Stump1eb44332009-09-09 15:08:12 +00004899void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004900 const Decl *Container,
Jay Foad4ba2a172011-01-12 09:06:06 +00004901 std::string& S) const {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004902 // Collect information from the property implementation decl(s).
4903 bool Dynamic = false;
4904 ObjCPropertyImplDecl *SynthesizePID = 0;
4905
4906 // FIXME: Duplicated code due to poor abstraction.
4907 if (Container) {
Mike Stump1eb44332009-09-09 15:08:12 +00004908 if (const ObjCCategoryImplDecl *CID =
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004909 dyn_cast<ObjCCategoryImplDecl>(Container)) {
4910 for (ObjCCategoryImplDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004911 i = CID->propimpl_begin(), e = CID->propimpl_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00004912 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00004913 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004914 if (PID->getPropertyDecl() == PD) {
4915 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4916 Dynamic = true;
4917 } else {
4918 SynthesizePID = PID;
4919 }
4920 }
4921 }
4922 } else {
Chris Lattner61710852008-10-05 17:34:18 +00004923 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004924 for (ObjCCategoryImplDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004925 i = OID->propimpl_begin(), e = OID->propimpl_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00004926 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00004927 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004928 if (PID->getPropertyDecl() == PD) {
4929 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4930 Dynamic = true;
4931 } else {
4932 SynthesizePID = PID;
4933 }
4934 }
Mike Stump1eb44332009-09-09 15:08:12 +00004935 }
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004936 }
4937 }
4938
4939 // FIXME: This is not very efficient.
4940 S = "T";
4941
4942 // Encode result type.
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00004943 // GCC has some special rules regarding encoding of properties which
4944 // closely resembles encoding of ivars.
Mike Stump1eb44332009-09-09 15:08:12 +00004945 getObjCEncodingForTypeImpl(PD->getType(), S, true, true, 0,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00004946 true /* outermost type */,
4947 true /* encoding for property */);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004948
4949 if (PD->isReadOnly()) {
4950 S += ",R";
Nico Weberd7ceab32013-05-08 23:47:40 +00004951 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy)
4952 S += ",C";
4953 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain)
4954 S += ",&";
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004955 } else {
4956 switch (PD->getSetterKind()) {
4957 case ObjCPropertyDecl::Assign: break;
4958 case ObjCPropertyDecl::Copy: S += ",C"; break;
Mike Stump1eb44332009-09-09 15:08:12 +00004959 case ObjCPropertyDecl::Retain: S += ",&"; break;
Fariborz Jahanian3a02b442011-08-12 20:47:08 +00004960 case ObjCPropertyDecl::Weak: S += ",W"; break;
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004961 }
4962 }
4963
4964 // It really isn't clear at all what this means, since properties
4965 // are "dynamic by default".
4966 if (Dynamic)
4967 S += ",D";
4968
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00004969 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
4970 S += ",N";
Mike Stump1eb44332009-09-09 15:08:12 +00004971
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004972 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
4973 S += ",G";
Chris Lattner077bf5e2008-11-24 03:33:13 +00004974 S += PD->getGetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004975 }
4976
4977 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
4978 S += ",S";
Chris Lattner077bf5e2008-11-24 03:33:13 +00004979 S += PD->getSetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004980 }
4981
4982 if (SynthesizePID) {
4983 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
4984 S += ",V";
Chris Lattner39f34e92008-11-24 04:00:27 +00004985 S += OID->getNameAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004986 }
4987
4988 // FIXME: OBJCGC: weak & strong
4989}
4990
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00004991/// getLegacyIntegralTypeEncoding -
Mike Stump1eb44332009-09-09 15:08:12 +00004992/// Another legacy compatibility encoding: 32-bit longs are encoded as
4993/// 'l' or 'L' , but not always. For typedefs, we need to use
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00004994/// 'i' or 'I' instead if encoding a struct field, or a pointer!
4995///
4996void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
Mike Stump8e1fab22009-07-22 18:58:19 +00004997 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
John McCall183700f2009-09-21 23:43:11 +00004998 if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
Jay Foad4ba2a172011-01-12 09:06:06 +00004999 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005000 PointeeTy = UnsignedIntTy;
Mike Stump1eb44332009-09-09 15:08:12 +00005001 else
Jay Foad4ba2a172011-01-12 09:06:06 +00005002 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005003 PointeeTy = IntTy;
5004 }
5005 }
5006}
5007
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00005008void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
Jay Foad4ba2a172011-01-12 09:06:06 +00005009 const FieldDecl *Field) const {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00005010 // We follow the behavior of gcc, expanding structures which are
5011 // directly pointed to, and expanding embedded structures. Note that
5012 // these rules are sufficient to prevent recursive encoding of the
5013 // same type.
Mike Stump1eb44332009-09-09 15:08:12 +00005014 getObjCEncodingForTypeImpl(T, S, true, true, Field,
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00005015 true /* outermost type */);
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00005016}
5017
John McCall3624e9e2012-12-20 02:45:14 +00005018static char getObjCEncodingForPrimitiveKind(const ASTContext *C,
5019 BuiltinType::Kind kind) {
5020 switch (kind) {
David Chisnall64fd7e82010-06-04 01:10:52 +00005021 case BuiltinType::Void: return 'v';
5022 case BuiltinType::Bool: return 'B';
5023 case BuiltinType::Char_U:
5024 case BuiltinType::UChar: return 'C';
John McCall3624e9e2012-12-20 02:45:14 +00005025 case BuiltinType::Char16:
David Chisnall64fd7e82010-06-04 01:10:52 +00005026 case BuiltinType::UShort: return 'S';
John McCall3624e9e2012-12-20 02:45:14 +00005027 case BuiltinType::Char32:
David Chisnall64fd7e82010-06-04 01:10:52 +00005028 case BuiltinType::UInt: return 'I';
5029 case BuiltinType::ULong:
John McCall3624e9e2012-12-20 02:45:14 +00005030 return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q';
David Chisnall64fd7e82010-06-04 01:10:52 +00005031 case BuiltinType::UInt128: return 'T';
5032 case BuiltinType::ULongLong: return 'Q';
5033 case BuiltinType::Char_S:
5034 case BuiltinType::SChar: return 'c';
5035 case BuiltinType::Short: return 's';
Chris Lattner3f59c972010-12-25 23:25:43 +00005036 case BuiltinType::WChar_S:
5037 case BuiltinType::WChar_U:
David Chisnall64fd7e82010-06-04 01:10:52 +00005038 case BuiltinType::Int: return 'i';
5039 case BuiltinType::Long:
John McCall3624e9e2012-12-20 02:45:14 +00005040 return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q';
David Chisnall64fd7e82010-06-04 01:10:52 +00005041 case BuiltinType::LongLong: return 'q';
5042 case BuiltinType::Int128: return 't';
5043 case BuiltinType::Float: return 'f';
5044 case BuiltinType::Double: return 'd';
Daniel Dunbar3a0be842010-10-11 21:13:48 +00005045 case BuiltinType::LongDouble: return 'D';
John McCall3624e9e2012-12-20 02:45:14 +00005046 case BuiltinType::NullPtr: return '*'; // like char*
5047
5048 case BuiltinType::Half:
5049 // FIXME: potentially need @encodes for these!
5050 return ' ';
5051
5052 case BuiltinType::ObjCId:
5053 case BuiltinType::ObjCClass:
5054 case BuiltinType::ObjCSel:
5055 llvm_unreachable("@encoding ObjC primitive type");
5056
5057 // OpenCL and placeholder types don't need @encodings.
5058 case BuiltinType::OCLImage1d:
5059 case BuiltinType::OCLImage1dArray:
5060 case BuiltinType::OCLImage1dBuffer:
5061 case BuiltinType::OCLImage2d:
5062 case BuiltinType::OCLImage2dArray:
5063 case BuiltinType::OCLImage3d:
Guy Benyeie6b9d802013-01-20 12:31:11 +00005064 case BuiltinType::OCLEvent:
Guy Benyei21f18c42013-02-07 10:55:47 +00005065 case BuiltinType::OCLSampler:
John McCall3624e9e2012-12-20 02:45:14 +00005066 case BuiltinType::Dependent:
5067#define BUILTIN_TYPE(KIND, ID)
5068#define PLACEHOLDER_TYPE(KIND, ID) \
5069 case BuiltinType::KIND:
5070#include "clang/AST/BuiltinTypes.def"
5071 llvm_unreachable("invalid builtin type for @encode");
David Chisnall64fd7e82010-06-04 01:10:52 +00005072 }
David Blaikie719e53f2013-01-09 17:48:41 +00005073 llvm_unreachable("invalid BuiltinType::Kind value");
David Chisnall64fd7e82010-06-04 01:10:52 +00005074}
5075
Douglas Gregor5471bc82011-09-08 17:18:35 +00005076static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) {
5077 EnumDecl *Enum = ET->getDecl();
5078
5079 // The encoding of an non-fixed enum type is always 'i', regardless of size.
5080 if (!Enum->isFixed())
5081 return 'i';
5082
5083 // The encoding of a fixed enum type matches its fixed underlying type.
John McCall3624e9e2012-12-20 02:45:14 +00005084 const BuiltinType *BT = Enum->getIntegerType()->castAs<BuiltinType>();
5085 return getObjCEncodingForPrimitiveKind(C, BT->getKind());
Douglas Gregor5471bc82011-09-08 17:18:35 +00005086}
5087
Jay Foad4ba2a172011-01-12 09:06:06 +00005088static void EncodeBitField(const ASTContext *Ctx, std::string& S,
David Chisnall64fd7e82010-06-04 01:10:52 +00005089 QualType T, const FieldDecl *FD) {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00005090 assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl");
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00005091 S += 'b';
David Chisnall64fd7e82010-06-04 01:10:52 +00005092 // The NeXT runtime encodes bit fields as b followed by the number of bits.
5093 // The GNU runtime requires more information; bitfields are encoded as b,
5094 // then the offset (in bits) of the first element, then the type of the
5095 // bitfield, then the size in bits. For example, in this structure:
5096 //
5097 // struct
5098 // {
5099 // int integer;
5100 // int flags:2;
5101 // };
5102 // On a 32-bit system, the encoding for flags would be b2 for the NeXT
5103 // runtime, but b32i2 for the GNU runtime. The reason for this extra
5104 // information is not especially sensible, but we're stuck with it for
5105 // compatibility with GCC, although providing it breaks anything that
5106 // actually uses runtime introspection and wants to work on both runtimes...
John McCall260611a2012-06-20 06:18:46 +00005107 if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) {
David Chisnall64fd7e82010-06-04 01:10:52 +00005108 const RecordDecl *RD = FD->getParent();
5109 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD);
Eli Friedman82905742011-07-07 01:54:01 +00005110 S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));
Douglas Gregor5471bc82011-09-08 17:18:35 +00005111 if (const EnumType *ET = T->getAs<EnumType>())
5112 S += ObjCEncodingForEnumType(Ctx, ET);
John McCall3624e9e2012-12-20 02:45:14 +00005113 else {
5114 const BuiltinType *BT = T->castAs<BuiltinType>();
5115 S += getObjCEncodingForPrimitiveKind(Ctx, BT->getKind());
5116 }
David Chisnall64fd7e82010-06-04 01:10:52 +00005117 }
Richard Smitha6b8b2c2011-10-10 18:28:20 +00005118 S += llvm::utostr(FD->getBitWidthValue(*Ctx));
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00005119}
5120
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00005121// FIXME: Use SmallString for accumulating string.
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00005122void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
5123 bool ExpandPointedToStructures,
5124 bool ExpandStructures,
Daniel Dunbar153bfe52009-04-20 06:37:24 +00005125 const FieldDecl *FD,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00005126 bool OutermostType,
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005127 bool EncodingProperty,
Bob Wilsondc8dab62011-11-30 01:57:58 +00005128 bool StructField,
5129 bool EncodeBlockParameters,
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005130 bool EncodeClassNames,
5131 bool EncodePointerToObjCTypedef) const {
John McCall3624e9e2012-12-20 02:45:14 +00005132 CanQualType CT = getCanonicalType(T);
5133 switch (CT->getTypeClass()) {
5134 case Type::Builtin:
5135 case Type::Enum:
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005136 if (FD && FD->isBitField())
David Chisnall64fd7e82010-06-04 01:10:52 +00005137 return EncodeBitField(this, S, T, FD);
John McCall3624e9e2012-12-20 02:45:14 +00005138 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CT))
5139 S += getObjCEncodingForPrimitiveKind(this, BT->getKind());
5140 else
5141 S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005142 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005143
John McCall3624e9e2012-12-20 02:45:14 +00005144 case Type::Complex: {
5145 const ComplexType *CT = T->castAs<ComplexType>();
Anders Carlssonc612f7b2009-04-09 21:55:45 +00005146 S += 'j';
Mike Stump1eb44332009-09-09 15:08:12 +00005147 getObjCEncodingForTypeImpl(CT->getElementType(), S, false, false, 0, false,
Anders Carlssonc612f7b2009-04-09 21:55:45 +00005148 false);
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005149 return;
5150 }
John McCall3624e9e2012-12-20 02:45:14 +00005151
5152 case Type::Atomic: {
5153 const AtomicType *AT = T->castAs<AtomicType>();
5154 S += 'A';
5155 getObjCEncodingForTypeImpl(AT->getValueType(), S, false, false, 0,
5156 false, false);
5157 return;
Fariborz Jahanianaa1d7612010-04-13 23:45:47 +00005158 }
John McCall3624e9e2012-12-20 02:45:14 +00005159
5160 // encoding for pointer or reference types.
5161 case Type::Pointer:
5162 case Type::LValueReference:
5163 case Type::RValueReference: {
5164 QualType PointeeTy;
5165 if (isa<PointerType>(CT)) {
5166 const PointerType *PT = T->castAs<PointerType>();
5167 if (PT->isObjCSelType()) {
5168 S += ':';
5169 return;
5170 }
5171 PointeeTy = PT->getPointeeType();
5172 } else {
5173 PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
5174 }
5175
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005176 bool isReadOnly = false;
5177 // For historical/compatibility reasons, the read-only qualifier of the
5178 // pointee gets emitted _before_ the '^'. The read-only qualifier of
5179 // the pointer itself gets ignored, _unless_ we are looking at a typedef!
Mike Stump1eb44332009-09-09 15:08:12 +00005180 // Also, do not emit the 'r' for anything but the outermost type!
Mike Stump8e1fab22009-07-22 18:58:19 +00005181 if (isa<TypedefType>(T.getTypePtr())) {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005182 if (OutermostType && T.isConstQualified()) {
5183 isReadOnly = true;
5184 S += 'r';
5185 }
Mike Stump9fdbab32009-07-31 02:02:20 +00005186 } else if (OutermostType) {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005187 QualType P = PointeeTy;
Ted Kremenek6217b802009-07-29 21:53:49 +00005188 while (P->getAs<PointerType>())
5189 P = P->getAs<PointerType>()->getPointeeType();
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005190 if (P.isConstQualified()) {
5191 isReadOnly = true;
5192 S += 'r';
5193 }
5194 }
5195 if (isReadOnly) {
5196 // Another legacy compatibility encoding. Some ObjC qualifier and type
5197 // combinations need to be rearranged.
5198 // Rewrite "in const" from "nr" to "rn"
Chris Lattner5f9e2722011-07-23 10:55:15 +00005199 if (StringRef(S).endswith("nr"))
Benjamin Kramer02379412010-04-27 17:12:11 +00005200 S.replace(S.end()-2, S.end(), "rn");
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005201 }
Mike Stump1eb44332009-09-09 15:08:12 +00005202
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005203 if (PointeeTy->isCharType()) {
5204 // char pointer types should be encoded as '*' unless it is a
5205 // type that has been typedef'd to 'BOOL'.
Anders Carlssone8c49532007-10-29 06:33:42 +00005206 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005207 S += '*';
5208 return;
5209 }
Ted Kremenek6217b802009-07-29 21:53:49 +00005210 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
Steve Naroff9533a7f2009-07-22 17:14:51 +00005211 // GCC binary compat: Need to convert "struct objc_class *" to "#".
5212 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
5213 S += '#';
5214 return;
5215 }
5216 // GCC binary compat: Need to convert "struct objc_object *" to "@".
5217 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
5218 S += '@';
5219 return;
5220 }
5221 // fall through...
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005222 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005223 S += '^';
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00005224 getLegacyIntegralTypeEncoding(PointeeTy);
5225
Mike Stump1eb44332009-09-09 15:08:12 +00005226 getObjCEncodingForTypeImpl(PointeeTy, S, false, ExpandPointedToStructures,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005227 NULL);
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005228 return;
5229 }
John McCall3624e9e2012-12-20 02:45:14 +00005230
5231 case Type::ConstantArray:
5232 case Type::IncompleteArray:
5233 case Type::VariableArray: {
5234 const ArrayType *AT = cast<ArrayType>(CT);
5235
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005236 if (isa<IncompleteArrayType>(AT) && !StructField) {
Anders Carlsson559a8332009-02-22 01:38:57 +00005237 // Incomplete arrays are encoded as a pointer to the array element.
5238 S += '^';
5239
Mike Stump1eb44332009-09-09 15:08:12 +00005240 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Anders Carlsson559a8332009-02-22 01:38:57 +00005241 false, ExpandStructures, FD);
5242 } else {
5243 S += '[';
Mike Stump1eb44332009-09-09 15:08:12 +00005244
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005245 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
5246 if (getTypeSize(CAT->getElementType()) == 0)
5247 S += '0';
5248 else
5249 S += llvm::utostr(CAT->getSize().getZExtValue());
5250 } else {
Anders Carlsson559a8332009-02-22 01:38:57 +00005251 //Variable length arrays are encoded as a regular array with 0 elements.
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005252 assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) &&
5253 "Unknown array type!");
Anders Carlsson559a8332009-02-22 01:38:57 +00005254 S += '0';
5255 }
Mike Stump1eb44332009-09-09 15:08:12 +00005256
5257 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Anders Carlsson559a8332009-02-22 01:38:57 +00005258 false, ExpandStructures, FD);
5259 S += ']';
5260 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005261 return;
5262 }
Mike Stump1eb44332009-09-09 15:08:12 +00005263
John McCall3624e9e2012-12-20 02:45:14 +00005264 case Type::FunctionNoProto:
5265 case Type::FunctionProto:
Anders Carlssonc0a87b72007-10-30 00:06:20 +00005266 S += '?';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005267 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005268
John McCall3624e9e2012-12-20 02:45:14 +00005269 case Type::Record: {
5270 RecordDecl *RDecl = cast<RecordType>(CT)->getDecl();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00005271 S += RDecl->isUnion() ? '(' : '{';
Daniel Dunbar502a4a12008-10-17 06:22:57 +00005272 // Anonymous structures print as '?'
5273 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
5274 S += II->getName();
Fariborz Jahanian6fb94392010-05-07 00:28:49 +00005275 if (ClassTemplateSpecializationDecl *Spec
5276 = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) {
5277 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Benjamin Kramer5eada842013-02-22 15:46:01 +00005278 llvm::raw_string_ostream OS(S);
5279 TemplateSpecializationType::PrintTemplateArgumentList(OS,
Douglas Gregor910f8002010-11-07 23:05:16 +00005280 TemplateArgs.data(),
5281 TemplateArgs.size(),
Douglas Gregor30c42402011-09-27 22:38:19 +00005282 (*this).getPrintingPolicy());
Fariborz Jahanian6fb94392010-05-07 00:28:49 +00005283 }
Daniel Dunbar502a4a12008-10-17 06:22:57 +00005284 } else {
5285 S += '?';
5286 }
Daniel Dunbar0d504c12008-10-17 20:21:44 +00005287 if (ExpandStructures) {
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00005288 S += '=';
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005289 if (!RDecl->isUnion()) {
5290 getObjCEncodingForStructureImpl(RDecl, S, FD);
5291 } else {
5292 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
5293 FieldEnd = RDecl->field_end();
5294 Field != FieldEnd; ++Field) {
5295 if (FD) {
5296 S += '"';
5297 S += Field->getNameAsString();
5298 S += '"';
5299 }
Mike Stump1eb44332009-09-09 15:08:12 +00005300
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005301 // Special case bit-fields.
5302 if (Field->isBitField()) {
5303 getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
David Blaikie581deb32012-06-06 20:45:41 +00005304 *Field);
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005305 } else {
5306 QualType qt = Field->getType();
5307 getLegacyIntegralTypeEncoding(qt);
5308 getObjCEncodingForTypeImpl(qt, S, false, true,
5309 FD, /*OutermostType*/false,
5310 /*EncodingProperty*/false,
5311 /*StructField*/true);
5312 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00005313 }
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00005314 }
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00005315 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00005316 S += RDecl->isUnion() ? ')' : '}';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005317 return;
5318 }
Mike Stump1eb44332009-09-09 15:08:12 +00005319
John McCall3624e9e2012-12-20 02:45:14 +00005320 case Type::BlockPointer: {
5321 const BlockPointerType *BT = T->castAs<BlockPointerType>();
Steve Naroff21a98b12009-02-02 18:24:29 +00005322 S += "@?"; // Unlike a pointer-to-function, which is "^?".
Bob Wilsondc8dab62011-11-30 01:57:58 +00005323 if (EncodeBlockParameters) {
John McCall3624e9e2012-12-20 02:45:14 +00005324 const FunctionType *FT = BT->getPointeeType()->castAs<FunctionType>();
Bob Wilsondc8dab62011-11-30 01:57:58 +00005325
5326 S += '<';
5327 // Block return type
5328 getObjCEncodingForTypeImpl(FT->getResultType(), S,
5329 ExpandPointedToStructures, ExpandStructures,
5330 FD,
5331 false /* OutermostType */,
5332 EncodingProperty,
5333 false /* StructField */,
5334 EncodeBlockParameters,
5335 EncodeClassNames);
5336 // Block self
5337 S += "@?";
5338 // Block parameters
5339 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
5340 for (FunctionProtoType::arg_type_iterator I = FPT->arg_type_begin(),
5341 E = FPT->arg_type_end(); I && (I != E); ++I) {
5342 getObjCEncodingForTypeImpl(*I, S,
5343 ExpandPointedToStructures,
5344 ExpandStructures,
5345 FD,
5346 false /* OutermostType */,
5347 EncodingProperty,
5348 false /* StructField */,
5349 EncodeBlockParameters,
5350 EncodeClassNames);
5351 }
5352 }
5353 S += '>';
5354 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005355 return;
5356 }
Mike Stump1eb44332009-09-09 15:08:12 +00005357
John McCall3624e9e2012-12-20 02:45:14 +00005358 case Type::ObjCObject:
5359 case Type::ObjCInterface: {
5360 // Ignore protocol qualifiers when mangling at this level.
5361 T = T->castAs<ObjCObjectType>()->getBaseType();
John McCallc12c5bb2010-05-15 11:32:37 +00005362
John McCall3624e9e2012-12-20 02:45:14 +00005363 // The assumption seems to be that this assert will succeed
5364 // because nested levels will have filtered out 'id' and 'Class'.
5365 const ObjCInterfaceType *OIT = T->castAs<ObjCInterfaceType>();
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005366 // @encode(class_name)
John McCall0953e762009-09-24 19:53:00 +00005367 ObjCInterfaceDecl *OI = OIT->getDecl();
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005368 S += '{';
5369 const IdentifierInfo *II = OI->getIdentifier();
5370 S += II->getName();
5371 S += '=';
Jordy Rosedb8264e2011-07-22 02:08:32 +00005372 SmallVector<const ObjCIvarDecl*, 32> Ivars;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00005373 DeepCollectObjCIvars(OI, true, Ivars);
5374 for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00005375 const FieldDecl *Field = cast<FieldDecl>(Ivars[i]);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00005376 if (Field->isBitField())
5377 getObjCEncodingForTypeImpl(Field->getType(), S, false, true, Field);
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005378 else
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005379 getObjCEncodingForTypeImpl(Field->getType(), S, false, true, FD,
5380 false, false, false, false, false,
5381 EncodePointerToObjCTypedef);
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005382 }
5383 S += '}';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005384 return;
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00005385 }
Mike Stump1eb44332009-09-09 15:08:12 +00005386
John McCall3624e9e2012-12-20 02:45:14 +00005387 case Type::ObjCObjectPointer: {
5388 const ObjCObjectPointerType *OPT = T->castAs<ObjCObjectPointerType>();
Steve Naroff14108da2009-07-10 23:34:53 +00005389 if (OPT->isObjCIdType()) {
5390 S += '@';
5391 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005392 }
Mike Stump1eb44332009-09-09 15:08:12 +00005393
Steve Naroff27d20a22009-10-28 22:03:49 +00005394 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
5395 // FIXME: Consider if we need to output qualifiers for 'Class<p>'.
5396 // Since this is a binary compatibility issue, need to consult with runtime
5397 // folks. Fortunately, this is a *very* obsure construct.
Steve Naroff14108da2009-07-10 23:34:53 +00005398 S += '#';
5399 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005400 }
Mike Stump1eb44332009-09-09 15:08:12 +00005401
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005402 if (OPT->isObjCQualifiedIdType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005403 getObjCEncodingForTypeImpl(getObjCIdType(), S,
Steve Naroff14108da2009-07-10 23:34:53 +00005404 ExpandPointedToStructures,
5405 ExpandStructures, FD);
Bob Wilsondc8dab62011-11-30 01:57:58 +00005406 if (FD || EncodingProperty || EncodeClassNames) {
Steve Naroff14108da2009-07-10 23:34:53 +00005407 // Note that we do extended encoding of protocol qualifer list
5408 // Only when doing ivar or property encoding.
Steve Naroff14108da2009-07-10 23:34:53 +00005409 S += '"';
Steve Naroff67ef8ea2009-07-20 17:56:53 +00005410 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
5411 E = OPT->qual_end(); I != E; ++I) {
Steve Naroff14108da2009-07-10 23:34:53 +00005412 S += '<';
5413 S += (*I)->getNameAsString();
5414 S += '>';
5415 }
5416 S += '"';
5417 }
5418 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005419 }
Mike Stump1eb44332009-09-09 15:08:12 +00005420
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005421 QualType PointeeTy = OPT->getPointeeType();
5422 if (!EncodingProperty &&
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005423 isa<TypedefType>(PointeeTy.getTypePtr()) &&
5424 !EncodePointerToObjCTypedef) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005425 // Another historical/compatibility reason.
Mike Stump1eb44332009-09-09 15:08:12 +00005426 // We encode the underlying type which comes out as
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005427 // {...};
5428 S += '^';
Mike Stump1eb44332009-09-09 15:08:12 +00005429 getObjCEncodingForTypeImpl(PointeeTy, S,
5430 false, ExpandPointedToStructures,
Fariborz Jahanian17c1a2e2013-02-15 21:14:50 +00005431 NULL,
5432 false, false, false, false, false,
5433 /*EncodePointerToObjCTypedef*/true);
Steve Naroff14108da2009-07-10 23:34:53 +00005434 return;
5435 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005436
5437 S += '@';
Bob Wilsondc8dab62011-11-30 01:57:58 +00005438 if (OPT->getInterfaceDecl() &&
5439 (FD || EncodingProperty || EncodeClassNames)) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005440 S += '"';
Steve Naroff27d20a22009-10-28 22:03:49 +00005441 S += OPT->getInterfaceDecl()->getIdentifier()->getName();
Steve Naroff67ef8ea2009-07-20 17:56:53 +00005442 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
5443 E = OPT->qual_end(); I != E; ++I) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005444 S += '<';
5445 S += (*I)->getNameAsString();
5446 S += '>';
Mike Stump1eb44332009-09-09 15:08:12 +00005447 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00005448 S += '"';
5449 }
5450 return;
5451 }
Mike Stump1eb44332009-09-09 15:08:12 +00005452
John McCall532ec7b2010-05-17 23:56:34 +00005453 // gcc just blithely ignores member pointers.
John McCall3624e9e2012-12-20 02:45:14 +00005454 // FIXME: we shoul do better than that. 'M' is available.
5455 case Type::MemberPointer:
John McCall532ec7b2010-05-17 23:56:34 +00005456 return;
Fariborz Jahaniane6012c72010-10-07 21:25:25 +00005457
John McCall3624e9e2012-12-20 02:45:14 +00005458 case Type::Vector:
5459 case Type::ExtVector:
Fariborz Jahaniane6012c72010-10-07 21:25:25 +00005460 // This matches gcc's encoding, even though technically it is
5461 // insufficient.
5462 // FIXME. We should do a better job than gcc.
5463 return;
John McCall3624e9e2012-12-20 02:45:14 +00005464
Richard Smithdc7a4f52013-04-30 13:56:41 +00005465 case Type::Auto:
5466 // We could see an undeduced auto type here during error recovery.
5467 // Just ignore it.
5468 return;
5469
John McCall3624e9e2012-12-20 02:45:14 +00005470#define ABSTRACT_TYPE(KIND, BASE)
5471#define TYPE(KIND, BASE)
5472#define DEPENDENT_TYPE(KIND, BASE) \
5473 case Type::KIND:
5474#define NON_CANONICAL_TYPE(KIND, BASE) \
5475 case Type::KIND:
5476#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \
5477 case Type::KIND:
5478#include "clang/AST/TypeNodes.def"
5479 llvm_unreachable("@encode for dependent type!");
Fariborz Jahaniane6012c72010-10-07 21:25:25 +00005480 }
John McCall3624e9e2012-12-20 02:45:14 +00005481 llvm_unreachable("bad type kind!");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00005482}
5483
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005484void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl,
5485 std::string &S,
5486 const FieldDecl *FD,
5487 bool includeVBases) const {
5488 assert(RDecl && "Expected non-null RecordDecl");
5489 assert(!RDecl->isUnion() && "Should not be called for unions");
5490 if (!RDecl->getDefinition())
5491 return;
5492
5493 CXXRecordDecl *CXXRec = dyn_cast<CXXRecordDecl>(RDecl);
5494 std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets;
5495 const ASTRecordLayout &layout = getASTRecordLayout(RDecl);
5496
5497 if (CXXRec) {
5498 for (CXXRecordDecl::base_class_iterator
5499 BI = CXXRec->bases_begin(),
5500 BE = CXXRec->bases_end(); BI != BE; ++BI) {
5501 if (!BI->isVirtual()) {
5502 CXXRecordDecl *base = BI->getType()->getAsCXXRecordDecl();
Argyrios Kyrtzidis829f2002011-06-17 23:19:38 +00005503 if (base->isEmpty())
5504 continue;
Benjamin Kramerd4f51982012-07-04 18:45:14 +00005505 uint64_t offs = toBits(layout.getBaseClassOffset(base));
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005506 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
5507 std::make_pair(offs, base));
5508 }
5509 }
5510 }
5511
5512 unsigned i = 0;
5513 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
5514 FieldEnd = RDecl->field_end();
5515 Field != FieldEnd; ++Field, ++i) {
5516 uint64_t offs = layout.getFieldOffset(i);
5517 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
David Blaikie581deb32012-06-06 20:45:41 +00005518 std::make_pair(offs, *Field));
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005519 }
5520
5521 if (CXXRec && includeVBases) {
5522 for (CXXRecordDecl::base_class_iterator
5523 BI = CXXRec->vbases_begin(),
5524 BE = CXXRec->vbases_end(); BI != BE; ++BI) {
5525 CXXRecordDecl *base = BI->getType()->getAsCXXRecordDecl();
Argyrios Kyrtzidis829f2002011-06-17 23:19:38 +00005526 if (base->isEmpty())
5527 continue;
Benjamin Kramerd4f51982012-07-04 18:45:14 +00005528 uint64_t offs = toBits(layout.getVBaseClassOffset(base));
Argyrios Kyrtzidis19aa8602011-09-26 18:14:24 +00005529 if (FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end())
5530 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(),
5531 std::make_pair(offs, base));
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005532 }
5533 }
5534
5535 CharUnits size;
5536 if (CXXRec) {
5537 size = includeVBases ? layout.getSize() : layout.getNonVirtualSize();
5538 } else {
5539 size = layout.getSize();
5540 }
5541
5542 uint64_t CurOffs = 0;
5543 std::multimap<uint64_t, NamedDecl *>::iterator
5544 CurLayObj = FieldOrBaseOffsets.begin();
5545
Douglas Gregor58db7a52012-04-27 22:30:01 +00005546 if (CXXRec && CXXRec->isDynamicClass() &&
5547 (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) {
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005548 if (FD) {
5549 S += "\"_vptr$";
5550 std::string recname = CXXRec->getNameAsString();
5551 if (recname.empty()) recname = "?";
5552 S += recname;
5553 S += '"';
5554 }
5555 S += "^^?";
5556 CurOffs += getTypeSize(VoidPtrTy);
5557 }
5558
5559 if (!RDecl->hasFlexibleArrayMember()) {
5560 // Mark the end of the structure.
5561 uint64_t offs = toBits(size);
5562 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
5563 std::make_pair(offs, (NamedDecl*)0));
5564 }
5565
5566 for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) {
5567 assert(CurOffs <= CurLayObj->first);
5568
5569 if (CurOffs < CurLayObj->first) {
5570 uint64_t padding = CurLayObj->first - CurOffs;
5571 // FIXME: There doesn't seem to be a way to indicate in the encoding that
5572 // packing/alignment of members is different that normal, in which case
5573 // the encoding will be out-of-sync with the real layout.
5574 // If the runtime switches to just consider the size of types without
5575 // taking into account alignment, we could make padding explicit in the
5576 // encoding (e.g. using arrays of chars). The encoding strings would be
5577 // longer then though.
5578 CurOffs += padding;
5579 }
5580
5581 NamedDecl *dcl = CurLayObj->second;
5582 if (dcl == 0)
5583 break; // reached end of structure.
5584
5585 if (CXXRecordDecl *base = dyn_cast<CXXRecordDecl>(dcl)) {
5586 // We expand the bases without their virtual bases since those are going
5587 // in the initial structure. Note that this differs from gcc which
5588 // expands virtual bases each time one is encountered in the hierarchy,
5589 // making the encoding type bigger than it really is.
5590 getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false);
Argyrios Kyrtzidis829f2002011-06-17 23:19:38 +00005591 assert(!base->isEmpty());
5592 CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize());
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005593 } else {
5594 FieldDecl *field = cast<FieldDecl>(dcl);
5595 if (FD) {
5596 S += '"';
5597 S += field->getNameAsString();
5598 S += '"';
5599 }
5600
5601 if (field->isBitField()) {
5602 EncodeBitField(this, S, field->getType(), field);
Richard Smitha6b8b2c2011-10-10 18:28:20 +00005603 CurOffs += field->getBitWidthValue(*this);
Argyrios Kyrtzidis26361972011-05-17 00:46:38 +00005604 } else {
5605 QualType qt = field->getType();
5606 getLegacyIntegralTypeEncoding(qt);
5607 getObjCEncodingForTypeImpl(qt, S, false, true, FD,
5608 /*OutermostType*/false,
5609 /*EncodingProperty*/false,
5610 /*StructField*/true);
5611 CurOffs += getTypeSize(field->getType());
5612 }
5613 }
5614 }
5615}
5616
Mike Stump1eb44332009-09-09 15:08:12 +00005617void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00005618 std::string& S) const {
5619 if (QT & Decl::OBJC_TQ_In)
5620 S += 'n';
5621 if (QT & Decl::OBJC_TQ_Inout)
5622 S += 'N';
5623 if (QT & Decl::OBJC_TQ_Out)
5624 S += 'o';
5625 if (QT & Decl::OBJC_TQ_Bycopy)
5626 S += 'O';
5627 if (QT & Decl::OBJC_TQ_Byref)
5628 S += 'R';
5629 if (QT & Decl::OBJC_TQ_Oneway)
5630 S += 'V';
5631}
5632
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00005633TypedefDecl *ASTContext::getObjCIdDecl() const {
5634 if (!ObjCIdDecl) {
5635 QualType T = getObjCObjectType(ObjCBuiltinIdTy, 0, 0);
5636 T = getObjCObjectPointerType(T);
5637 TypeSourceInfo *IdInfo = getTrivialTypeSourceInfo(T);
5638 ObjCIdDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
5639 getTranslationUnitDecl(),
5640 SourceLocation(), SourceLocation(),
5641 &Idents.get("id"), IdInfo);
5642 }
5643
5644 return ObjCIdDecl;
Steve Naroff7e219e42007-10-15 14:41:52 +00005645}
5646
Douglas Gregor7a27ea52011-08-12 06:17:30 +00005647TypedefDecl *ASTContext::getObjCSelDecl() const {
5648 if (!ObjCSelDecl) {
5649 QualType SelT = getPointerType(ObjCBuiltinSelTy);
5650 TypeSourceInfo *SelInfo = getTrivialTypeSourceInfo(SelT);
5651 ObjCSelDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
5652 getTranslationUnitDecl(),
5653 SourceLocation(), SourceLocation(),
5654 &Idents.get("SEL"), SelInfo);
5655 }
5656 return ObjCSelDecl;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00005657}
5658
Douglas Gregor79d67262011-08-12 05:59:41 +00005659TypedefDecl *ASTContext::getObjCClassDecl() const {
5660 if (!ObjCClassDecl) {
5661 QualType T = getObjCObjectType(ObjCBuiltinClassTy, 0, 0);
5662 T = getObjCObjectPointerType(T);
5663 TypeSourceInfo *ClassInfo = getTrivialTypeSourceInfo(T);
5664 ObjCClassDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this),
5665 getTranslationUnitDecl(),
5666 SourceLocation(), SourceLocation(),
5667 &Idents.get("Class"), ClassInfo);
5668 }
5669
5670 return ObjCClassDecl;
Anders Carlsson8baaca52007-10-31 02:53:19 +00005671}
5672
Douglas Gregora6ea10e2012-01-17 18:09:05 +00005673ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const {
5674 if (!ObjCProtocolClassDecl) {
5675 ObjCProtocolClassDecl
5676 = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(),
5677 SourceLocation(),
5678 &Idents.get("Protocol"),
5679 /*PrevDecl=*/0,
5680 SourceLocation(), true);
5681 }
5682
5683 return ObjCProtocolClassDecl;
5684}
5685
Meador Ingec5613b22012-06-16 03:34:49 +00005686//===----------------------------------------------------------------------===//
5687// __builtin_va_list Construction Functions
5688//===----------------------------------------------------------------------===//
5689
5690static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) {
5691 // typedef char* __builtin_va_list;
5692 QualType CharPtrType = Context->getPointerType(Context->CharTy);
5693 TypeSourceInfo *TInfo
5694 = Context->getTrivialTypeSourceInfo(CharPtrType);
5695
5696 TypedefDecl *VaListTypeDecl
5697 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5698 Context->getTranslationUnitDecl(),
5699 SourceLocation(), SourceLocation(),
5700 &Context->Idents.get("__builtin_va_list"),
5701 TInfo);
5702 return VaListTypeDecl;
5703}
5704
5705static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) {
5706 // typedef void* __builtin_va_list;
5707 QualType VoidPtrType = Context->getPointerType(Context->VoidTy);
5708 TypeSourceInfo *TInfo
5709 = Context->getTrivialTypeSourceInfo(VoidPtrType);
5710
5711 TypedefDecl *VaListTypeDecl
5712 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5713 Context->getTranslationUnitDecl(),
5714 SourceLocation(), SourceLocation(),
5715 &Context->Idents.get("__builtin_va_list"),
5716 TInfo);
5717 return VaListTypeDecl;
5718}
5719
Tim Northoverc264e162013-01-31 12:13:10 +00005720static TypedefDecl *
5721CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) {
5722 RecordDecl *VaListTagDecl;
5723 if (Context->getLangOpts().CPlusPlus) {
5724 // namespace std { struct __va_list {
5725 NamespaceDecl *NS;
5726 NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
5727 Context->getTranslationUnitDecl(),
5728 /*Inline*/false, SourceLocation(),
5729 SourceLocation(), &Context->Idents.get("std"),
5730 /*PrevDecl*/0);
5731
5732 VaListTagDecl = CXXRecordDecl::Create(*Context, TTK_Struct,
5733 Context->getTranslationUnitDecl(),
5734 SourceLocation(), SourceLocation(),
5735 &Context->Idents.get("__va_list"));
5736 VaListTagDecl->setDeclContext(NS);
5737 } else {
5738 // struct __va_list
5739 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
5740 Context->getTranslationUnitDecl(),
5741 &Context->Idents.get("__va_list"));
5742 }
5743
5744 VaListTagDecl->startDefinition();
5745
5746 const size_t NumFields = 5;
5747 QualType FieldTypes[NumFields];
5748 const char *FieldNames[NumFields];
5749
5750 // void *__stack;
5751 FieldTypes[0] = Context->getPointerType(Context->VoidTy);
5752 FieldNames[0] = "__stack";
5753
5754 // void *__gr_top;
5755 FieldTypes[1] = Context->getPointerType(Context->VoidTy);
5756 FieldNames[1] = "__gr_top";
5757
5758 // void *__vr_top;
5759 FieldTypes[2] = Context->getPointerType(Context->VoidTy);
5760 FieldNames[2] = "__vr_top";
5761
5762 // int __gr_offs;
5763 FieldTypes[3] = Context->IntTy;
5764 FieldNames[3] = "__gr_offs";
5765
5766 // int __vr_offs;
5767 FieldTypes[4] = Context->IntTy;
5768 FieldNames[4] = "__vr_offs";
5769
5770 // Create fields
5771 for (unsigned i = 0; i < NumFields; ++i) {
5772 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
5773 VaListTagDecl,
5774 SourceLocation(),
5775 SourceLocation(),
5776 &Context->Idents.get(FieldNames[i]),
5777 FieldTypes[i], /*TInfo=*/0,
5778 /*BitWidth=*/0,
5779 /*Mutable=*/false,
5780 ICIS_NoInit);
5781 Field->setAccess(AS_public);
5782 VaListTagDecl->addDecl(Field);
5783 }
5784 VaListTagDecl->completeDefinition();
5785 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
5786 Context->VaListTagTy = VaListTagType;
5787
5788 // } __builtin_va_list;
5789 TypedefDecl *VaListTypedefDecl
5790 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5791 Context->getTranslationUnitDecl(),
5792 SourceLocation(), SourceLocation(),
5793 &Context->Idents.get("__builtin_va_list"),
5794 Context->getTrivialTypeSourceInfo(VaListTagType));
5795
5796 return VaListTypedefDecl;
5797}
5798
Meador Ingec5613b22012-06-16 03:34:49 +00005799static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) {
5800 // typedef struct __va_list_tag {
5801 RecordDecl *VaListTagDecl;
5802
5803 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
5804 Context->getTranslationUnitDecl(),
5805 &Context->Idents.get("__va_list_tag"));
5806 VaListTagDecl->startDefinition();
5807
5808 const size_t NumFields = 5;
5809 QualType FieldTypes[NumFields];
5810 const char *FieldNames[NumFields];
5811
5812 // unsigned char gpr;
5813 FieldTypes[0] = Context->UnsignedCharTy;
5814 FieldNames[0] = "gpr";
5815
5816 // unsigned char fpr;
5817 FieldTypes[1] = Context->UnsignedCharTy;
5818 FieldNames[1] = "fpr";
5819
5820 // unsigned short reserved;
5821 FieldTypes[2] = Context->UnsignedShortTy;
5822 FieldNames[2] = "reserved";
5823
5824 // void* overflow_arg_area;
5825 FieldTypes[3] = Context->getPointerType(Context->VoidTy);
5826 FieldNames[3] = "overflow_arg_area";
5827
5828 // void* reg_save_area;
5829 FieldTypes[4] = Context->getPointerType(Context->VoidTy);
5830 FieldNames[4] = "reg_save_area";
5831
5832 // Create fields
5833 for (unsigned i = 0; i < NumFields; ++i) {
5834 FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl,
5835 SourceLocation(),
5836 SourceLocation(),
5837 &Context->Idents.get(FieldNames[i]),
5838 FieldTypes[i], /*TInfo=*/0,
5839 /*BitWidth=*/0,
5840 /*Mutable=*/false,
5841 ICIS_NoInit);
5842 Field->setAccess(AS_public);
5843 VaListTagDecl->addDecl(Field);
5844 }
5845 VaListTagDecl->completeDefinition();
5846 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
Meador Ingefb40e3f2012-07-01 15:57:25 +00005847 Context->VaListTagTy = VaListTagType;
Meador Ingec5613b22012-06-16 03:34:49 +00005848
5849 // } __va_list_tag;
5850 TypedefDecl *VaListTagTypedefDecl
5851 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5852 Context->getTranslationUnitDecl(),
5853 SourceLocation(), SourceLocation(),
5854 &Context->Idents.get("__va_list_tag"),
5855 Context->getTrivialTypeSourceInfo(VaListTagType));
5856 QualType VaListTagTypedefType =
5857 Context->getTypedefType(VaListTagTypedefDecl);
5858
5859 // typedef __va_list_tag __builtin_va_list[1];
5860 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
5861 QualType VaListTagArrayType
5862 = Context->getConstantArrayType(VaListTagTypedefType,
5863 Size, ArrayType::Normal, 0);
5864 TypeSourceInfo *TInfo
5865 = Context->getTrivialTypeSourceInfo(VaListTagArrayType);
5866 TypedefDecl *VaListTypedefDecl
5867 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5868 Context->getTranslationUnitDecl(),
5869 SourceLocation(), SourceLocation(),
5870 &Context->Idents.get("__builtin_va_list"),
5871 TInfo);
5872
5873 return VaListTypedefDecl;
5874}
5875
5876static TypedefDecl *
5877CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) {
5878 // typedef struct __va_list_tag {
5879 RecordDecl *VaListTagDecl;
5880 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
5881 Context->getTranslationUnitDecl(),
5882 &Context->Idents.get("__va_list_tag"));
5883 VaListTagDecl->startDefinition();
5884
5885 const size_t NumFields = 4;
5886 QualType FieldTypes[NumFields];
5887 const char *FieldNames[NumFields];
5888
5889 // unsigned gp_offset;
5890 FieldTypes[0] = Context->UnsignedIntTy;
5891 FieldNames[0] = "gp_offset";
5892
5893 // unsigned fp_offset;
5894 FieldTypes[1] = Context->UnsignedIntTy;
5895 FieldNames[1] = "fp_offset";
5896
5897 // void* overflow_arg_area;
5898 FieldTypes[2] = Context->getPointerType(Context->VoidTy);
5899 FieldNames[2] = "overflow_arg_area";
5900
5901 // void* reg_save_area;
5902 FieldTypes[3] = Context->getPointerType(Context->VoidTy);
5903 FieldNames[3] = "reg_save_area";
5904
5905 // Create fields
5906 for (unsigned i = 0; i < NumFields; ++i) {
5907 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
5908 VaListTagDecl,
5909 SourceLocation(),
5910 SourceLocation(),
5911 &Context->Idents.get(FieldNames[i]),
5912 FieldTypes[i], /*TInfo=*/0,
5913 /*BitWidth=*/0,
5914 /*Mutable=*/false,
5915 ICIS_NoInit);
5916 Field->setAccess(AS_public);
5917 VaListTagDecl->addDecl(Field);
5918 }
5919 VaListTagDecl->completeDefinition();
5920 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
Meador Ingefb40e3f2012-07-01 15:57:25 +00005921 Context->VaListTagTy = VaListTagType;
Meador Ingec5613b22012-06-16 03:34:49 +00005922
5923 // } __va_list_tag;
5924 TypedefDecl *VaListTagTypedefDecl
5925 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5926 Context->getTranslationUnitDecl(),
5927 SourceLocation(), SourceLocation(),
5928 &Context->Idents.get("__va_list_tag"),
5929 Context->getTrivialTypeSourceInfo(VaListTagType));
5930 QualType VaListTagTypedefType =
5931 Context->getTypedefType(VaListTagTypedefDecl);
5932
5933 // typedef __va_list_tag __builtin_va_list[1];
5934 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
5935 QualType VaListTagArrayType
5936 = Context->getConstantArrayType(VaListTagTypedefType,
5937 Size, ArrayType::Normal,0);
5938 TypeSourceInfo *TInfo
5939 = Context->getTrivialTypeSourceInfo(VaListTagArrayType);
5940 TypedefDecl *VaListTypedefDecl
5941 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5942 Context->getTranslationUnitDecl(),
5943 SourceLocation(), SourceLocation(),
5944 &Context->Idents.get("__builtin_va_list"),
5945 TInfo);
5946
5947 return VaListTypedefDecl;
5948}
5949
5950static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) {
5951 // typedef int __builtin_va_list[4];
5952 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4);
5953 QualType IntArrayType
5954 = Context->getConstantArrayType(Context->IntTy,
5955 Size, ArrayType::Normal, 0);
5956 TypedefDecl *VaListTypedefDecl
5957 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
5958 Context->getTranslationUnitDecl(),
5959 SourceLocation(), SourceLocation(),
5960 &Context->Idents.get("__builtin_va_list"),
5961 Context->getTrivialTypeSourceInfo(IntArrayType));
5962
5963 return VaListTypedefDecl;
5964}
5965
Logan Chieneae5a8202012-10-10 06:56:20 +00005966static TypedefDecl *
5967CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) {
5968 RecordDecl *VaListDecl;
5969 if (Context->getLangOpts().CPlusPlus) {
5970 // namespace std { struct __va_list {
5971 NamespaceDecl *NS;
5972 NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
5973 Context->getTranslationUnitDecl(),
5974 /*Inline*/false, SourceLocation(),
5975 SourceLocation(), &Context->Idents.get("std"),
5976 /*PrevDecl*/0);
5977
5978 VaListDecl = CXXRecordDecl::Create(*Context, TTK_Struct,
5979 Context->getTranslationUnitDecl(),
5980 SourceLocation(), SourceLocation(),
5981 &Context->Idents.get("__va_list"));
5982
5983 VaListDecl->setDeclContext(NS);
5984
5985 } else {
5986 // struct __va_list {
5987 VaListDecl = CreateRecordDecl(*Context, TTK_Struct,
5988 Context->getTranslationUnitDecl(),
5989 &Context->Idents.get("__va_list"));
5990 }
5991
5992 VaListDecl->startDefinition();
5993
5994 // void * __ap;
5995 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
5996 VaListDecl,
5997 SourceLocation(),
5998 SourceLocation(),
5999 &Context->Idents.get("__ap"),
6000 Context->getPointerType(Context->VoidTy),
6001 /*TInfo=*/0,
6002 /*BitWidth=*/0,
6003 /*Mutable=*/false,
6004 ICIS_NoInit);
6005 Field->setAccess(AS_public);
6006 VaListDecl->addDecl(Field);
6007
6008 // };
6009 VaListDecl->completeDefinition();
6010
6011 // typedef struct __va_list __builtin_va_list;
6012 TypeSourceInfo *TInfo
6013 = Context->getTrivialTypeSourceInfo(Context->getRecordType(VaListDecl));
6014
6015 TypedefDecl *VaListTypeDecl
6016 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
6017 Context->getTranslationUnitDecl(),
6018 SourceLocation(), SourceLocation(),
6019 &Context->Idents.get("__builtin_va_list"),
6020 TInfo);
6021
6022 return VaListTypeDecl;
6023}
6024
Ulrich Weigandb8409212013-05-06 16:26:41 +00006025static TypedefDecl *
6026CreateSystemZBuiltinVaListDecl(const ASTContext *Context) {
6027 // typedef struct __va_list_tag {
6028 RecordDecl *VaListTagDecl;
6029 VaListTagDecl = CreateRecordDecl(*Context, TTK_Struct,
6030 Context->getTranslationUnitDecl(),
6031 &Context->Idents.get("__va_list_tag"));
6032 VaListTagDecl->startDefinition();
6033
6034 const size_t NumFields = 4;
6035 QualType FieldTypes[NumFields];
6036 const char *FieldNames[NumFields];
6037
6038 // long __gpr;
6039 FieldTypes[0] = Context->LongTy;
6040 FieldNames[0] = "__gpr";
6041
6042 // long __fpr;
6043 FieldTypes[1] = Context->LongTy;
6044 FieldNames[1] = "__fpr";
6045
6046 // void *__overflow_arg_area;
6047 FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6048 FieldNames[2] = "__overflow_arg_area";
6049
6050 // void *__reg_save_area;
6051 FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6052 FieldNames[3] = "__reg_save_area";
6053
6054 // Create fields
6055 for (unsigned i = 0; i < NumFields; ++i) {
6056 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6057 VaListTagDecl,
6058 SourceLocation(),
6059 SourceLocation(),
6060 &Context->Idents.get(FieldNames[i]),
6061 FieldTypes[i], /*TInfo=*/0,
6062 /*BitWidth=*/0,
6063 /*Mutable=*/false,
6064 ICIS_NoInit);
6065 Field->setAccess(AS_public);
6066 VaListTagDecl->addDecl(Field);
6067 }
6068 VaListTagDecl->completeDefinition();
6069 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6070 Context->VaListTagTy = VaListTagType;
6071
6072 // } __va_list_tag;
6073 TypedefDecl *VaListTagTypedefDecl
6074 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
6075 Context->getTranslationUnitDecl(),
6076 SourceLocation(), SourceLocation(),
6077 &Context->Idents.get("__va_list_tag"),
6078 Context->getTrivialTypeSourceInfo(VaListTagType));
6079 QualType VaListTagTypedefType =
6080 Context->getTypedefType(VaListTagTypedefDecl);
6081
6082 // typedef __va_list_tag __builtin_va_list[1];
6083 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6084 QualType VaListTagArrayType
6085 = Context->getConstantArrayType(VaListTagTypedefType,
6086 Size, ArrayType::Normal,0);
6087 TypeSourceInfo *TInfo
6088 = Context->getTrivialTypeSourceInfo(VaListTagArrayType);
6089 TypedefDecl *VaListTypedefDecl
6090 = TypedefDecl::Create(const_cast<ASTContext &>(*Context),
6091 Context->getTranslationUnitDecl(),
6092 SourceLocation(), SourceLocation(),
6093 &Context->Idents.get("__builtin_va_list"),
6094 TInfo);
6095
6096 return VaListTypedefDecl;
6097}
6098
Meador Ingec5613b22012-06-16 03:34:49 +00006099static TypedefDecl *CreateVaListDecl(const ASTContext *Context,
6100 TargetInfo::BuiltinVaListKind Kind) {
6101 switch (Kind) {
6102 case TargetInfo::CharPtrBuiltinVaList:
6103 return CreateCharPtrBuiltinVaListDecl(Context);
6104 case TargetInfo::VoidPtrBuiltinVaList:
6105 return CreateVoidPtrBuiltinVaListDecl(Context);
Tim Northoverc264e162013-01-31 12:13:10 +00006106 case TargetInfo::AArch64ABIBuiltinVaList:
6107 return CreateAArch64ABIBuiltinVaListDecl(Context);
Meador Ingec5613b22012-06-16 03:34:49 +00006108 case TargetInfo::PowerABIBuiltinVaList:
6109 return CreatePowerABIBuiltinVaListDecl(Context);
6110 case TargetInfo::X86_64ABIBuiltinVaList:
6111 return CreateX86_64ABIBuiltinVaListDecl(Context);
6112 case TargetInfo::PNaClABIBuiltinVaList:
6113 return CreatePNaClABIBuiltinVaListDecl(Context);
Logan Chieneae5a8202012-10-10 06:56:20 +00006114 case TargetInfo::AAPCSABIBuiltinVaList:
6115 return CreateAAPCSABIBuiltinVaListDecl(Context);
Ulrich Weigandb8409212013-05-06 16:26:41 +00006116 case TargetInfo::SystemZBuiltinVaList:
6117 return CreateSystemZBuiltinVaListDecl(Context);
Meador Ingec5613b22012-06-16 03:34:49 +00006118 }
6119
6120 llvm_unreachable("Unhandled __builtin_va_list type kind");
6121}
6122
6123TypedefDecl *ASTContext::getBuiltinVaListDecl() const {
6124 if (!BuiltinVaListDecl)
6125 BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind());
6126
6127 return BuiltinVaListDecl;
6128}
6129
Meador Ingefb40e3f2012-07-01 15:57:25 +00006130QualType ASTContext::getVaListTagType() const {
6131 // Force the creation of VaListTagTy by building the __builtin_va_list
6132 // declaration.
6133 if (VaListTagTy.isNull())
6134 (void) getBuiltinVaListDecl();
6135
6136 return VaListTagTy;
6137}
6138
Ted Kremeneka526c5c2008-01-07 19:49:32 +00006139void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
Mike Stump1eb44332009-09-09 15:08:12 +00006140 assert(ObjCConstantStringType.isNull() &&
Steve Naroff21988912007-10-15 23:35:17 +00006141 "'NSConstantString' type already set!");
Mike Stump1eb44332009-09-09 15:08:12 +00006142
Ted Kremeneka526c5c2008-01-07 19:49:32 +00006143 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Naroff21988912007-10-15 23:35:17 +00006144}
6145
John McCall0bd6feb2009-12-02 08:04:21 +00006146/// \brief Retrieve the template name that corresponds to a non-empty
6147/// lookup.
Jay Foad4ba2a172011-01-12 09:06:06 +00006148TemplateName
6149ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin,
6150 UnresolvedSetIterator End) const {
John McCall0bd6feb2009-12-02 08:04:21 +00006151 unsigned size = End - Begin;
6152 assert(size > 1 && "set is not overloaded!");
6153
6154 void *memory = Allocate(sizeof(OverloadedTemplateStorage) +
6155 size * sizeof(FunctionTemplateDecl*));
6156 OverloadedTemplateStorage *OT = new(memory) OverloadedTemplateStorage(size);
6157
6158 NamedDecl **Storage = OT->getStorage();
John McCalleec51cf2010-01-20 00:46:10 +00006159 for (UnresolvedSetIterator I = Begin; I != End; ++I) {
John McCall0bd6feb2009-12-02 08:04:21 +00006160 NamedDecl *D = *I;
6161 assert(isa<FunctionTemplateDecl>(D) ||
6162 (isa<UsingShadowDecl>(D) &&
6163 isa<FunctionTemplateDecl>(D->getUnderlyingDecl())));
6164 *Storage++ = D;
6165 }
6166
6167 return TemplateName(OT);
6168}
6169
Douglas Gregor7532dc62009-03-30 22:58:21 +00006170/// \brief Retrieve the template name that represents a qualified
6171/// template name such as \c std::vector.
Jay Foad4ba2a172011-01-12 09:06:06 +00006172TemplateName
6173ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
6174 bool TemplateKeyword,
6175 TemplateDecl *Template) const {
Douglas Gregor0f0ea2a2011-03-03 17:04:51 +00006176 assert(NNS && "Missing nested-name-specifier in qualified template name");
6177
Douglas Gregor789b1f62010-02-04 18:10:26 +00006178 // FIXME: Canonicalization?
Douglas Gregor7532dc62009-03-30 22:58:21 +00006179 llvm::FoldingSetNodeID ID;
6180 QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
6181
6182 void *InsertPos = 0;
6183 QualifiedTemplateName *QTN =
6184 QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6185 if (!QTN) {
Richard Smith2f47cab2012-08-16 01:19:31 +00006186 QTN = new (*this, llvm::alignOf<QualifiedTemplateName>())
6187 QualifiedTemplateName(NNS, TemplateKeyword, Template);
Douglas Gregor7532dc62009-03-30 22:58:21 +00006188 QualifiedTemplateNames.InsertNode(QTN, InsertPos);
6189 }
6190
6191 return TemplateName(QTN);
6192}
6193
6194/// \brief Retrieve the template name that represents a dependent
6195/// template name such as \c MetaFun::template apply.
Jay Foad4ba2a172011-01-12 09:06:06 +00006196TemplateName
6197ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
6198 const IdentifierInfo *Name) const {
Mike Stump1eb44332009-09-09 15:08:12 +00006199 assert((!NNS || NNS->isDependent()) &&
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00006200 "Nested name specifier must be dependent");
Douglas Gregor7532dc62009-03-30 22:58:21 +00006201
6202 llvm::FoldingSetNodeID ID;
6203 DependentTemplateName::Profile(ID, NNS, Name);
6204
6205 void *InsertPos = 0;
6206 DependentTemplateName *QTN =
6207 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6208
6209 if (QTN)
6210 return TemplateName(QTN);
6211
6212 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6213 if (CanonNNS == NNS) {
Richard Smith2f47cab2012-08-16 01:19:31 +00006214 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6215 DependentTemplateName(NNS, Name);
Douglas Gregor7532dc62009-03-30 22:58:21 +00006216 } else {
6217 TemplateName Canon = getDependentTemplateName(CanonNNS, Name);
Richard Smith2f47cab2012-08-16 01:19:31 +00006218 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6219 DependentTemplateName(NNS, Name, Canon);
Douglas Gregor789b1f62010-02-04 18:10:26 +00006220 DependentTemplateName *CheckQTN =
6221 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6222 assert(!CheckQTN && "Dependent type name canonicalization broken");
6223 (void)CheckQTN;
Douglas Gregor7532dc62009-03-30 22:58:21 +00006224 }
6225
6226 DependentTemplateNames.InsertNode(QTN, InsertPos);
6227 return TemplateName(QTN);
6228}
6229
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006230/// \brief Retrieve the template name that represents a dependent
6231/// template name such as \c MetaFun::template operator+.
6232TemplateName
6233ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
Jay Foad4ba2a172011-01-12 09:06:06 +00006234 OverloadedOperatorKind Operator) const {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006235 assert((!NNS || NNS->isDependent()) &&
6236 "Nested name specifier must be dependent");
6237
6238 llvm::FoldingSetNodeID ID;
6239 DependentTemplateName::Profile(ID, NNS, Operator);
6240
6241 void *InsertPos = 0;
Douglas Gregor789b1f62010-02-04 18:10:26 +00006242 DependentTemplateName *QTN
6243 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006244
6245 if (QTN)
6246 return TemplateName(QTN);
6247
6248 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6249 if (CanonNNS == NNS) {
Richard Smith2f47cab2012-08-16 01:19:31 +00006250 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6251 DependentTemplateName(NNS, Operator);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006252 } else {
6253 TemplateName Canon = getDependentTemplateName(CanonNNS, Operator);
Richard Smith2f47cab2012-08-16 01:19:31 +00006254 QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6255 DependentTemplateName(NNS, Operator, Canon);
Douglas Gregor789b1f62010-02-04 18:10:26 +00006256
6257 DependentTemplateName *CheckQTN
6258 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6259 assert(!CheckQTN && "Dependent template name canonicalization broken");
6260 (void)CheckQTN;
Douglas Gregorca1bdd72009-11-04 00:56:37 +00006261 }
6262
6263 DependentTemplateNames.InsertNode(QTN, InsertPos);
6264 return TemplateName(QTN);
6265}
6266
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006267TemplateName
John McCall14606042011-06-30 08:33:18 +00006268ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param,
6269 TemplateName replacement) const {
6270 llvm::FoldingSetNodeID ID;
6271 SubstTemplateTemplateParmStorage::Profile(ID, param, replacement);
6272
6273 void *insertPos = 0;
6274 SubstTemplateTemplateParmStorage *subst
6275 = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos);
6276
6277 if (!subst) {
6278 subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement);
6279 SubstTemplateTemplateParms.InsertNode(subst, insertPos);
6280 }
6281
6282 return TemplateName(subst);
6283}
6284
6285TemplateName
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006286ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param,
6287 const TemplateArgument &ArgPack) const {
6288 ASTContext &Self = const_cast<ASTContext &>(*this);
6289 llvm::FoldingSetNodeID ID;
6290 SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack);
6291
6292 void *InsertPos = 0;
6293 SubstTemplateTemplateParmPackStorage *Subst
6294 = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos);
6295
6296 if (!Subst) {
John McCall14606042011-06-30 08:33:18 +00006297 Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param,
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006298 ArgPack.pack_size(),
6299 ArgPack.pack_begin());
6300 SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos);
6301 }
6302
6303 return TemplateName(Subst);
6304}
6305
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006306/// getFromTargetType - Given one of the integer types provided by
Douglas Gregord9341122008-11-03 15:57:00 +00006307/// TargetInfo, produce the corresponding type. The unsigned @p Type
6308/// is actually a value of type @c TargetInfo::IntType.
John McCalle27ec8a2009-10-23 23:03:21 +00006309CanQualType ASTContext::getFromTargetType(unsigned Type) const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006310 switch (Type) {
John McCalle27ec8a2009-10-23 23:03:21 +00006311 case TargetInfo::NoInt: return CanQualType();
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006312 case TargetInfo::SignedShort: return ShortTy;
6313 case TargetInfo::UnsignedShort: return UnsignedShortTy;
6314 case TargetInfo::SignedInt: return IntTy;
6315 case TargetInfo::UnsignedInt: return UnsignedIntTy;
6316 case TargetInfo::SignedLong: return LongTy;
6317 case TargetInfo::UnsignedLong: return UnsignedLongTy;
6318 case TargetInfo::SignedLongLong: return LongLongTy;
6319 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
6320 }
6321
David Blaikieb219cfc2011-09-23 05:06:16 +00006322 llvm_unreachable("Unhandled TargetInfo::IntType value");
Douglas Gregorb4e66d52008-11-03 14:12:49 +00006323}
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00006324
6325//===----------------------------------------------------------------------===//
6326// Type Predicates.
6327//===----------------------------------------------------------------------===//
6328
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00006329/// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's
6330/// garbage collection attribute.
6331///
John McCallae278a32011-01-12 00:34:59 +00006332Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const {
David Blaikie4e4d0842012-03-11 07:00:24 +00006333 if (getLangOpts().getGC() == LangOptions::NonGC)
John McCallae278a32011-01-12 00:34:59 +00006334 return Qualifiers::GCNone;
6335
David Blaikie4e4d0842012-03-11 07:00:24 +00006336 assert(getLangOpts().ObjC1);
John McCallae278a32011-01-12 00:34:59 +00006337 Qualifiers::GC GCAttrs = Ty.getObjCGCAttr();
6338
6339 // Default behaviour under objective-C's gc is for ObjC pointers
6340 // (or pointers to them) be treated as though they were declared
6341 // as __strong.
6342 if (GCAttrs == Qualifiers::GCNone) {
6343 if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
6344 return Qualifiers::Strong;
6345 else if (Ty->isPointerType())
6346 return getObjCGCAttrKind(Ty->getAs<PointerType>()->getPointeeType());
6347 } else {
6348 // It's not valid to set GC attributes on anything that isn't a
6349 // pointer.
6350#ifndef NDEBUG
6351 QualType CT = Ty->getCanonicalTypeInternal();
6352 while (const ArrayType *AT = dyn_cast<ArrayType>(CT))
6353 CT = AT->getElementType();
6354 assert(CT->isAnyPointerType() || CT->isBlockPointerType());
6355#endif
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00006356 }
Chris Lattnerb7d25532009-02-18 22:53:11 +00006357 return GCAttrs;
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00006358}
6359
Chris Lattner6ac46a42008-04-07 06:51:04 +00006360//===----------------------------------------------------------------------===//
6361// Type Compatibility Testing
6362//===----------------------------------------------------------------------===//
Chris Lattner770951b2007-11-01 05:03:41 +00006363
Mike Stump1eb44332009-09-09 15:08:12 +00006364/// areCompatVectorTypes - Return true if the two specified vector types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00006365/// compatible.
6366static bool areCompatVectorTypes(const VectorType *LHS,
6367 const VectorType *RHS) {
John McCall467b27b2009-10-22 20:10:53 +00006368 assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
Chris Lattner6ac46a42008-04-07 06:51:04 +00006369 return LHS->getElementType() == RHS->getElementType() &&
Chris Lattner61710852008-10-05 17:34:18 +00006370 LHS->getNumElements() == RHS->getNumElements();
Chris Lattner6ac46a42008-04-07 06:51:04 +00006371}
6372
Douglas Gregor255210e2010-08-06 10:14:59 +00006373bool ASTContext::areCompatibleVectorTypes(QualType FirstVec,
6374 QualType SecondVec) {
6375 assert(FirstVec->isVectorType() && "FirstVec should be a vector type");
6376 assert(SecondVec->isVectorType() && "SecondVec should be a vector type");
6377
6378 if (hasSameUnqualifiedType(FirstVec, SecondVec))
6379 return true;
6380
Bob Wilsonf69eb7c2010-11-12 17:24:54 +00006381 // Treat Neon vector types and most AltiVec vector types as if they are the
6382 // equivalent GCC vector types.
Douglas Gregor255210e2010-08-06 10:14:59 +00006383 const VectorType *First = FirstVec->getAs<VectorType>();
6384 const VectorType *Second = SecondVec->getAs<VectorType>();
Bob Wilsonf69eb7c2010-11-12 17:24:54 +00006385 if (First->getNumElements() == Second->getNumElements() &&
Douglas Gregor255210e2010-08-06 10:14:59 +00006386 hasSameType(First->getElementType(), Second->getElementType()) &&
Bob Wilsonf69eb7c2010-11-12 17:24:54 +00006387 First->getVectorKind() != VectorType::AltiVecPixel &&
6388 First->getVectorKind() != VectorType::AltiVecBool &&
6389 Second->getVectorKind() != VectorType::AltiVecPixel &&
6390 Second->getVectorKind() != VectorType::AltiVecBool)
Douglas Gregor255210e2010-08-06 10:14:59 +00006391 return true;
6392
6393 return false;
6394}
6395
Steve Naroff4084c302009-07-23 01:01:38 +00006396//===----------------------------------------------------------------------===//
6397// ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
6398//===----------------------------------------------------------------------===//
6399
6400/// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
6401/// inheritance hierarchy of 'rProto'.
Jay Foad4ba2a172011-01-12 09:06:06 +00006402bool
6403ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
6404 ObjCProtocolDecl *rProto) const {
Douglas Gregor3fc73ee2012-01-01 18:09:12 +00006405 if (declaresSameEntity(lProto, rProto))
Steve Naroff4084c302009-07-23 01:01:38 +00006406 return true;
6407 for (ObjCProtocolDecl::protocol_iterator PI = rProto->protocol_begin(),
6408 E = rProto->protocol_end(); PI != E; ++PI)
6409 if (ProtocolCompatibleWithProtocol(lProto, *PI))
6410 return true;
6411 return false;
6412}
6413
Dmitri Gribenko4c3b8a32012-08-28 02:49:14 +00006414/// QualifiedIdConformsQualifiedId - compare id<pr,...> with id<pr1,...>
Steve Naroff4084c302009-07-23 01:01:38 +00006415/// return true if lhs's protocols conform to rhs's protocol; false
6416/// otherwise.
6417bool ASTContext::QualifiedIdConformsQualifiedId(QualType lhs, QualType rhs) {
6418 if (lhs->isObjCQualifiedIdType() && rhs->isObjCQualifiedIdType())
6419 return ObjCQualifiedIdTypesAreCompatible(lhs, rhs, false);
6420 return false;
6421}
6422
Dmitri Gribenko4c3b8a32012-08-28 02:49:14 +00006423/// ObjCQualifiedClassTypesAreCompatible - compare Class<pr,...> and
6424/// Class<pr1, ...>.
Fariborz Jahaniana8f8dac2010-07-19 22:02:22 +00006425bool ASTContext::ObjCQualifiedClassTypesAreCompatible(QualType lhs,
6426 QualType rhs) {
6427 const ObjCObjectPointerType *lhsQID = lhs->getAs<ObjCObjectPointerType>();
6428 const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
6429 assert ((lhsQID && rhsOPT) && "ObjCQualifiedClassTypesAreCompatible");
6430
6431 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6432 E = lhsQID->qual_end(); I != E; ++I) {
6433 bool match = false;
6434 ObjCProtocolDecl *lhsProto = *I;
6435 for (ObjCObjectPointerType::qual_iterator J = rhsOPT->qual_begin(),
6436 E = rhsOPT->qual_end(); J != E; ++J) {
6437 ObjCProtocolDecl *rhsProto = *J;
6438 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) {
6439 match = true;
6440 break;
6441 }
6442 }
6443 if (!match)
6444 return false;
6445 }
6446 return true;
6447}
6448
Steve Naroff4084c302009-07-23 01:01:38 +00006449/// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
6450/// ObjCQualifiedIDType.
6451bool ASTContext::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs,
6452 bool compare) {
6453 // Allow id<P..> and an 'id' or void* type in all cases.
Mike Stump1eb44332009-09-09 15:08:12 +00006454 if (lhs->isVoidPointerType() ||
Steve Naroff4084c302009-07-23 01:01:38 +00006455 lhs->isObjCIdType() || lhs->isObjCClassType())
6456 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00006457 else if (rhs->isVoidPointerType() ||
Steve Naroff4084c302009-07-23 01:01:38 +00006458 rhs->isObjCIdType() || rhs->isObjCClassType())
6459 return true;
6460
6461 if (const ObjCObjectPointerType *lhsQID = lhs->getAsObjCQualifiedIdType()) {
John McCall183700f2009-09-21 23:43:11 +00006462 const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
Mike Stump1eb44332009-09-09 15:08:12 +00006463
Steve Naroff4084c302009-07-23 01:01:38 +00006464 if (!rhsOPT) return false;
Mike Stump1eb44332009-09-09 15:08:12 +00006465
Steve Naroff4084c302009-07-23 01:01:38 +00006466 if (rhsOPT->qual_empty()) {
Mike Stump1eb44332009-09-09 15:08:12 +00006467 // If the RHS is a unqualified interface pointer "NSString*",
Steve Naroff4084c302009-07-23 01:01:38 +00006468 // make sure we check the class hierarchy.
6469 if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
6470 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6471 E = lhsQID->qual_end(); I != E; ++I) {
6472 // when comparing an id<P> on lhs with a static type on rhs,
6473 // see if static class implements all of id's protocols, directly or
6474 // through its super class and categories.
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00006475 if (!rhsID->ClassImplementsProtocol(*I, true))
Steve Naroff4084c302009-07-23 01:01:38 +00006476 return false;
6477 }
6478 }
6479 // If there are no qualifiers and no interface, we have an 'id'.
6480 return true;
6481 }
Mike Stump1eb44332009-09-09 15:08:12 +00006482 // Both the right and left sides have qualifiers.
Steve Naroff4084c302009-07-23 01:01:38 +00006483 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6484 E = lhsQID->qual_end(); I != E; ++I) {
6485 ObjCProtocolDecl *lhsProto = *I;
6486 bool match = false;
6487
6488 // when comparing an id<P> on lhs with a static type on rhs,
6489 // see if static class implements all of id's protocols, directly or
6490 // through its super class and categories.
6491 for (ObjCObjectPointerType::qual_iterator J = rhsOPT->qual_begin(),
6492 E = rhsOPT->qual_end(); J != E; ++J) {
6493 ObjCProtocolDecl *rhsProto = *J;
6494 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
6495 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
6496 match = true;
6497 break;
6498 }
6499 }
Mike Stump1eb44332009-09-09 15:08:12 +00006500 // If the RHS is a qualified interface pointer "NSString<P>*",
Steve Naroff4084c302009-07-23 01:01:38 +00006501 // make sure we check the class hierarchy.
6502 if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
6503 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
6504 E = lhsQID->qual_end(); I != E; ++I) {
6505 // when comparing an id<P> on lhs with a static type on rhs,
6506 // see if static class implements all of id's protocols, directly or
6507 // through its super class and categories.
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00006508 if (rhsID->ClassImplementsProtocol(*I, true)) {
Steve Naroff4084c302009-07-23 01:01:38 +00006509 match = true;
6510 break;
6511 }
6512 }
6513 }
6514 if (!match)
6515 return false;
6516 }
Mike Stump1eb44332009-09-09 15:08:12 +00006517
Steve Naroff4084c302009-07-23 01:01:38 +00006518 return true;
6519 }
Mike Stump1eb44332009-09-09 15:08:12 +00006520
Steve Naroff4084c302009-07-23 01:01:38 +00006521 const ObjCObjectPointerType *rhsQID = rhs->getAsObjCQualifiedIdType();
6522 assert(rhsQID && "One of the LHS/RHS should be id<x>");
6523
Mike Stump1eb44332009-09-09 15:08:12 +00006524 if (const ObjCObjectPointerType *lhsOPT =
Steve Naroff4084c302009-07-23 01:01:38 +00006525 lhs->getAsObjCInterfacePointerType()) {
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006526 // If both the right and left sides have qualifiers.
Steve Naroff4084c302009-07-23 01:01:38 +00006527 for (ObjCObjectPointerType::qual_iterator I = lhsOPT->qual_begin(),
6528 E = lhsOPT->qual_end(); I != E; ++I) {
6529 ObjCProtocolDecl *lhsProto = *I;
6530 bool match = false;
6531
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006532 // when comparing an id<P> on rhs with a static type on lhs,
Steve Naroff4084c302009-07-23 01:01:38 +00006533 // see if static class implements all of id's protocols, directly or
6534 // through its super class and categories.
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006535 // First, lhs protocols in the qualifier list must be found, direct
6536 // or indirect in rhs's qualifier list or it is a mismatch.
Steve Naroff4084c302009-07-23 01:01:38 +00006537 for (ObjCObjectPointerType::qual_iterator J = rhsQID->qual_begin(),
6538 E = rhsQID->qual_end(); J != E; ++J) {
6539 ObjCProtocolDecl *rhsProto = *J;
6540 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
6541 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
6542 match = true;
6543 break;
6544 }
6545 }
6546 if (!match)
6547 return false;
6548 }
Fariborz Jahaniande5b17e2010-11-01 20:47:16 +00006549
6550 // Static class's protocols, or its super class or category protocols
6551 // must be found, direct or indirect in rhs's qualifier list or it is a mismatch.
6552 if (ObjCInterfaceDecl *lhsID = lhsOPT->getInterfaceDecl()) {
6553 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
6554 CollectInheritedProtocols(lhsID, LHSInheritedProtocols);
6555 // This is rather dubious but matches gcc's behavior. If lhs has
6556 // no type qualifier and its class has no static protocol(s)
6557 // assume that it is mismatch.
6558 if (LHSInheritedProtocols.empty() && lhsOPT->qual_empty())
6559 return false;
6560 for (llvm::SmallPtrSet<ObjCProtocolDecl*,8>::iterator I =
6561 LHSInheritedProtocols.begin(),
6562 E = LHSInheritedProtocols.end(); I != E; ++I) {
6563 bool match = false;
6564 ObjCProtocolDecl *lhsProto = (*I);
6565 for (ObjCObjectPointerType::qual_iterator J = rhsQID->qual_begin(),
6566 E = rhsQID->qual_end(); J != E; ++J) {
6567 ObjCProtocolDecl *rhsProto = *J;
6568 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
6569 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
6570 match = true;
6571 break;
6572 }
6573 }
6574 if (!match)
6575 return false;
6576 }
6577 }
Steve Naroff4084c302009-07-23 01:01:38 +00006578 return true;
6579 }
6580 return false;
6581}
6582
Eli Friedman3d815e72008-08-22 00:56:42 +00006583/// canAssignObjCInterfaces - Return true if the two interface types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00006584/// compatible for assignment from RHS to LHS. This handles validation of any
6585/// protocol qualifiers on the LHS or RHS.
6586///
Steve Naroff14108da2009-07-10 23:34:53 +00006587bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
6588 const ObjCObjectPointerType *RHSOPT) {
John McCallc12c5bb2010-05-15 11:32:37 +00006589 const ObjCObjectType* LHS = LHSOPT->getObjectType();
6590 const ObjCObjectType* RHS = RHSOPT->getObjectType();
6591
Steve Naroffde2e22d2009-07-15 18:40:39 +00006592 // If either type represents the built-in 'id' or 'Class' types, return true.
John McCallc12c5bb2010-05-15 11:32:37 +00006593 if (LHS->isObjCUnqualifiedIdOrClass() ||
6594 RHS->isObjCUnqualifiedIdOrClass())
Steve Naroff14108da2009-07-10 23:34:53 +00006595 return true;
6596
John McCallc12c5bb2010-05-15 11:32:37 +00006597 if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId())
Mike Stump1eb44332009-09-09 15:08:12 +00006598 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
6599 QualType(RHSOPT,0),
Steve Naroff4084c302009-07-23 01:01:38 +00006600 false);
Fariborz Jahaniana8f8dac2010-07-19 22:02:22 +00006601
6602 if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass())
6603 return ObjCQualifiedClassTypesAreCompatible(QualType(LHSOPT,0),
6604 QualType(RHSOPT,0));
6605
John McCallc12c5bb2010-05-15 11:32:37 +00006606 // If we have 2 user-defined types, fall into that path.
6607 if (LHS->getInterface() && RHS->getInterface())
Steve Naroff4084c302009-07-23 01:01:38 +00006608 return canAssignObjCInterfaces(LHS, RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00006609
Steve Naroff4084c302009-07-23 01:01:38 +00006610 return false;
Steve Naroff14108da2009-07-10 23:34:53 +00006611}
6612
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006613/// canAssignObjCInterfacesInBlockPointer - This routine is specifically written
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00006614/// for providing type-safety for objective-c pointers used to pass/return
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006615/// arguments in block literals. When passed as arguments, passing 'A*' where
6616/// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is
6617/// not OK. For the return type, the opposite is not OK.
6618bool ASTContext::canAssignObjCInterfacesInBlockPointer(
6619 const ObjCObjectPointerType *LHSOPT,
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006620 const ObjCObjectPointerType *RHSOPT,
6621 bool BlockReturnType) {
Fariborz Jahaniana9834482010-04-06 17:23:39 +00006622 if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006623 return true;
6624
6625 if (LHSOPT->isObjCBuiltinType()) {
6626 return RHSOPT->isObjCBuiltinType() || RHSOPT->isObjCQualifiedIdType();
6627 }
6628
Fariborz Jahaniana9834482010-04-06 17:23:39 +00006629 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006630 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
6631 QualType(RHSOPT,0),
6632 false);
6633
6634 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType();
6635 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType();
6636 if (LHS && RHS) { // We have 2 user-defined types.
6637 if (LHS != RHS) {
6638 if (LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006639 return BlockReturnType;
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006640 if (RHS->getDecl()->isSuperClassOf(LHS->getDecl()))
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006641 return !BlockReturnType;
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006642 }
6643 else
6644 return true;
6645 }
6646 return false;
6647}
6648
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006649/// getIntersectionOfProtocols - This routine finds the intersection of set
6650/// of protocols inherited from two distinct objective-c pointer objects.
6651/// It is used to build composite qualifier list of the composite type of
6652/// the conditional expression involving two objective-c pointer objects.
6653static
6654void getIntersectionOfProtocols(ASTContext &Context,
6655 const ObjCObjectPointerType *LHSOPT,
6656 const ObjCObjectPointerType *RHSOPT,
Chris Lattner5f9e2722011-07-23 10:55:15 +00006657 SmallVectorImpl<ObjCProtocolDecl *> &IntersectionOfProtocols) {
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006658
John McCallc12c5bb2010-05-15 11:32:37 +00006659 const ObjCObjectType* LHS = LHSOPT->getObjectType();
6660 const ObjCObjectType* RHS = RHSOPT->getObjectType();
6661 assert(LHS->getInterface() && "LHS must have an interface base");
6662 assert(RHS->getInterface() && "RHS must have an interface base");
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006663
6664 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocolSet;
6665 unsigned LHSNumProtocols = LHS->getNumProtocols();
6666 if (LHSNumProtocols > 0)
6667 InheritedProtocolSet.insert(LHS->qual_begin(), LHS->qual_end());
6668 else {
Fariborz Jahanian432a8892010-02-12 19:27:33 +00006669 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
John McCallc12c5bb2010-05-15 11:32:37 +00006670 Context.CollectInheritedProtocols(LHS->getInterface(),
6671 LHSInheritedProtocols);
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006672 InheritedProtocolSet.insert(LHSInheritedProtocols.begin(),
6673 LHSInheritedProtocols.end());
6674 }
6675
6676 unsigned RHSNumProtocols = RHS->getNumProtocols();
6677 if (RHSNumProtocols > 0) {
Dan Gohmancb421fa2010-04-19 16:39:44 +00006678 ObjCProtocolDecl **RHSProtocols =
6679 const_cast<ObjCProtocolDecl **>(RHS->qual_begin());
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006680 for (unsigned i = 0; i < RHSNumProtocols; ++i)
6681 if (InheritedProtocolSet.count(RHSProtocols[i]))
6682 IntersectionOfProtocols.push_back(RHSProtocols[i]);
Chad Rosier30601782011-08-17 23:08:45 +00006683 } else {
Fariborz Jahanian432a8892010-02-12 19:27:33 +00006684 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSInheritedProtocols;
John McCallc12c5bb2010-05-15 11:32:37 +00006685 Context.CollectInheritedProtocols(RHS->getInterface(),
6686 RHSInheritedProtocols);
Fariborz Jahanian432a8892010-02-12 19:27:33 +00006687 for (llvm::SmallPtrSet<ObjCProtocolDecl*,8>::iterator I =
6688 RHSInheritedProtocols.begin(),
6689 E = RHSInheritedProtocols.end(); I != E; ++I)
6690 if (InheritedProtocolSet.count((*I)))
6691 IntersectionOfProtocols.push_back((*I));
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006692 }
6693}
6694
Fariborz Jahaniandb07b3f2009-10-27 23:02:38 +00006695/// areCommonBaseCompatible - Returns common base class of the two classes if
6696/// one found. Note that this is O'2 algorithm. But it will be called as the
6697/// last type comparison in a ?-exp of ObjC pointer types before a
6698/// warning is issued. So, its invokation is extremely rare.
6699QualType ASTContext::areCommonBaseCompatible(
John McCallc12c5bb2010-05-15 11:32:37 +00006700 const ObjCObjectPointerType *Lptr,
6701 const ObjCObjectPointerType *Rptr) {
6702 const ObjCObjectType *LHS = Lptr->getObjectType();
6703 const ObjCObjectType *RHS = Rptr->getObjectType();
6704 const ObjCInterfaceDecl* LDecl = LHS->getInterface();
6705 const ObjCInterfaceDecl* RDecl = RHS->getInterface();
Douglas Gregor60ef3082011-12-15 00:29:59 +00006706 if (!LDecl || !RDecl || (declaresSameEntity(LDecl, RDecl)))
Fariborz Jahaniandb07b3f2009-10-27 23:02:38 +00006707 return QualType();
6708
Fariborz Jahanian7c2bdcb2011-04-18 21:16:59 +00006709 do {
John McCallc12c5bb2010-05-15 11:32:37 +00006710 LHS = cast<ObjCInterfaceType>(getObjCInterfaceType(LDecl));
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006711 if (canAssignObjCInterfaces(LHS, RHS)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00006712 SmallVector<ObjCProtocolDecl *, 8> Protocols;
John McCallc12c5bb2010-05-15 11:32:37 +00006713 getIntersectionOfProtocols(*this, Lptr, Rptr, Protocols);
6714
6715 QualType Result = QualType(LHS, 0);
6716 if (!Protocols.empty())
6717 Result = getObjCObjectType(Result, Protocols.data(), Protocols.size());
6718 Result = getObjCObjectPointerType(Result);
6719 return Result;
Fariborz Jahaniane23fa2d2009-10-30 01:13:23 +00006720 }
Fariborz Jahanian7c2bdcb2011-04-18 21:16:59 +00006721 } while ((LDecl = LDecl->getSuperClass()));
Fariborz Jahaniandb07b3f2009-10-27 23:02:38 +00006722
6723 return QualType();
6724}
6725
John McCallc12c5bb2010-05-15 11:32:37 +00006726bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS,
6727 const ObjCObjectType *RHS) {
6728 assert(LHS->getInterface() && "LHS is not an interface type");
6729 assert(RHS->getInterface() && "RHS is not an interface type");
6730
Chris Lattner6ac46a42008-04-07 06:51:04 +00006731 // Verify that the base decls are compatible: the RHS must be a subclass of
6732 // the LHS.
John McCallc12c5bb2010-05-15 11:32:37 +00006733 if (!LHS->getInterface()->isSuperClassOf(RHS->getInterface()))
Chris Lattner6ac46a42008-04-07 06:51:04 +00006734 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00006735
Chris Lattner6ac46a42008-04-07 06:51:04 +00006736 // RHS must have a superset of the protocols in the LHS. If the LHS is not
6737 // protocol qualified at all, then we are good.
Steve Naroffc15cb2a2009-07-18 15:33:26 +00006738 if (LHS->getNumProtocols() == 0)
Chris Lattner6ac46a42008-04-07 06:51:04 +00006739 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00006740
Fariborz Jahanianb7bc34a2011-04-08 18:25:29 +00006741 // Okay, we know the LHS has protocol qualifiers. If the RHS doesn't,
6742 // more detailed analysis is required.
6743 if (RHS->getNumProtocols() == 0) {
6744 // OK, if LHS is a superclass of RHS *and*
6745 // this superclass is assignment compatible with LHS.
6746 // false otherwise.
Fariborz Jahanian627788c2011-04-12 16:34:14 +00006747 bool IsSuperClass =
6748 LHS->getInterface()->isSuperClassOf(RHS->getInterface());
6749 if (IsSuperClass) {
Fariborz Jahanianb7bc34a2011-04-08 18:25:29 +00006750 // OK if conversion of LHS to SuperClass results in narrowing of types
6751 // ; i.e., SuperClass may implement at least one of the protocols
6752 // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok.
6753 // But not SuperObj<P1,P2,P3> = lhs<P1,P2>.
6754 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols;
Fariborz Jahanian627788c2011-04-12 16:34:14 +00006755 CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols);
Fariborz Jahanianb7bc34a2011-04-08 18:25:29 +00006756 // If super class has no protocols, it is not a match.
6757 if (SuperClassInheritedProtocols.empty())
6758 return false;
6759
6760 for (ObjCObjectType::qual_iterator LHSPI = LHS->qual_begin(),
6761 LHSPE = LHS->qual_end();
6762 LHSPI != LHSPE; LHSPI++) {
6763 bool SuperImplementsProtocol = false;
6764 ObjCProtocolDecl *LHSProto = (*LHSPI);
6765
6766 for (llvm::SmallPtrSet<ObjCProtocolDecl*,8>::iterator I =
6767 SuperClassInheritedProtocols.begin(),
6768 E = SuperClassInheritedProtocols.end(); I != E; ++I) {
6769 ObjCProtocolDecl *SuperClassProto = (*I);
6770 if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) {
6771 SuperImplementsProtocol = true;
6772 break;
6773 }
6774 }
6775 if (!SuperImplementsProtocol)
6776 return false;
6777 }
6778 return true;
6779 }
6780 return false;
6781 }
Mike Stump1eb44332009-09-09 15:08:12 +00006782
John McCallc12c5bb2010-05-15 11:32:37 +00006783 for (ObjCObjectType::qual_iterator LHSPI = LHS->qual_begin(),
6784 LHSPE = LHS->qual_end();
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006785 LHSPI != LHSPE; LHSPI++) {
6786 bool RHSImplementsProtocol = false;
6787
6788 // If the RHS doesn't implement the protocol on the left, the types
6789 // are incompatible.
John McCallc12c5bb2010-05-15 11:32:37 +00006790 for (ObjCObjectType::qual_iterator RHSPI = RHS->qual_begin(),
6791 RHSPE = RHS->qual_end();
Steve Naroff8f167562009-07-16 16:21:02 +00006792 RHSPI != RHSPE; RHSPI++) {
6793 if ((*RHSPI)->lookupProtocolNamed((*LHSPI)->getIdentifier())) {
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006794 RHSImplementsProtocol = true;
Steve Naroff8f167562009-07-16 16:21:02 +00006795 break;
6796 }
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006797 }
6798 // FIXME: For better diagnostics, consider passing back the protocol name.
6799 if (!RHSImplementsProtocol)
6800 return false;
Chris Lattner6ac46a42008-04-07 06:51:04 +00006801 }
Steve Naroff91b0b0c2009-03-01 16:12:44 +00006802 // The RHS implements all protocols listed on the LHS.
6803 return true;
Chris Lattner6ac46a42008-04-07 06:51:04 +00006804}
6805
Steve Naroff389bf462009-02-12 17:52:19 +00006806bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) {
6807 // get the "pointed to" types
John McCall183700f2009-09-21 23:43:11 +00006808 const ObjCObjectPointerType *LHSOPT = LHS->getAs<ObjCObjectPointerType>();
6809 const ObjCObjectPointerType *RHSOPT = RHS->getAs<ObjCObjectPointerType>();
Mike Stump1eb44332009-09-09 15:08:12 +00006810
Steve Naroff14108da2009-07-10 23:34:53 +00006811 if (!LHSOPT || !RHSOPT)
Steve Naroff389bf462009-02-12 17:52:19 +00006812 return false;
Steve Naroff14108da2009-07-10 23:34:53 +00006813
6814 return canAssignObjCInterfaces(LHSOPT, RHSOPT) ||
6815 canAssignObjCInterfaces(RHSOPT, LHSOPT);
Steve Naroff389bf462009-02-12 17:52:19 +00006816}
6817
Douglas Gregor569c3162010-08-07 11:51:51 +00006818bool ASTContext::canBindObjCObjectType(QualType To, QualType From) {
6819 return canAssignObjCInterfaces(
6820 getObjCObjectPointerType(To)->getAs<ObjCObjectPointerType>(),
6821 getObjCObjectPointerType(From)->getAs<ObjCObjectPointerType>());
6822}
6823
Mike Stump1eb44332009-09-09 15:08:12 +00006824/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
Steve Naroffec0550f2007-10-15 20:41:53 +00006825/// both shall have the identically qualified version of a compatible type.
Mike Stump1eb44332009-09-09 15:08:12 +00006826/// C99 6.2.7p1: Two types have compatible types if their types are the
Steve Naroffec0550f2007-10-15 20:41:53 +00006827/// same. See 6.7.[2,3,5] for additional rules.
Douglas Gregor447234d2010-07-29 15:18:02 +00006828bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS,
6829 bool CompareUnqualified) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006830 if (getLangOpts().CPlusPlus)
Douglas Gregor0e709ab2010-02-03 21:02:30 +00006831 return hasSameType(LHS, RHS);
6832
Douglas Gregor447234d2010-07-29 15:18:02 +00006833 return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull();
Eli Friedman3d815e72008-08-22 00:56:42 +00006834}
6835
Fariborz Jahanianc286f382011-07-12 22:05:16 +00006836bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) {
Fariborz Jahanian82378392011-07-12 23:20:13 +00006837 return typesAreCompatible(LHS, RHS);
Fariborz Jahanianc286f382011-07-12 22:05:16 +00006838}
6839
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006840bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) {
6841 return !mergeTypes(LHS, RHS, true).isNull();
6842}
6843
Peter Collingbourne48466752010-10-24 18:30:18 +00006844/// mergeTransparentUnionType - if T is a transparent union type and a member
6845/// of T is compatible with SubType, return the merged type, else return
6846/// QualType()
6847QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType,
6848 bool OfBlockPointer,
6849 bool Unqualified) {
6850 if (const RecordType *UT = T->getAsUnionType()) {
6851 RecordDecl *UD = UT->getDecl();
6852 if (UD->hasAttr<TransparentUnionAttr>()) {
6853 for (RecordDecl::field_iterator it = UD->field_begin(),
6854 itend = UD->field_end(); it != itend; ++it) {
Peter Collingbournef91d7572010-12-02 21:00:06 +00006855 QualType ET = it->getType().getUnqualifiedType();
Peter Collingbourne48466752010-10-24 18:30:18 +00006856 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);
6857 if (!MT.isNull())
6858 return MT;
6859 }
6860 }
6861 }
6862
6863 return QualType();
6864}
6865
6866/// mergeFunctionArgumentTypes - merge two types which appear as function
6867/// argument types
6868QualType ASTContext::mergeFunctionArgumentTypes(QualType lhs, QualType rhs,
6869 bool OfBlockPointer,
6870 bool Unqualified) {
6871 // GNU extension: two types are compatible if they appear as a function
6872 // argument, one of the types is a transparent union type and the other
6873 // type is compatible with a union member
6874 QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer,
6875 Unqualified);
6876 if (!lmerge.isNull())
6877 return lmerge;
6878
6879 QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer,
6880 Unqualified);
6881 if (!rmerge.isNull())
6882 return rmerge;
6883
6884 return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified);
6885}
6886
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006887QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs,
Douglas Gregor447234d2010-07-29 15:18:02 +00006888 bool OfBlockPointer,
6889 bool Unqualified) {
John McCall183700f2009-09-21 23:43:11 +00006890 const FunctionType *lbase = lhs->getAs<FunctionType>();
6891 const FunctionType *rbase = rhs->getAs<FunctionType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00006892 const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase);
6893 const FunctionProtoType *rproto = dyn_cast<FunctionProtoType>(rbase);
Eli Friedman3d815e72008-08-22 00:56:42 +00006894 bool allLTypes = true;
6895 bool allRTypes = true;
6896
6897 // Check return type
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006898 QualType retType;
Fariborz Jahaniand263fd12011-02-11 18:46:17 +00006899 if (OfBlockPointer) {
6900 QualType RHS = rbase->getResultType();
6901 QualType LHS = lbase->getResultType();
6902 bool UnqualifiedResult = Unqualified;
6903 if (!UnqualifiedResult)
6904 UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers());
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00006905 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
Fariborz Jahaniand263fd12011-02-11 18:46:17 +00006906 }
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00006907 else
John McCall8cc246c2010-12-15 01:06:38 +00006908 retType = mergeTypes(lbase->getResultType(), rbase->getResultType(), false,
6909 Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00006910 if (retType.isNull()) return QualType();
Douglas Gregor447234d2010-07-29 15:18:02 +00006911
6912 if (Unqualified)
6913 retType = retType.getUnqualifiedType();
6914
6915 CanQualType LRetType = getCanonicalType(lbase->getResultType());
6916 CanQualType RRetType = getCanonicalType(rbase->getResultType());
6917 if (Unqualified) {
6918 LRetType = LRetType.getUnqualifiedType();
6919 RRetType = RRetType.getUnqualifiedType();
6920 }
6921
6922 if (getCanonicalType(retType) != LRetType)
Chris Lattner61710852008-10-05 17:34:18 +00006923 allLTypes = false;
Douglas Gregor447234d2010-07-29 15:18:02 +00006924 if (getCanonicalType(retType) != RRetType)
Chris Lattner61710852008-10-05 17:34:18 +00006925 allRTypes = false;
John McCall8cc246c2010-12-15 01:06:38 +00006926
Daniel Dunbar6a15c852010-04-28 16:20:58 +00006927 // FIXME: double check this
6928 // FIXME: should we error if lbase->getRegParmAttr() != 0 &&
6929 // rbase->getRegParmAttr() != 0 &&
6930 // lbase->getRegParmAttr() != rbase->getRegParmAttr()?
Rafael Espindola264ba482010-03-30 20:24:48 +00006931 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo();
6932 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();
John McCall8cc246c2010-12-15 01:06:38 +00006933
Douglas Gregorab8bbf42010-01-18 17:14:39 +00006934 // Compatible functions must have compatible calling conventions
John McCall8cc246c2010-12-15 01:06:38 +00006935 if (!isSameCallConv(lbaseInfo.getCC(), rbaseInfo.getCC()))
Douglas Gregorab8bbf42010-01-18 17:14:39 +00006936 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00006937
John McCall8cc246c2010-12-15 01:06:38 +00006938 // Regparm is part of the calling convention.
Eli Friedmana49218e2011-04-09 08:18:08 +00006939 if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm())
6940 return QualType();
John McCall8cc246c2010-12-15 01:06:38 +00006941 if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm())
6942 return QualType();
6943
John McCallf85e1932011-06-15 23:02:42 +00006944 if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult())
6945 return QualType();
6946
John McCall8cc246c2010-12-15 01:06:38 +00006947 // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'.
6948 bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
John McCall8cc246c2010-12-15 01:06:38 +00006949
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00006950 if (lbaseInfo.getNoReturn() != NoReturn)
6951 allLTypes = false;
6952 if (rbaseInfo.getNoReturn() != NoReturn)
6953 allRTypes = false;
6954
John McCallf85e1932011-06-15 23:02:42 +00006955 FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
John McCalle23cf432010-12-14 08:05:40 +00006956
Eli Friedman3d815e72008-08-22 00:56:42 +00006957 if (lproto && rproto) { // two C99 style function prototypes
Sebastian Redl465226e2009-05-27 22:11:52 +00006958 assert(!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec() &&
6959 "C++ shouldn't be here");
Eli Friedman3d815e72008-08-22 00:56:42 +00006960 unsigned lproto_nargs = lproto->getNumArgs();
6961 unsigned rproto_nargs = rproto->getNumArgs();
6962
6963 // Compatible functions must have the same number of arguments
6964 if (lproto_nargs != rproto_nargs)
6965 return QualType();
6966
6967 // Variadic and non-variadic functions aren't compatible
6968 if (lproto->isVariadic() != rproto->isVariadic())
6969 return QualType();
6970
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00006971 if (lproto->getTypeQuals() != rproto->getTypeQuals())
6972 return QualType();
6973
Fariborz Jahanian78213e42011-09-28 21:52:05 +00006974 if (LangOpts.ObjCAutoRefCount &&
6975 !FunctionTypesMatchOnNSConsumedAttrs(rproto, lproto))
6976 return QualType();
6977
Eli Friedman3d815e72008-08-22 00:56:42 +00006978 // Check argument compatibility
Chris Lattner5f9e2722011-07-23 10:55:15 +00006979 SmallVector<QualType, 10> types;
Eli Friedman3d815e72008-08-22 00:56:42 +00006980 for (unsigned i = 0; i < lproto_nargs; i++) {
6981 QualType largtype = lproto->getArgType(i).getUnqualifiedType();
6982 QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
Peter Collingbourne48466752010-10-24 18:30:18 +00006983 QualType argtype = mergeFunctionArgumentTypes(largtype, rargtype,
6984 OfBlockPointer,
6985 Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00006986 if (argtype.isNull()) return QualType();
Douglas Gregor447234d2010-07-29 15:18:02 +00006987
6988 if (Unqualified)
6989 argtype = argtype.getUnqualifiedType();
6990
Eli Friedman3d815e72008-08-22 00:56:42 +00006991 types.push_back(argtype);
Douglas Gregor447234d2010-07-29 15:18:02 +00006992 if (Unqualified) {
6993 largtype = largtype.getUnqualifiedType();
6994 rargtype = rargtype.getUnqualifiedType();
6995 }
6996
Chris Lattner61710852008-10-05 17:34:18 +00006997 if (getCanonicalType(argtype) != getCanonicalType(largtype))
6998 allLTypes = false;
6999 if (getCanonicalType(argtype) != getCanonicalType(rargtype))
7000 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00007001 }
Fariborz Jahanian78213e42011-09-28 21:52:05 +00007002
Eli Friedman3d815e72008-08-22 00:56:42 +00007003 if (allLTypes) return lhs;
7004 if (allRTypes) return rhs;
John McCalle23cf432010-12-14 08:05:40 +00007005
7006 FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo();
7007 EPI.ExtInfo = einfo;
Jordan Rosebea522f2013-03-08 21:51:21 +00007008 return getFunctionType(retType, types, EPI);
Eli Friedman3d815e72008-08-22 00:56:42 +00007009 }
7010
7011 if (lproto) allRTypes = false;
7012 if (rproto) allLTypes = false;
7013
Douglas Gregor72564e72009-02-26 23:50:07 +00007014 const FunctionProtoType *proto = lproto ? lproto : rproto;
Eli Friedman3d815e72008-08-22 00:56:42 +00007015 if (proto) {
Sebastian Redl465226e2009-05-27 22:11:52 +00007016 assert(!proto->hasExceptionSpec() && "C++ shouldn't be here");
Eli Friedman3d815e72008-08-22 00:56:42 +00007017 if (proto->isVariadic()) return QualType();
7018 // Check that the types are compatible with the types that
7019 // would result from default argument promotions (C99 6.7.5.3p15).
7020 // The only types actually affected are promotable integer
7021 // types and floats, which would be passed as a different
7022 // type depending on whether the prototype is visible.
7023 unsigned proto_nargs = proto->getNumArgs();
7024 for (unsigned i = 0; i < proto_nargs; ++i) {
7025 QualType argTy = proto->getArgType(i);
Douglas Gregorb0f8eac2010-02-03 19:27:29 +00007026
Eli Friedmanc586d5d2012-08-30 00:44:15 +00007027 // Look at the converted type of enum types, since that is the type used
Douglas Gregorb0f8eac2010-02-03 19:27:29 +00007028 // to pass enum values.
Eli Friedmanc586d5d2012-08-30 00:44:15 +00007029 if (const EnumType *Enum = argTy->getAs<EnumType>()) {
7030 argTy = Enum->getDecl()->getIntegerType();
7031 if (argTy.isNull())
7032 return QualType();
7033 }
Douglas Gregorb0f8eac2010-02-03 19:27:29 +00007034
Eli Friedman3d815e72008-08-22 00:56:42 +00007035 if (argTy->isPromotableIntegerType() ||
7036 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
7037 return QualType();
7038 }
7039
7040 if (allLTypes) return lhs;
7041 if (allRTypes) return rhs;
John McCalle23cf432010-12-14 08:05:40 +00007042
7043 FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo();
7044 EPI.ExtInfo = einfo;
Jordan Rosebea522f2013-03-08 21:51:21 +00007045 return getFunctionType(retType,
7046 ArrayRef<QualType>(proto->arg_type_begin(),
7047 proto->getNumArgs()),
7048 EPI);
Eli Friedman3d815e72008-08-22 00:56:42 +00007049 }
7050
7051 if (allLTypes) return lhs;
7052 if (allRTypes) return rhs;
John McCall8cc246c2010-12-15 01:06:38 +00007053 return getFunctionNoProtoType(retType, einfo);
Eli Friedman3d815e72008-08-22 00:56:42 +00007054}
7055
John McCallb9da7132013-03-21 00:10:07 +00007056/// Given that we have an enum type and a non-enum type, try to merge them.
7057static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET,
7058 QualType other, bool isBlockReturnType) {
7059 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
7060 // a signed integer type, or an unsigned integer type.
7061 // Compatibility is based on the underlying type, not the promotion
7062 // type.
7063 QualType underlyingType = ET->getDecl()->getIntegerType();
7064 if (underlyingType.isNull()) return QualType();
7065 if (Context.hasSameType(underlyingType, other))
7066 return other;
7067
7068 // In block return types, we're more permissive and accept any
7069 // integral type of the same size.
7070 if (isBlockReturnType && other->isIntegerType() &&
7071 Context.getTypeSize(underlyingType) == Context.getTypeSize(other))
7072 return other;
7073
7074 return QualType();
7075}
7076
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00007077QualType ASTContext::mergeTypes(QualType LHS, QualType RHS,
Douglas Gregor447234d2010-07-29 15:18:02 +00007078 bool OfBlockPointer,
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00007079 bool Unqualified, bool BlockReturnType) {
Bill Wendling43d69752007-12-03 07:33:35 +00007080 // C++ [expr]: If an expression initially has the type "reference to T", the
7081 // type is adjusted to "T" prior to any further analysis, the expression
7082 // designates the object or function denoted by the reference, and the
Sebastian Redl7c80bd62009-03-16 23:22:08 +00007083 // expression is an lvalue unless the reference is an rvalue reference and
7084 // the expression is a function call (possibly inside parentheses).
Douglas Gregor0e709ab2010-02-03 21:02:30 +00007085 assert(!LHS->getAs<ReferenceType>() && "LHS is a reference type?");
7086 assert(!RHS->getAs<ReferenceType>() && "RHS is a reference type?");
Douglas Gregor447234d2010-07-29 15:18:02 +00007087
7088 if (Unqualified) {
7089 LHS = LHS.getUnqualifiedType();
7090 RHS = RHS.getUnqualifiedType();
7091 }
Douglas Gregor0e709ab2010-02-03 21:02:30 +00007092
Eli Friedman3d815e72008-08-22 00:56:42 +00007093 QualType LHSCan = getCanonicalType(LHS),
7094 RHSCan = getCanonicalType(RHS);
7095
7096 // If two types are identical, they are compatible.
7097 if (LHSCan == RHSCan)
7098 return LHS;
7099
John McCall0953e762009-09-24 19:53:00 +00007100 // If the qualifiers are different, the types aren't compatible... mostly.
Douglas Gregora4923eb2009-11-16 21:35:15 +00007101 Qualifiers LQuals = LHSCan.getLocalQualifiers();
7102 Qualifiers RQuals = RHSCan.getLocalQualifiers();
John McCall0953e762009-09-24 19:53:00 +00007103 if (LQuals != RQuals) {
7104 // If any of these qualifiers are different, we have a type
7105 // mismatch.
7106 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
John McCallf85e1932011-06-15 23:02:42 +00007107 LQuals.getAddressSpace() != RQuals.getAddressSpace() ||
7108 LQuals.getObjCLifetime() != RQuals.getObjCLifetime())
John McCall0953e762009-09-24 19:53:00 +00007109 return QualType();
7110
7111 // Exactly one GC qualifier difference is allowed: __strong is
7112 // okay if the other type has no GC qualifier but is an Objective
7113 // C object pointer (i.e. implicitly strong by default). We fix
7114 // this by pretending that the unqualified type was actually
7115 // qualified __strong.
7116 Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
7117 Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
7118 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
7119
7120 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
7121 return QualType();
7122
7123 if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) {
7124 return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong));
7125 }
7126 if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) {
7127 return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS);
7128 }
Eli Friedman3d815e72008-08-22 00:56:42 +00007129 return QualType();
John McCall0953e762009-09-24 19:53:00 +00007130 }
7131
7132 // Okay, qualifiers are equal.
Eli Friedman3d815e72008-08-22 00:56:42 +00007133
Eli Friedman852d63b2009-06-01 01:22:52 +00007134 Type::TypeClass LHSClass = LHSCan->getTypeClass();
7135 Type::TypeClass RHSClass = RHSCan->getTypeClass();
Eli Friedman3d815e72008-08-22 00:56:42 +00007136
Chris Lattner1adb8832008-01-14 05:45:46 +00007137 // We want to consider the two function types to be the same for these
7138 // comparisons, just force one to the other.
7139 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
7140 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman4c721d32008-02-12 08:23:06 +00007141
7142 // Same as above for arrays
Chris Lattnera36a61f2008-04-07 05:43:21 +00007143 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
7144 LHSClass = Type::ConstantArray;
7145 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
7146 RHSClass = Type::ConstantArray;
Mike Stump1eb44332009-09-09 15:08:12 +00007147
John McCallc12c5bb2010-05-15 11:32:37 +00007148 // ObjCInterfaces are just specialized ObjCObjects.
7149 if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject;
7150 if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject;
7151
Nate Begeman213541a2008-04-18 23:10:10 +00007152 // Canonicalize ExtVector -> Vector.
7153 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
7154 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
Mike Stump1eb44332009-09-09 15:08:12 +00007155
Chris Lattnera36a61f2008-04-07 05:43:21 +00007156 // If the canonical type classes don't match.
Chris Lattner1adb8832008-01-14 05:45:46 +00007157 if (LHSClass != RHSClass) {
John McCallb9da7132013-03-21 00:10:07 +00007158 // Note that we only have special rules for turning block enum
7159 // returns into block int returns, not vice-versa.
John McCall183700f2009-09-21 23:43:11 +00007160 if (const EnumType* ETy = LHS->getAs<EnumType>()) {
John McCallb9da7132013-03-21 00:10:07 +00007161 return mergeEnumWithInteger(*this, ETy, RHS, false);
Eli Friedmanbab96962008-02-12 08:46:17 +00007162 }
John McCall183700f2009-09-21 23:43:11 +00007163 if (const EnumType* ETy = RHS->getAs<EnumType>()) {
John McCallb9da7132013-03-21 00:10:07 +00007164 return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
Eli Friedmanbab96962008-02-12 08:46:17 +00007165 }
Fariborz Jahaniane7cff2c2012-01-26 00:45:38 +00007166 // allow block pointer type to match an 'id' type.
Fariborz Jahanian41963632012-01-26 17:08:50 +00007167 if (OfBlockPointer && !BlockReturnType) {
7168 if (LHS->isObjCIdType() && RHS->isBlockPointerType())
7169 return LHS;
7170 if (RHS->isObjCIdType() && LHS->isBlockPointerType())
7171 return RHS;
7172 }
Fariborz Jahaniane7cff2c2012-01-26 00:45:38 +00007173
Eli Friedman3d815e72008-08-22 00:56:42 +00007174 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00007175 }
Eli Friedman3d815e72008-08-22 00:56:42 +00007176
Steve Naroff4a746782008-01-09 22:43:08 +00007177 // The canonical type classes match.
Chris Lattner1adb8832008-01-14 05:45:46 +00007178 switch (LHSClass) {
Douglas Gregor72564e72009-02-26 23:50:07 +00007179#define TYPE(Class, Base)
7180#define ABSTRACT_TYPE(Class, Base)
John McCallad5e7382010-03-01 23:49:17 +00007181#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
Douglas Gregor72564e72009-02-26 23:50:07 +00007182#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
7183#define DEPENDENT_TYPE(Class, Base) case Type::Class:
7184#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00007185 llvm_unreachable("Non-canonical and dependent types shouldn't get here");
Douglas Gregor72564e72009-02-26 23:50:07 +00007186
Richard Smithdc7a4f52013-04-30 13:56:41 +00007187 case Type::Auto:
Sebastian Redl7c80bd62009-03-16 23:22:08 +00007188 case Type::LValueReference:
7189 case Type::RValueReference:
Douglas Gregor72564e72009-02-26 23:50:07 +00007190 case Type::MemberPointer:
David Blaikieb219cfc2011-09-23 05:06:16 +00007191 llvm_unreachable("C++ should never be in mergeTypes");
Douglas Gregor72564e72009-02-26 23:50:07 +00007192
John McCallc12c5bb2010-05-15 11:32:37 +00007193 case Type::ObjCInterface:
Douglas Gregor72564e72009-02-26 23:50:07 +00007194 case Type::IncompleteArray:
7195 case Type::VariableArray:
7196 case Type::FunctionProto:
7197 case Type::ExtVector:
David Blaikieb219cfc2011-09-23 05:06:16 +00007198 llvm_unreachable("Types are eliminated above");
Douglas Gregor72564e72009-02-26 23:50:07 +00007199
Chris Lattner1adb8832008-01-14 05:45:46 +00007200 case Type::Pointer:
Eli Friedman3d815e72008-08-22 00:56:42 +00007201 {
7202 // Merge two pointer types, while trying to preserve typedef info
Ted Kremenek6217b802009-07-29 21:53:49 +00007203 QualType LHSPointee = LHS->getAs<PointerType>()->getPointeeType();
7204 QualType RHSPointee = RHS->getAs<PointerType>()->getPointeeType();
Douglas Gregor447234d2010-07-29 15:18:02 +00007205 if (Unqualified) {
7206 LHSPointee = LHSPointee.getUnqualifiedType();
7207 RHSPointee = RHSPointee.getUnqualifiedType();
7208 }
7209 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false,
7210 Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00007211 if (ResultType.isNull()) return QualType();
Eli Friedman07d25872009-06-02 05:28:56 +00007212 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
Chris Lattner61710852008-10-05 17:34:18 +00007213 return LHS;
Eli Friedman07d25872009-06-02 05:28:56 +00007214 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
Chris Lattner61710852008-10-05 17:34:18 +00007215 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00007216 return getPointerType(ResultType);
7217 }
Steve Naroffc0febd52008-12-10 17:49:55 +00007218 case Type::BlockPointer:
7219 {
7220 // Merge two block pointer types, while trying to preserve typedef info
Ted Kremenek6217b802009-07-29 21:53:49 +00007221 QualType LHSPointee = LHS->getAs<BlockPointerType>()->getPointeeType();
7222 QualType RHSPointee = RHS->getAs<BlockPointerType>()->getPointeeType();
Douglas Gregor447234d2010-07-29 15:18:02 +00007223 if (Unqualified) {
7224 LHSPointee = LHSPointee.getUnqualifiedType();
7225 RHSPointee = RHSPointee.getUnqualifiedType();
7226 }
7227 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer,
7228 Unqualified);
Steve Naroffc0febd52008-12-10 17:49:55 +00007229 if (ResultType.isNull()) return QualType();
7230 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
7231 return LHS;
7232 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
7233 return RHS;
7234 return getBlockPointerType(ResultType);
7235 }
Eli Friedmanb001de72011-10-06 23:00:33 +00007236 case Type::Atomic:
7237 {
7238 // Merge two pointer types, while trying to preserve typedef info
7239 QualType LHSValue = LHS->getAs<AtomicType>()->getValueType();
7240 QualType RHSValue = RHS->getAs<AtomicType>()->getValueType();
7241 if (Unqualified) {
7242 LHSValue = LHSValue.getUnqualifiedType();
7243 RHSValue = RHSValue.getUnqualifiedType();
7244 }
7245 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
7246 Unqualified);
7247 if (ResultType.isNull()) return QualType();
7248 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
7249 return LHS;
7250 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
7251 return RHS;
7252 return getAtomicType(ResultType);
7253 }
Chris Lattner1adb8832008-01-14 05:45:46 +00007254 case Type::ConstantArray:
Eli Friedman3d815e72008-08-22 00:56:42 +00007255 {
7256 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
7257 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
7258 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
7259 return QualType();
7260
7261 QualType LHSElem = getAsArrayType(LHS)->getElementType();
7262 QualType RHSElem = getAsArrayType(RHS)->getElementType();
Douglas Gregor447234d2010-07-29 15:18:02 +00007263 if (Unqualified) {
7264 LHSElem = LHSElem.getUnqualifiedType();
7265 RHSElem = RHSElem.getUnqualifiedType();
7266 }
7267
7268 QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified);
Eli Friedman3d815e72008-08-22 00:56:42 +00007269 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00007270 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
7271 return LHS;
7272 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
7273 return RHS;
Eli Friedman3bc0f452008-08-22 01:48:21 +00007274 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
7275 ArrayType::ArraySizeModifier(), 0);
7276 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
7277 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00007278 const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
7279 const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
Chris Lattner61710852008-10-05 17:34:18 +00007280 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
7281 return LHS;
7282 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
7283 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00007284 if (LVAT) {
7285 // FIXME: This isn't correct! But tricky to implement because
7286 // the array's size has to be the size of LHS, but the type
7287 // has to be different.
7288 return LHS;
7289 }
7290 if (RVAT) {
7291 // FIXME: This isn't correct! But tricky to implement because
7292 // the array's size has to be the size of RHS, but the type
7293 // has to be different.
7294 return RHS;
7295 }
Eli Friedman3bc0f452008-08-22 01:48:21 +00007296 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
7297 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00007298 return getIncompleteArrayType(ResultType,
7299 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00007300 }
Chris Lattner1adb8832008-01-14 05:45:46 +00007301 case Type::FunctionNoProto:
Douglas Gregor447234d2010-07-29 15:18:02 +00007302 return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified);
Douglas Gregor72564e72009-02-26 23:50:07 +00007303 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00007304 case Type::Enum:
Eli Friedman3d815e72008-08-22 00:56:42 +00007305 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00007306 case Type::Builtin:
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00007307 // Only exactly equal builtin types are compatible, which is tested above.
Eli Friedman3d815e72008-08-22 00:56:42 +00007308 return QualType();
Daniel Dunbar64cfdb72009-01-28 21:22:12 +00007309 case Type::Complex:
7310 // Distinct complex types are incompatible.
7311 return QualType();
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00007312 case Type::Vector:
Eli Friedman5a61f0e2009-02-27 23:04:43 +00007313 // FIXME: The merged type should be an ExtVector!
John McCall1c471f32010-03-12 23:14:13 +00007314 if (areCompatVectorTypes(LHSCan->getAs<VectorType>(),
7315 RHSCan->getAs<VectorType>()))
Eli Friedman3d815e72008-08-22 00:56:42 +00007316 return LHS;
Chris Lattner61710852008-10-05 17:34:18 +00007317 return QualType();
John McCallc12c5bb2010-05-15 11:32:37 +00007318 case Type::ObjCObject: {
7319 // Check if the types are assignment compatible.
Eli Friedman5a61f0e2009-02-27 23:04:43 +00007320 // FIXME: This should be type compatibility, e.g. whether
7321 // "LHS x; RHS x;" at global scope is legal.
John McCallc12c5bb2010-05-15 11:32:37 +00007322 const ObjCObjectType* LHSIface = LHS->getAs<ObjCObjectType>();
7323 const ObjCObjectType* RHSIface = RHS->getAs<ObjCObjectType>();
7324 if (canAssignObjCInterfaces(LHSIface, RHSIface))
Steve Naroff5fd659d2009-02-21 16:18:07 +00007325 return LHS;
7326
Eli Friedman3d815e72008-08-22 00:56:42 +00007327 return QualType();
Cedric Venet61490e92009-02-21 17:14:49 +00007328 }
Steve Naroff14108da2009-07-10 23:34:53 +00007329 case Type::ObjCObjectPointer: {
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00007330 if (OfBlockPointer) {
7331 if (canAssignObjCInterfacesInBlockPointer(
7332 LHS->getAs<ObjCObjectPointerType>(),
Fariborz Jahaniana4fdbfa2011-03-14 16:07:00 +00007333 RHS->getAs<ObjCObjectPointerType>(),
7334 BlockReturnType))
David Blaikie7530c032012-01-17 06:56:22 +00007335 return LHS;
Fariborz Jahanian132f2a22010-03-17 00:20:01 +00007336 return QualType();
7337 }
John McCall183700f2009-09-21 23:43:11 +00007338 if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(),
7339 RHS->getAs<ObjCObjectPointerType>()))
Steve Naroff14108da2009-07-10 23:34:53 +00007340 return LHS;
7341
Steve Naroffbc76dd02008-12-10 22:14:21 +00007342 return QualType();
David Blaikie7530c032012-01-17 06:56:22 +00007343 }
Steve Naroffec0550f2007-10-15 20:41:53 +00007344 }
Douglas Gregor72564e72009-02-26 23:50:07 +00007345
David Blaikie7530c032012-01-17 06:56:22 +00007346 llvm_unreachable("Invalid Type::Class!");
Steve Naroffec0550f2007-10-15 20:41:53 +00007347}
Ted Kremenek7192f8e2007-10-31 17:10:13 +00007348
Fariborz Jahanian78213e42011-09-28 21:52:05 +00007349bool ASTContext::FunctionTypesMatchOnNSConsumedAttrs(
7350 const FunctionProtoType *FromFunctionType,
7351 const FunctionProtoType *ToFunctionType) {
7352 if (FromFunctionType->hasAnyConsumedArgs() !=
7353 ToFunctionType->hasAnyConsumedArgs())
7354 return false;
7355 FunctionProtoType::ExtProtoInfo FromEPI =
7356 FromFunctionType->getExtProtoInfo();
7357 FunctionProtoType::ExtProtoInfo ToEPI =
7358 ToFunctionType->getExtProtoInfo();
7359 if (FromEPI.ConsumedArguments && ToEPI.ConsumedArguments)
7360 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
7361 ArgIdx != NumArgs; ++ArgIdx) {
7362 if (FromEPI.ConsumedArguments[ArgIdx] !=
7363 ToEPI.ConsumedArguments[ArgIdx])
7364 return false;
7365 }
7366 return true;
7367}
7368
Fariborz Jahanian2390a722010-05-19 21:37:30 +00007369/// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and
7370/// 'RHS' attributes and returns the merged version; including for function
7371/// return types.
7372QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) {
7373 QualType LHSCan = getCanonicalType(LHS),
7374 RHSCan = getCanonicalType(RHS);
7375 // If two types are identical, they are compatible.
7376 if (LHSCan == RHSCan)
7377 return LHS;
7378 if (RHSCan->isFunctionType()) {
7379 if (!LHSCan->isFunctionType())
7380 return QualType();
7381 QualType OldReturnType =
7382 cast<FunctionType>(RHSCan.getTypePtr())->getResultType();
7383 QualType NewReturnType =
7384 cast<FunctionType>(LHSCan.getTypePtr())->getResultType();
7385 QualType ResReturnType =
7386 mergeObjCGCQualifiers(NewReturnType, OldReturnType);
7387 if (ResReturnType.isNull())
7388 return QualType();
7389 if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) {
7390 // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo();
7391 // In either case, use OldReturnType to build the new function type.
7392 const FunctionType *F = LHS->getAs<FunctionType>();
7393 if (const FunctionProtoType *FPT = cast<FunctionProtoType>(F)) {
John McCalle23cf432010-12-14 08:05:40 +00007394 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
7395 EPI.ExtInfo = getFunctionExtInfo(LHS);
Fariborz Jahanian2390a722010-05-19 21:37:30 +00007396 QualType ResultType
Jordan Rosebea522f2013-03-08 21:51:21 +00007397 = getFunctionType(OldReturnType,
7398 ArrayRef<QualType>(FPT->arg_type_begin(),
7399 FPT->getNumArgs()),
7400 EPI);
Fariborz Jahanian2390a722010-05-19 21:37:30 +00007401 return ResultType;
7402 }
7403 }
7404 return QualType();
7405 }
7406
7407 // If the qualifiers are different, the types can still be merged.
7408 Qualifiers LQuals = LHSCan.getLocalQualifiers();
7409 Qualifiers RQuals = RHSCan.getLocalQualifiers();
7410 if (LQuals != RQuals) {
7411 // If any of these qualifiers are different, we have a type mismatch.
7412 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
7413 LQuals.getAddressSpace() != RQuals.getAddressSpace())
7414 return QualType();
7415
7416 // Exactly one GC qualifier difference is allowed: __strong is
7417 // okay if the other type has no GC qualifier but is an Objective
7418 // C object pointer (i.e. implicitly strong by default). We fix
7419 // this by pretending that the unqualified type was actually
7420 // qualified __strong.
7421 Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
7422 Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
7423 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
7424
7425 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
7426 return QualType();
7427
7428 if (GC_L == Qualifiers::Strong)
7429 return LHS;
7430 if (GC_R == Qualifiers::Strong)
7431 return RHS;
7432 return QualType();
7433 }
7434
7435 if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) {
7436 QualType LHSBaseQT = LHS->getAs<ObjCObjectPointerType>()->getPointeeType();
7437 QualType RHSBaseQT = RHS->getAs<ObjCObjectPointerType>()->getPointeeType();
7438 QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT);
7439 if (ResQT == LHSBaseQT)
7440 return LHS;
7441 if (ResQT == RHSBaseQT)
7442 return RHS;
7443 }
7444 return QualType();
7445}
7446
Chris Lattner5426bf62008-04-07 07:01:58 +00007447//===----------------------------------------------------------------------===//
Eli Friedmanad74a752008-06-28 06:23:08 +00007448// Integer Predicates
7449//===----------------------------------------------------------------------===//
Chris Lattner88054de2009-01-16 07:15:35 +00007450
Jay Foad4ba2a172011-01-12 09:06:06 +00007451unsigned ASTContext::getIntWidth(QualType T) const {
John McCallf4c73712011-01-19 06:33:43 +00007452 if (const EnumType *ET = dyn_cast<EnumType>(T))
Eli Friedman29a7f332009-12-10 22:29:29 +00007453 T = ET->getDecl()->getIntegerType();
Douglas Gregor1274ccd2010-10-08 23:50:27 +00007454 if (T->isBooleanType())
7455 return 1;
Eli Friedmanf98aba32009-02-13 02:31:07 +00007456 // For builtin types, just use the standard type sizing method
Eli Friedmanad74a752008-06-28 06:23:08 +00007457 return (unsigned)getTypeSize(T);
7458}
7459
Abramo Bagnara762f1592012-09-09 10:21:24 +00007460QualType ASTContext::getCorrespondingUnsignedType(QualType T) const {
Douglas Gregorf6094622010-07-23 15:58:24 +00007461 assert(T->hasSignedIntegerRepresentation() && "Unexpected type");
Chris Lattner6a2b9262009-10-17 20:33:28 +00007462
7463 // Turn <4 x signed int> -> <4 x unsigned int>
7464 if (const VectorType *VTy = T->getAs<VectorType>())
7465 return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()),
Bob Wilsone86d78c2010-11-10 21:56:12 +00007466 VTy->getNumElements(), VTy->getVectorKind());
Chris Lattner6a2b9262009-10-17 20:33:28 +00007467
7468 // For enums, we return the unsigned version of the base type.
7469 if (const EnumType *ETy = T->getAs<EnumType>())
Eli Friedmanad74a752008-06-28 06:23:08 +00007470 T = ETy->getDecl()->getIntegerType();
Chris Lattner6a2b9262009-10-17 20:33:28 +00007471
7472 const BuiltinType *BTy = T->getAs<BuiltinType>();
7473 assert(BTy && "Unexpected signed integer type");
Eli Friedmanad74a752008-06-28 06:23:08 +00007474 switch (BTy->getKind()) {
7475 case BuiltinType::Char_S:
7476 case BuiltinType::SChar:
7477 return UnsignedCharTy;
7478 case BuiltinType::Short:
7479 return UnsignedShortTy;
7480 case BuiltinType::Int:
7481 return UnsignedIntTy;
7482 case BuiltinType::Long:
7483 return UnsignedLongTy;
7484 case BuiltinType::LongLong:
7485 return UnsignedLongLongTy;
Chris Lattner2df9ced2009-04-30 02:43:43 +00007486 case BuiltinType::Int128:
7487 return UnsignedInt128Ty;
Eli Friedmanad74a752008-06-28 06:23:08 +00007488 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00007489 llvm_unreachable("Unexpected signed integer type");
Eli Friedmanad74a752008-06-28 06:23:08 +00007490 }
7491}
7492
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00007493ASTMutationListener::~ASTMutationListener() { }
7494
Richard Smith9dadfab2013-05-11 05:45:24 +00007495void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD,
7496 QualType ReturnType) {}
Chris Lattner86df27b2009-06-14 00:45:47 +00007497
7498//===----------------------------------------------------------------------===//
7499// Builtin Type Computation
7500//===----------------------------------------------------------------------===//
7501
7502/// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
Chris Lattner33daae62010-10-01 22:42:38 +00007503/// pointer over the consumed characters. This returns the resultant type. If
7504/// AllowTypeModifiers is false then modifier like * are not parsed, just basic
7505/// types. This allows "v2i*" to be parsed as a pointer to a v2i instead of
7506/// a vector of "i*".
Chris Lattner14e0e742010-10-01 22:53:11 +00007507///
7508/// RequiresICE is filled in on return to indicate whether the value is required
7509/// to be an Integer Constant Expression.
Jay Foad4ba2a172011-01-12 09:06:06 +00007510static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context,
Chris Lattner86df27b2009-06-14 00:45:47 +00007511 ASTContext::GetBuiltinTypeError &Error,
Chris Lattner14e0e742010-10-01 22:53:11 +00007512 bool &RequiresICE,
Chris Lattner33daae62010-10-01 22:42:38 +00007513 bool AllowTypeModifiers) {
Chris Lattner86df27b2009-06-14 00:45:47 +00007514 // Modifiers.
7515 int HowLong = 0;
7516 bool Signed = false, Unsigned = false;
Chris Lattner14e0e742010-10-01 22:53:11 +00007517 RequiresICE = false;
Chris Lattner393bd8e2010-10-01 07:13:18 +00007518
Chris Lattner33daae62010-10-01 22:42:38 +00007519 // Read the prefixed modifiers first.
Chris Lattner86df27b2009-06-14 00:45:47 +00007520 bool Done = false;
7521 while (!Done) {
7522 switch (*Str++) {
Mike Stump1eb44332009-09-09 15:08:12 +00007523 default: Done = true; --Str; break;
Chris Lattner393bd8e2010-10-01 07:13:18 +00007524 case 'I':
Chris Lattner14e0e742010-10-01 22:53:11 +00007525 RequiresICE = true;
Chris Lattner393bd8e2010-10-01 07:13:18 +00007526 break;
Chris Lattner86df27b2009-06-14 00:45:47 +00007527 case 'S':
7528 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
7529 assert(!Signed && "Can't use 'S' modifier multiple times!");
7530 Signed = true;
7531 break;
7532 case 'U':
7533 assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
7534 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
7535 Unsigned = true;
7536 break;
7537 case 'L':
7538 assert(HowLong <= 2 && "Can't have LLLL modifier");
7539 ++HowLong;
7540 break;
7541 }
7542 }
7543
7544 QualType Type;
Mike Stump1eb44332009-09-09 15:08:12 +00007545
Chris Lattner86df27b2009-06-14 00:45:47 +00007546 // Read the base type.
7547 switch (*Str++) {
David Blaikieb219cfc2011-09-23 05:06:16 +00007548 default: llvm_unreachable("Unknown builtin type letter!");
Chris Lattner86df27b2009-06-14 00:45:47 +00007549 case 'v':
7550 assert(HowLong == 0 && !Signed && !Unsigned &&
7551 "Bad modifiers used with 'v'!");
7552 Type = Context.VoidTy;
7553 break;
7554 case 'f':
7555 assert(HowLong == 0 && !Signed && !Unsigned &&
7556 "Bad modifiers used with 'f'!");
7557 Type = Context.FloatTy;
7558 break;
7559 case 'd':
7560 assert(HowLong < 2 && !Signed && !Unsigned &&
7561 "Bad modifiers used with 'd'!");
7562 if (HowLong)
7563 Type = Context.LongDoubleTy;
7564 else
7565 Type = Context.DoubleTy;
7566 break;
7567 case 's':
7568 assert(HowLong == 0 && "Bad modifiers used with 's'!");
7569 if (Unsigned)
7570 Type = Context.UnsignedShortTy;
7571 else
7572 Type = Context.ShortTy;
7573 break;
7574 case 'i':
7575 if (HowLong == 3)
7576 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
7577 else if (HowLong == 2)
7578 Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
7579 else if (HowLong == 1)
7580 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
7581 else
7582 Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
7583 break;
7584 case 'c':
7585 assert(HowLong == 0 && "Bad modifiers used with 'c'!");
7586 if (Signed)
7587 Type = Context.SignedCharTy;
7588 else if (Unsigned)
7589 Type = Context.UnsignedCharTy;
7590 else
7591 Type = Context.CharTy;
7592 break;
7593 case 'b': // boolean
7594 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
7595 Type = Context.BoolTy;
7596 break;
7597 case 'z': // size_t.
7598 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
7599 Type = Context.getSizeType();
7600 break;
7601 case 'F':
7602 Type = Context.getCFConstantStringType();
7603 break;
Fariborz Jahanianba8bda02010-11-09 21:38:20 +00007604 case 'G':
7605 Type = Context.getObjCIdType();
7606 break;
7607 case 'H':
7608 Type = Context.getObjCSelType();
7609 break;
Fariborz Jahanianf7992132013-01-04 18:45:40 +00007610 case 'M':
7611 Type = Context.getObjCSuperType();
7612 break;
Chris Lattner86df27b2009-06-14 00:45:47 +00007613 case 'a':
7614 Type = Context.getBuiltinVaListType();
7615 assert(!Type.isNull() && "builtin va list type not initialized!");
7616 break;
7617 case 'A':
7618 // This is a "reference" to a va_list; however, what exactly
7619 // this means depends on how va_list is defined. There are two
7620 // different kinds of va_list: ones passed by value, and ones
7621 // passed by reference. An example of a by-value va_list is
7622 // x86, where va_list is a char*. An example of by-ref va_list
7623 // is x86-64, where va_list is a __va_list_tag[1]. For x86,
7624 // we want this argument to be a char*&; for x86-64, we want
7625 // it to be a __va_list_tag*.
7626 Type = Context.getBuiltinVaListType();
7627 assert(!Type.isNull() && "builtin va list type not initialized!");
Chris Lattner14e0e742010-10-01 22:53:11 +00007628 if (Type->isArrayType())
Chris Lattner86df27b2009-06-14 00:45:47 +00007629 Type = Context.getArrayDecayedType(Type);
Chris Lattner14e0e742010-10-01 22:53:11 +00007630 else
Chris Lattner86df27b2009-06-14 00:45:47 +00007631 Type = Context.getLValueReferenceType(Type);
Chris Lattner86df27b2009-06-14 00:45:47 +00007632 break;
7633 case 'V': {
7634 char *End;
Chris Lattner86df27b2009-06-14 00:45:47 +00007635 unsigned NumElements = strtoul(Str, &End, 10);
7636 assert(End != Str && "Missing vector size");
Chris Lattner86df27b2009-06-14 00:45:47 +00007637 Str = End;
Mike Stump1eb44332009-09-09 15:08:12 +00007638
Chris Lattner14e0e742010-10-01 22:53:11 +00007639 QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
7640 RequiresICE, false);
7641 assert(!RequiresICE && "Can't require vector ICE");
Chris Lattner33daae62010-10-01 22:42:38 +00007642
7643 // TODO: No way to make AltiVec vectors in builtins yet.
Chris Lattner788b0fd2010-06-23 06:00:24 +00007644 Type = Context.getVectorType(ElementType, NumElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00007645 VectorType::GenericVector);
Chris Lattner86df27b2009-06-14 00:45:47 +00007646 break;
7647 }
Douglas Gregorb4bc99b2012-06-07 18:08:25 +00007648 case 'E': {
7649 char *End;
7650
7651 unsigned NumElements = strtoul(Str, &End, 10);
7652 assert(End != Str && "Missing vector size");
7653
7654 Str = End;
7655
7656 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
7657 false);
7658 Type = Context.getExtVectorType(ElementType, NumElements);
7659 break;
7660 }
Douglas Gregord3a23b22009-09-28 21:45:01 +00007661 case 'X': {
Chris Lattner14e0e742010-10-01 22:53:11 +00007662 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
7663 false);
7664 assert(!RequiresICE && "Can't require complex ICE");
Douglas Gregord3a23b22009-09-28 21:45:01 +00007665 Type = Context.getComplexType(ElementType);
7666 break;
Fariborz Jahaniancc075e42011-08-23 23:33:09 +00007667 }
7668 case 'Y' : {
7669 Type = Context.getPointerDiffType();
7670 break;
7671 }
Chris Lattner9a5a7e72009-07-28 22:49:34 +00007672 case 'P':
Douglas Gregorc29f77b2009-07-07 16:35:42 +00007673 Type = Context.getFILEType();
7674 if (Type.isNull()) {
Mike Stumpf711c412009-07-28 23:57:15 +00007675 Error = ASTContext::GE_Missing_stdio;
Chris Lattner86df27b2009-06-14 00:45:47 +00007676 return QualType();
7677 }
Mike Stumpfd612db2009-07-28 23:47:15 +00007678 break;
Chris Lattner9a5a7e72009-07-28 22:49:34 +00007679 case 'J':
Mike Stumpf711c412009-07-28 23:57:15 +00007680 if (Signed)
Mike Stump782fa302009-07-28 02:25:19 +00007681 Type = Context.getsigjmp_bufType();
Mike Stumpf711c412009-07-28 23:57:15 +00007682 else
7683 Type = Context.getjmp_bufType();
7684
Mike Stumpfd612db2009-07-28 23:47:15 +00007685 if (Type.isNull()) {
Mike Stumpf711c412009-07-28 23:57:15 +00007686 Error = ASTContext::GE_Missing_setjmp;
Mike Stumpfd612db2009-07-28 23:47:15 +00007687 return QualType();
7688 }
7689 break;
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00007690 case 'K':
7691 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!");
7692 Type = Context.getucontext_tType();
7693
7694 if (Type.isNull()) {
7695 Error = ASTContext::GE_Missing_ucontext;
7696 return QualType();
7697 }
7698 break;
Eli Friedman6902e412012-11-27 02:58:24 +00007699 case 'p':
7700 Type = Context.getProcessIDType();
7701 break;
Mike Stump782fa302009-07-28 02:25:19 +00007702 }
Mike Stump1eb44332009-09-09 15:08:12 +00007703
Chris Lattner33daae62010-10-01 22:42:38 +00007704 // If there are modifiers and if we're allowed to parse them, go for it.
7705 Done = !AllowTypeModifiers;
Chris Lattner86df27b2009-06-14 00:45:47 +00007706 while (!Done) {
John McCall187ab372010-03-12 04:21:28 +00007707 switch (char c = *Str++) {
Chris Lattner33daae62010-10-01 22:42:38 +00007708 default: Done = true; --Str; break;
7709 case '*':
7710 case '&': {
7711 // Both pointers and references can have their pointee types
7712 // qualified with an address space.
7713 char *End;
7714 unsigned AddrSpace = strtoul(Str, &End, 10);
7715 if (End != Str && AddrSpace != 0) {
7716 Type = Context.getAddrSpaceQualType(Type, AddrSpace);
7717 Str = End;
7718 }
7719 if (c == '*')
7720 Type = Context.getPointerType(Type);
7721 else
7722 Type = Context.getLValueReferenceType(Type);
7723 break;
7724 }
7725 // FIXME: There's no way to have a built-in with an rvalue ref arg.
7726 case 'C':
7727 Type = Type.withConst();
7728 break;
7729 case 'D':
7730 Type = Context.getVolatileType(Type);
7731 break;
Ted Kremenek18932a02012-01-20 21:40:12 +00007732 case 'R':
7733 Type = Type.withRestrict();
7734 break;
Chris Lattner86df27b2009-06-14 00:45:47 +00007735 }
7736 }
Chris Lattner393bd8e2010-10-01 07:13:18 +00007737
Chris Lattner14e0e742010-10-01 22:53:11 +00007738 assert((!RequiresICE || Type->isIntegralOrEnumerationType()) &&
Chris Lattner393bd8e2010-10-01 07:13:18 +00007739 "Integer constant 'I' type must be an integer");
Mike Stump1eb44332009-09-09 15:08:12 +00007740
Chris Lattner86df27b2009-06-14 00:45:47 +00007741 return Type;
7742}
7743
7744/// GetBuiltinType - Return the type for the specified builtin.
Chris Lattner33daae62010-10-01 22:42:38 +00007745QualType ASTContext::GetBuiltinType(unsigned Id,
Chris Lattner14e0e742010-10-01 22:53:11 +00007746 GetBuiltinTypeError &Error,
Jay Foad4ba2a172011-01-12 09:06:06 +00007747 unsigned *IntegerConstantArgs) const {
Chris Lattner33daae62010-10-01 22:42:38 +00007748 const char *TypeStr = BuiltinInfo.GetTypeString(Id);
Mike Stump1eb44332009-09-09 15:08:12 +00007749
Chris Lattner5f9e2722011-07-23 10:55:15 +00007750 SmallVector<QualType, 8> ArgTypes;
Mike Stump1eb44332009-09-09 15:08:12 +00007751
Chris Lattner14e0e742010-10-01 22:53:11 +00007752 bool RequiresICE = false;
Chris Lattner86df27b2009-06-14 00:45:47 +00007753 Error = GE_None;
Chris Lattner14e0e742010-10-01 22:53:11 +00007754 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
7755 RequiresICE, true);
Chris Lattner86df27b2009-06-14 00:45:47 +00007756 if (Error != GE_None)
7757 return QualType();
Chris Lattner14e0e742010-10-01 22:53:11 +00007758
7759 assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE");
7760
Chris Lattner86df27b2009-06-14 00:45:47 +00007761 while (TypeStr[0] && TypeStr[0] != '.') {
Chris Lattner14e0e742010-10-01 22:53:11 +00007762 QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true);
Chris Lattner86df27b2009-06-14 00:45:47 +00007763 if (Error != GE_None)
7764 return QualType();
7765
Chris Lattner14e0e742010-10-01 22:53:11 +00007766 // If this argument is required to be an IntegerConstantExpression and the
7767 // caller cares, fill in the bitmask we return.
7768 if (RequiresICE && IntegerConstantArgs)
7769 *IntegerConstantArgs |= 1 << ArgTypes.size();
7770
Chris Lattner86df27b2009-06-14 00:45:47 +00007771 // Do array -> pointer decay. The builtin should use the decayed type.
7772 if (Ty->isArrayType())
7773 Ty = getArrayDecayedType(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00007774
Chris Lattner86df27b2009-06-14 00:45:47 +00007775 ArgTypes.push_back(Ty);
7776 }
7777
7778 assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
7779 "'.' should only occur at end of builtin type list!");
7780
John McCall00ccbef2010-12-21 00:44:39 +00007781 FunctionType::ExtInfo EI;
7782 if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
7783
7784 bool Variadic = (TypeStr[0] == '.');
7785
7786 // We really shouldn't be making a no-proto type here, especially in C++.
7787 if (ArgTypes.empty() && Variadic)
7788 return getFunctionNoProtoType(ResType, EI);
Douglas Gregorce056bc2010-02-21 22:15:06 +00007789
John McCalle23cf432010-12-14 08:05:40 +00007790 FunctionProtoType::ExtProtoInfo EPI;
John McCall00ccbef2010-12-21 00:44:39 +00007791 EPI.ExtInfo = EI;
7792 EPI.Variadic = Variadic;
John McCalle23cf432010-12-14 08:05:40 +00007793
Jordan Rosebea522f2013-03-08 21:51:21 +00007794 return getFunctionType(ResType, ArgTypes, EPI);
Chris Lattner86df27b2009-06-14 00:45:47 +00007795}
Eli Friedmana95d7572009-08-19 07:44:53 +00007796
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007797GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) {
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007798 if (!FD->isExternallyVisible())
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007799 return GVA_Internal;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007800
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007801 GVALinkage External = GVA_StrongExternal;
7802 switch (FD->getTemplateSpecializationKind()) {
7803 case TSK_Undeclared:
7804 case TSK_ExplicitSpecialization:
7805 External = GVA_StrongExternal;
7806 break;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007807
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007808 case TSK_ExplicitInstantiationDefinition:
7809 return GVA_ExplicitTemplateInstantiation;
7810
7811 case TSK_ExplicitInstantiationDeclaration:
7812 case TSK_ImplicitInstantiation:
7813 External = GVA_TemplateInstantiation;
7814 break;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007815 }
7816
7817 if (!FD->isInlined())
7818 return External;
7819
David Blaikie4e4d0842012-03-11 07:00:24 +00007820 if (!getLangOpts().CPlusPlus || FD->hasAttr<GNUInlineAttr>()) {
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007821 // GNU or C99 inline semantics. Determine whether this symbol should be
7822 // externally visible.
7823 if (FD->isInlineDefinitionExternallyVisible())
7824 return External;
7825
7826 // C99 inline semantics, where the symbol is not externally visible.
7827 return GVA_C99Inline;
7828 }
7829
7830 // C++0x [temp.explicit]p9:
7831 // [ Note: The intent is that an inline function that is the subject of
7832 // an explicit instantiation declaration will still be implicitly
7833 // instantiated when used so that the body can be considered for
7834 // inlining, but that no out-of-line copy of the inline function would be
7835 // generated in the translation unit. -- end note ]
7836 if (FD->getTemplateSpecializationKind()
7837 == TSK_ExplicitInstantiationDeclaration)
7838 return GVA_C99Inline;
7839
7840 return GVA_CXXInline;
7841}
7842
7843GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) {
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007844 if (!VD->isExternallyVisible())
7845 return GVA_Internal;
7846
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007847 // If this is a static data member, compute the kind of template
7848 // specialization. Otherwise, this variable is not part of a
7849 // template.
7850 TemplateSpecializationKind TSK = TSK_Undeclared;
7851 if (VD->isStaticDataMember())
7852 TSK = VD->getTemplateSpecializationKind();
7853
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007854 switch (TSK) {
7855 case TSK_Undeclared:
7856 case TSK_ExplicitSpecialization:
7857 return GVA_StrongExternal;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007858
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007859 case TSK_ExplicitInstantiationDeclaration:
7860 llvm_unreachable("Variable should not be instantiated");
7861 // Fall through to treat this like any other instantiation.
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007862
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007863 case TSK_ExplicitInstantiationDefinition:
7864 return GVA_ExplicitTemplateInstantiation;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007865
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007866 case TSK_ImplicitInstantiation:
7867 return GVA_TemplateInstantiation;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007868 }
Rafael Espindola77b50252013-05-13 14:05:53 +00007869
7870 llvm_unreachable("Invalid Linkage!");
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007871}
7872
Argyrios Kyrtzidis4ac7c0b2010-07-29 20:08:05 +00007873bool ASTContext::DeclMustBeEmitted(const Decl *D) {
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007874 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
7875 if (!VD->isFileVarDecl())
7876 return false;
Richard Smithf396ad92013-04-01 20:22:16 +00007877 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
7878 // We never need to emit an uninstantiated function template.
7879 if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
7880 return false;
7881 } else
7882 return false;
7883
7884 // If this is a member of a class template, we do not need to emit it.
7885 if (D->getDeclContext()->isDependentContext())
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007886 return false;
7887
Argyrios Kyrtzidisab411c82010-07-29 20:07:52 +00007888 // Weak references don't produce any output by themselves.
7889 if (D->hasAttr<WeakRefAttr>())
7890 return false;
7891
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007892 // Aliases and used decls are required.
7893 if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>())
7894 return true;
7895
7896 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
7897 // Forward declarations aren't required.
Sean Hunt10620eb2011-05-06 20:44:56 +00007898 if (!FD->doesThisDeclarationHaveABody())
Nick Lewyckydce67a72011-07-18 05:26:13 +00007899 return FD->doesDeclarationForceExternallyVisibleDefinition();
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007900
7901 // Constructors and destructors are required.
7902 if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>())
7903 return true;
7904
John McCalld5617ee2013-01-25 22:31:03 +00007905 // The key function for a class is required. This rule only comes
7906 // into play when inline functions can be key functions, though.
7907 if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
7908 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
7909 const CXXRecordDecl *RD = MD->getParent();
7910 if (MD->isOutOfLine() && RD->isDynamicClass()) {
7911 const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD);
7912 if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl())
7913 return true;
7914 }
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007915 }
7916 }
7917
7918 GVALinkage Linkage = GetGVALinkageForFunction(FD);
7919
7920 // static, static inline, always_inline, and extern inline functions can
7921 // always be deferred. Normal inline functions can be deferred in C99/C++.
7922 // Implicit template instantiations can also be deferred in C++.
7923 if (Linkage == GVA_Internal || Linkage == GVA_C99Inline ||
Anton Yartsev3a5aca82012-02-02 06:06:34 +00007924 Linkage == GVA_CXXInline || Linkage == GVA_TemplateInstantiation)
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007925 return false;
7926 return true;
7927 }
Douglas Gregor94da1582011-09-10 00:22:34 +00007928
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007929 const VarDecl *VD = cast<VarDecl>(D);
7930 assert(VD->isFileVarDecl() && "Expected file scoped var");
7931
Argyrios Kyrtzidisab411c82010-07-29 20:07:52 +00007932 if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly)
7933 return false;
7934
Richard Smith5f9a7e32012-11-12 21:38:00 +00007935 // Variables that can be needed in other TUs are required.
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007936 GVALinkage L = GetGVALinkageForVariable(VD);
Richard Smith5f9a7e32012-11-12 21:38:00 +00007937 if (L != GVA_Internal && L != GVA_TemplateInstantiation)
7938 return true;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007939
Richard Smith5f9a7e32012-11-12 21:38:00 +00007940 // Variables that have destruction with side-effects are required.
7941 if (VD->getType().isDestructedType())
7942 return true;
7943
7944 // Variables that have initialization with side-effects are required.
7945 if (VD->getInit() && VD->getInit()->HasSideEffects(*this))
7946 return true;
7947
7948 return false;
Argyrios Kyrtzidis90e99a82010-07-29 18:15:58 +00007949}
Charles Davis071cc7d2010-08-16 03:33:14 +00007950
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +00007951CallingConv ASTContext::getDefaultCXXMethodCallConv(bool isVariadic) {
Charles Davisee743f92010-11-09 18:04:24 +00007952 // Pass through to the C++ ABI object
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +00007953 return ABI->getDefaultMethodCallConv(isVariadic);
7954}
7955
7956CallingConv ASTContext::getCanonicalCallConv(CallingConv CC) const {
John McCallb8b2c9d2013-01-25 22:30:49 +00007957 if (CC == CC_C && !LangOpts.MRTD &&
7958 getTargetInfo().getCXXABI().isMemberFunctionCCDefault())
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +00007959 return CC_Default;
7960 return CC;
Charles Davisee743f92010-11-09 18:04:24 +00007961}
7962
Jay Foad4ba2a172011-01-12 09:06:06 +00007963bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const {
Anders Carlssondae0cb52010-11-25 01:51:53 +00007964 // Pass through to the C++ ABI object
7965 return ABI->isNearlyEmpty(RD);
7966}
7967
Peter Collingbourne14110472011-01-13 18:57:25 +00007968MangleContext *ASTContext::createMangleContext() {
John McCallb8b2c9d2013-01-25 22:30:49 +00007969 switch (Target->getCXXABI().getKind()) {
Tim Northoverc264e162013-01-31 12:13:10 +00007970 case TargetCXXABI::GenericAArch64:
John McCallb8b2c9d2013-01-25 22:30:49 +00007971 case TargetCXXABI::GenericItanium:
7972 case TargetCXXABI::GenericARM:
7973 case TargetCXXABI::iOS:
Peter Collingbourne14110472011-01-13 18:57:25 +00007974 return createItaniumMangleContext(*this, getDiagnostics());
John McCallb8b2c9d2013-01-25 22:30:49 +00007975 case TargetCXXABI::Microsoft:
Peter Collingbourne14110472011-01-13 18:57:25 +00007976 return createMicrosoftMangleContext(*this, getDiagnostics());
7977 }
David Blaikieb219cfc2011-09-23 05:06:16 +00007978 llvm_unreachable("Unsupported ABI");
Peter Collingbourne14110472011-01-13 18:57:25 +00007979}
7980
Charles Davis071cc7d2010-08-16 03:33:14 +00007981CXXABI::~CXXABI() {}
Ted Kremenekba29bd22011-04-28 04:53:38 +00007982
7983size_t ASTContext::getSideTableAllocatedMemory() const {
Ted Kremenek0c8cd1a2011-07-27 18:41:12 +00007984 return ASTRecordLayouts.getMemorySize()
7985 + llvm::capacity_in_bytes(ObjCLayouts)
7986 + llvm::capacity_in_bytes(KeyFunctions)
7987 + llvm::capacity_in_bytes(ObjCImpls)
7988 + llvm::capacity_in_bytes(BlockVarCopyInits)
7989 + llvm::capacity_in_bytes(DeclAttrs)
7990 + llvm::capacity_in_bytes(InstantiatedFromStaticDataMember)
7991 + llvm::capacity_in_bytes(InstantiatedFromUsingDecl)
7992 + llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl)
7993 + llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl)
7994 + llvm::capacity_in_bytes(OverriddenMethods)
7995 + llvm::capacity_in_bytes(Types)
Francois Pichetaf0f4d02011-08-14 03:52:19 +00007996 + llvm::capacity_in_bytes(VariableArrayTypes)
Francois Pichet0d95f0d2011-08-14 14:28:49 +00007997 + llvm::capacity_in_bytes(ClassScopeSpecializationPattern);
Ted Kremenekba29bd22011-04-28 04:53:38 +00007998}
Ted Kremenekd211cb72011-10-06 05:00:56 +00007999
David Blaikie66cff722012-11-14 01:52:05 +00008000void ASTContext::addUnnamedTag(const TagDecl *Tag) {
8001 // FIXME: This mangling should be applied to function local classes too
8002 if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl() ||
Rafael Espindola5bbb0582013-05-28 14:09:46 +00008003 !isa<CXXRecordDecl>(Tag->getParent()))
David Blaikie66cff722012-11-14 01:52:05 +00008004 return;
8005
8006 std::pair<llvm::DenseMap<const DeclContext *, unsigned>::iterator, bool> P =
8007 UnnamedMangleContexts.insert(std::make_pair(Tag->getParent(), 0));
8008 UnnamedMangleNumbers.insert(std::make_pair(Tag, P.first->second++));
8009}
8010
8011int ASTContext::getUnnamedTagManglingNumber(const TagDecl *Tag) const {
8012 llvm::DenseMap<const TagDecl *, unsigned>::const_iterator I =
8013 UnnamedMangleNumbers.find(Tag);
8014 return I != UnnamedMangleNumbers.end() ? I->second : -1;
8015}
8016
Douglas Gregor9e8c92a2012-02-20 19:44:39 +00008017unsigned ASTContext::getLambdaManglingNumber(CXXMethodDecl *CallOperator) {
8018 CXXRecordDecl *Lambda = CallOperator->getParent();
8019 return LambdaMangleContexts[Lambda->getDeclContext()]
8020 .getManglingNumber(CallOperator);
8021}
8022
8023
Ted Kremenekd211cb72011-10-06 05:00:56 +00008024void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) {
8025 ParamIndices[D] = index;
8026}
8027
8028unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const {
8029 ParameterIndexTable::const_iterator I = ParamIndices.find(D);
8030 assert(I != ParamIndices.end() &&
8031 "ParmIndices lacks entry set by ParmVarDecl");
8032 return I->second;
8033}
Fariborz Jahanian538bbe52013-05-28 17:37:39 +00008034
8035bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const {
8036 const llvm::Triple &T = getTargetInfo().getTriple();
8037 if (!T.isOSDarwin())
8038 return false;
8039
8040 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
8041 CharUnits sizeChars = getTypeSizeInChars(AtomicTy);
8042 uint64_t Size = sizeChars.getQuantity();
8043 CharUnits alignChars = getTypeAlignInChars(AtomicTy);
8044 unsigned Align = alignChars.getQuantity();
8045 unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth();
8046 return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits);
8047}