blob: d31f1fb16e15e9357bf381877d6eb3828abfd597 [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"
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +000015#include "clang/AST/DeclCXX.h"
Steve Naroff980e5082007-10-01 19:00:59 +000016#include "clang/AST/DeclObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000017#include "clang/AST/DeclTemplate.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000018#include "clang/AST/Expr.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000019#include "clang/AST/ExternalASTSource.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000020#include "clang/AST/RecordLayout.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000021#include "clang/Basic/Builtins.h"
Chris Lattnera9376d42009-03-28 03:45:20 +000022#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "clang/Basic/TargetInfo.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000024#include "llvm/ADT/StringExtras.h"
Nate Begeman6fe7c8a2009-01-18 06:42:49 +000025#include "llvm/Support/MathExtras.h"
Chris Lattner557c5b12009-03-28 04:27:18 +000026#include "llvm/Support/MemoryBuffer.h"
Anders Carlsson29445a02009-07-18 21:19:52 +000027#include "RecordLayoutBuilder.h"
28
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
30
31enum FloatingRank {
32 FloatRank, DoubleRank, LongDoubleRank
33};
34
Chris Lattner61710852008-10-05 17:34:18 +000035ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM,
36 TargetInfo &t,
Daniel Dunbare91593e2008-08-11 04:54:23 +000037 IdentifierTable &idents, SelectorTable &sels,
Chris Lattner1b63e4f2009-06-14 01:54:56 +000038 Builtin::Context &builtins,
39 bool FreeMem, unsigned size_reserve) :
Douglas Gregorab452ba2009-03-26 23:50:42 +000040 GlobalNestedNameSpecifier(0), CFConstantStringTypeDecl(0),
Mike Stump782fa302009-07-28 02:25:19 +000041 ObjCFastEnumerationStateTypeDecl(0), FILEDecl(0), jmp_bufDecl(0),
42 sigjmp_bufDecl(0), SourceMgr(SM), LangOpts(LOpts),
Douglas Gregor2e222532009-07-02 17:08:52 +000043 LoadedExternalComments(false), FreeMemory(FreeMem), Target(t),
44 Idents(idents), Selectors(sels),
Chris Lattnere4f21422009-06-30 01:26:17 +000045 BuiltinInfo(builtins), ExternalSource(0), PrintingPolicy(LOpts) {
Daniel Dunbare91593e2008-08-11 04:54:23 +000046 if (size_reserve > 0) Types.reserve(size_reserve);
Daniel Dunbare91593e2008-08-11 04:54:23 +000047 TUDecl = TranslationUnitDecl::Create(*this);
Steve Naroff14108da2009-07-10 23:34:53 +000048 InitBuiltinTypes();
Daniel Dunbare91593e2008-08-11 04:54:23 +000049}
50
Reid Spencer5f016e22007-07-11 17:01:13 +000051ASTContext::~ASTContext() {
52 // Deallocate all the types.
53 while (!Types.empty()) {
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000054 Types.back()->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000055 Types.pop_back();
56 }
Eli Friedmanb26153c2008-05-27 03:08:09 +000057
Nuno Lopesb74668e2008-12-17 22:30:25 +000058 {
59 llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
60 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end();
61 while (I != E) {
62 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
63 delete R;
64 }
65 }
66
67 {
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +000068 llvm::DenseMap<const ObjCContainerDecl*, const ASTRecordLayout*>::iterator
69 I = ObjCLayouts.begin(), E = ObjCLayouts.end();
Nuno Lopesb74668e2008-12-17 22:30:25 +000070 while (I != E) {
71 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
72 delete R;
73 }
74 }
75
Douglas Gregorab452ba2009-03-26 23:50:42 +000076 // Destroy nested-name-specifiers.
Douglas Gregor1ae0afa2009-03-27 23:54:10 +000077 for (llvm::FoldingSet<NestedNameSpecifier>::iterator
78 NNS = NestedNameSpecifiers.begin(),
79 NNSEnd = NestedNameSpecifiers.end();
Douglas Gregore7dcd782009-03-27 23:25:45 +000080 NNS != NNSEnd;
Douglas Gregor1ae0afa2009-03-27 23:54:10 +000081 /* Increment in loop */)
82 (*NNS++).Destroy(*this);
Douglas Gregorab452ba2009-03-26 23:50:42 +000083
84 if (GlobalNestedNameSpecifier)
85 GlobalNestedNameSpecifier->Destroy(*this);
86
Eli Friedmanb26153c2008-05-27 03:08:09 +000087 TUDecl->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000088}
89
Douglas Gregor2cf26342009-04-09 22:27:44 +000090void
91ASTContext::setExternalSource(llvm::OwningPtr<ExternalASTSource> &Source) {
92 ExternalSource.reset(Source.take());
93}
94
Reid Spencer5f016e22007-07-11 17:01:13 +000095void ASTContext::PrintStats() const {
96 fprintf(stderr, "*** AST Context Stats:\n");
97 fprintf(stderr, " %d types total.\n", (int)Types.size());
Sebastian Redl7c80bd62009-03-16 23:22:08 +000098
Douglas Gregordbe833d2009-05-26 14:40:08 +000099 unsigned counts[] = {
100#define TYPE(Name, Parent) 0,
101#define ABSTRACT_TYPE(Name, Parent)
102#include "clang/AST/TypeNodes.def"
103 0 // Extra
104 };
Douglas Gregorc2ee10d2009-04-07 17:20:56 +0000105
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
107 Type *T = Types[i];
Douglas Gregordbe833d2009-05-26 14:40:08 +0000108 counts[(unsigned)T->getTypeClass()]++;
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 }
110
Douglas Gregordbe833d2009-05-26 14:40:08 +0000111 unsigned Idx = 0;
112 unsigned TotalBytes = 0;
113#define TYPE(Name, Parent) \
114 if (counts[Idx]) \
115 fprintf(stderr, " %d %s types\n", (int)counts[Idx], #Name); \
116 TotalBytes += counts[Idx] * sizeof(Name##Type); \
117 ++Idx;
118#define ABSTRACT_TYPE(Name, Parent)
119#include "clang/AST/TypeNodes.def"
120
121 fprintf(stderr, "Total bytes = %d\n", int(TotalBytes));
Douglas Gregor2cf26342009-04-09 22:27:44 +0000122
123 if (ExternalSource.get()) {
124 fprintf(stderr, "\n");
125 ExternalSource->PrintStats();
126 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000127}
128
129
130void ASTContext::InitBuiltinType(QualType &R, BuiltinType::Kind K) {
Steve Narofff83820b2009-01-27 22:08:43 +0000131 Types.push_back((R = QualType(new (*this,8) BuiltinType(K),0)).getTypePtr());
Reid Spencer5f016e22007-07-11 17:01:13 +0000132}
133
Reid Spencer5f016e22007-07-11 17:01:13 +0000134void ASTContext::InitBuiltinTypes() {
135 assert(VoidTy.isNull() && "Context reinitialized?");
136
137 // C99 6.2.5p19.
138 InitBuiltinType(VoidTy, BuiltinType::Void);
139
140 // C99 6.2.5p2.
141 InitBuiltinType(BoolTy, BuiltinType::Bool);
142 // C99 6.2.5p3.
Eli Friedman15b91762009-06-05 07:05:05 +0000143 if (LangOpts.CharIsSigned)
Reid Spencer5f016e22007-07-11 17:01:13 +0000144 InitBuiltinType(CharTy, BuiltinType::Char_S);
145 else
146 InitBuiltinType(CharTy, BuiltinType::Char_U);
147 // C99 6.2.5p4.
148 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
149 InitBuiltinType(ShortTy, BuiltinType::Short);
150 InitBuiltinType(IntTy, BuiltinType::Int);
151 InitBuiltinType(LongTy, BuiltinType::Long);
152 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
153
154 // C99 6.2.5p6.
155 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
156 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
157 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
158 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
159 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
160
161 // C99 6.2.5p10.
162 InitBuiltinType(FloatTy, BuiltinType::Float);
163 InitBuiltinType(DoubleTy, BuiltinType::Double);
164 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000165
Chris Lattner2df9ced2009-04-30 02:43:43 +0000166 // GNU extension, 128-bit integers.
167 InitBuiltinType(Int128Ty, BuiltinType::Int128);
168 InitBuiltinType(UnsignedInt128Ty, BuiltinType::UInt128);
169
Chris Lattner3a250322009-02-26 23:43:47 +0000170 if (LangOpts.CPlusPlus) // C++ 3.9.1p5
171 InitBuiltinType(WCharTy, BuiltinType::WChar);
172 else // C99
173 WCharTy = getFromTargetType(Target.getWCharType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000174
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000175 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
176 InitBuiltinType(Char16Ty, BuiltinType::Char16);
177 else // C99
178 Char16Ty = getFromTargetType(Target.getChar16Type());
179
180 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
181 InitBuiltinType(Char32Ty, BuiltinType::Char32);
182 else // C99
183 Char32Ty = getFromTargetType(Target.getChar32Type());
184
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000185 // Placeholder type for functions.
Douglas Gregor898574e2008-12-05 23:32:09 +0000186 InitBuiltinType(OverloadTy, BuiltinType::Overload);
187
188 // Placeholder type for type-dependent expressions whose type is
189 // completely unknown. No code should ever check a type against
190 // DependentTy and users should never see it; however, it is here to
191 // help diagnose failures to properly check for type-dependent
192 // expressions.
193 InitBuiltinType(DependentTy, BuiltinType::Dependent);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000194
Anders Carlssone89d1592009-06-26 18:41:36 +0000195 // Placeholder type for C++0x auto declarations whose real type has
196 // not yet been deduced.
197 InitBuiltinType(UndeducedAutoTy, BuiltinType::UndeducedAuto);
198
Reid Spencer5f016e22007-07-11 17:01:13 +0000199 // C99 6.2.5p11.
200 FloatComplexTy = getComplexType(FloatTy);
201 DoubleComplexTy = getComplexType(DoubleTy);
202 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000203
Steve Naroff7e219e42007-10-15 14:41:52 +0000204 BuiltinVaListType = QualType();
Anders Carlsson8baaca52007-10-31 02:53:19 +0000205
Steve Naroffde2e22d2009-07-15 18:40:39 +0000206 // "Builtin" typedefs set by Sema::ActOnTranslationUnitScope().
207 ObjCIdTypedefType = QualType();
208 ObjCClassTypedefType = QualType();
209
210 // Builtin types for 'id' and 'Class'.
211 InitBuiltinType(ObjCBuiltinIdTy, BuiltinType::ObjCId);
212 InitBuiltinType(ObjCBuiltinClassTy, BuiltinType::ObjCClass);
Steve Naroff14108da2009-07-10 23:34:53 +0000213
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000214 ObjCConstantStringType = QualType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000215
216 // void * type
217 VoidPtrTy = getPointerType(VoidTy);
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000218
219 // nullptr type (C++0x 2.14.7)
220 InitBuiltinType(NullPtrTy, BuiltinType::NullPtr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000221}
222
Douglas Gregor7caa6822009-07-24 20:34:43 +0000223VarDecl *ASTContext::getInstantiatedFromStaticDataMember(VarDecl *Var) {
224 assert(Var->isStaticDataMember() && "Not a static data member");
225 llvm::DenseMap<VarDecl *, VarDecl *>::iterator Pos
226 = InstantiatedFromStaticDataMember.find(Var);
227 if (Pos == InstantiatedFromStaticDataMember.end())
228 return 0;
229
230 return Pos->second;
231}
232
233void
234ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl) {
235 assert(Inst->isStaticDataMember() && "Not a static data member");
236 assert(Tmpl->isStaticDataMember() && "Not a static data member");
237 assert(!InstantiatedFromStaticDataMember[Inst] &&
238 "Already noted what static data member was instantiated from");
239 InstantiatedFromStaticDataMember[Inst] = Tmpl;
240}
241
Douglas Gregor2e222532009-07-02 17:08:52 +0000242namespace {
243 class BeforeInTranslationUnit
244 : std::binary_function<SourceRange, SourceRange, bool> {
245 SourceManager *SourceMgr;
246
247 public:
248 explicit BeforeInTranslationUnit(SourceManager *SM) : SourceMgr(SM) { }
249
250 bool operator()(SourceRange X, SourceRange Y) {
251 return SourceMgr->isBeforeInTranslationUnit(X.getBegin(), Y.getBegin());
252 }
253 };
254}
255
256/// \brief Determine whether the given comment is a Doxygen-style comment.
257///
258/// \param Start the start of the comment text.
259///
260/// \param End the end of the comment text.
261///
262/// \param Member whether we want to check whether this is a member comment
263/// (which requires a < after the Doxygen-comment delimiter). Otherwise,
264/// we only return true when we find a non-member comment.
265static bool
266isDoxygenComment(SourceManager &SourceMgr, SourceRange Comment,
267 bool Member = false) {
268 const char *BufferStart
269 = SourceMgr.getBufferData(SourceMgr.getFileID(Comment.getBegin())).first;
270 const char *Start = BufferStart + SourceMgr.getFileOffset(Comment.getBegin());
271 const char* End = BufferStart + SourceMgr.getFileOffset(Comment.getEnd());
272
273 if (End - Start < 4)
274 return false;
275
276 assert(Start[0] == '/' && "Not a comment?");
277 if (Start[1] == '*' && !(Start[2] == '!' || Start[2] == '*'))
278 return false;
279 if (Start[1] == '/' && !(Start[2] == '!' || Start[2] == '/'))
280 return false;
281
282 return (Start[3] == '<') == Member;
283}
284
285/// \brief Retrieve the comment associated with the given declaration, if
286/// it has one.
287const char *ASTContext::getCommentForDecl(const Decl *D) {
288 if (!D)
289 return 0;
290
291 // Check whether we have cached a comment string for this declaration
292 // already.
293 llvm::DenseMap<const Decl *, std::string>::iterator Pos
294 = DeclComments.find(D);
295 if (Pos != DeclComments.end())
296 return Pos->second.c_str();
297
298 // If we have an external AST source and have not yet loaded comments from
299 // that source, do so now.
300 if (ExternalSource && !LoadedExternalComments) {
301 std::vector<SourceRange> LoadedComments;
302 ExternalSource->ReadComments(LoadedComments);
303
304 if (!LoadedComments.empty())
305 Comments.insert(Comments.begin(), LoadedComments.begin(),
306 LoadedComments.end());
307
308 LoadedExternalComments = true;
309 }
310
311 // If there are no comments anywhere, we won't find anything.
312 if (Comments.empty())
313 return 0;
314
315 // If the declaration doesn't map directly to a location in a file, we
316 // can't find the comment.
317 SourceLocation DeclStartLoc = D->getLocStart();
318 if (DeclStartLoc.isInvalid() || !DeclStartLoc.isFileID())
319 return 0;
320
321 // Find the comment that occurs just before this declaration.
322 std::vector<SourceRange>::iterator LastComment
323 = std::lower_bound(Comments.begin(), Comments.end(),
324 SourceRange(DeclStartLoc),
325 BeforeInTranslationUnit(&SourceMgr));
326
327 // Decompose the location for the start of the declaration and find the
328 // beginning of the file buffer.
329 std::pair<FileID, unsigned> DeclStartDecomp
330 = SourceMgr.getDecomposedLoc(DeclStartLoc);
331 const char *FileBufferStart
332 = SourceMgr.getBufferData(DeclStartDecomp.first).first;
333
334 // First check whether we have a comment for a member.
335 if (LastComment != Comments.end() &&
336 !isa<TagDecl>(D) && !isa<NamespaceDecl>(D) &&
337 isDoxygenComment(SourceMgr, *LastComment, true)) {
338 std::pair<FileID, unsigned> LastCommentEndDecomp
339 = SourceMgr.getDecomposedLoc(LastComment->getEnd());
340 if (DeclStartDecomp.first == LastCommentEndDecomp.first &&
341 SourceMgr.getLineNumber(DeclStartDecomp.first, DeclStartDecomp.second)
342 == SourceMgr.getLineNumber(LastCommentEndDecomp.first,
343 LastCommentEndDecomp.second)) {
344 // The Doxygen member comment comes after the declaration starts and
345 // is on the same line and in the same file as the declaration. This
346 // is the comment we want.
347 std::string &Result = DeclComments[D];
348 Result.append(FileBufferStart +
349 SourceMgr.getFileOffset(LastComment->getBegin()),
350 FileBufferStart + LastCommentEndDecomp.second + 1);
351 return Result.c_str();
352 }
353 }
354
355 if (LastComment == Comments.begin())
356 return 0;
357 --LastComment;
358
359 // Decompose the end of the comment.
360 std::pair<FileID, unsigned> LastCommentEndDecomp
361 = SourceMgr.getDecomposedLoc(LastComment->getEnd());
362
363 // If the comment and the declaration aren't in the same file, then they
364 // aren't related.
365 if (DeclStartDecomp.first != LastCommentEndDecomp.first)
366 return 0;
367
368 // Check that we actually have a Doxygen comment.
369 if (!isDoxygenComment(SourceMgr, *LastComment))
370 return 0;
371
372 // Compute the starting line for the declaration and for the end of the
373 // comment (this is expensive).
374 unsigned DeclStartLine
375 = SourceMgr.getLineNumber(DeclStartDecomp.first, DeclStartDecomp.second);
376 unsigned CommentEndLine
377 = SourceMgr.getLineNumber(LastCommentEndDecomp.first,
378 LastCommentEndDecomp.second);
379
380 // If the comment does not end on the line prior to the declaration, then
381 // the comment is not associated with the declaration at all.
382 if (CommentEndLine + 1 != DeclStartLine)
383 return 0;
384
385 // We have a comment, but there may be more comments on the previous lines.
386 // Keep looking so long as the comments are still Doxygen comments and are
387 // still adjacent.
388 unsigned ExpectedLine
389 = SourceMgr.getSpellingLineNumber(LastComment->getBegin()) - 1;
390 std::vector<SourceRange>::iterator FirstComment = LastComment;
391 while (FirstComment != Comments.begin()) {
392 // Look at the previous comment
393 --FirstComment;
394 std::pair<FileID, unsigned> Decomp
395 = SourceMgr.getDecomposedLoc(FirstComment->getEnd());
396
397 // If this previous comment is in a different file, we're done.
398 if (Decomp.first != DeclStartDecomp.first) {
399 ++FirstComment;
400 break;
401 }
402
403 // If this comment is not a Doxygen comment, we're done.
404 if (!isDoxygenComment(SourceMgr, *FirstComment)) {
405 ++FirstComment;
406 break;
407 }
408
409 // If the line number is not what we expected, we're done.
410 unsigned Line = SourceMgr.getLineNumber(Decomp.first, Decomp.second);
411 if (Line != ExpectedLine) {
412 ++FirstComment;
413 break;
414 }
415
416 // Set the next expected line number.
417 ExpectedLine
418 = SourceMgr.getSpellingLineNumber(FirstComment->getBegin()) - 1;
419 }
420
421 // The iterator range [FirstComment, LastComment] contains all of the
422 // BCPL comments that, together, are associated with this declaration.
423 // Form a single comment block string for this declaration that concatenates
424 // all of these comments.
425 std::string &Result = DeclComments[D];
426 while (FirstComment != LastComment) {
427 std::pair<FileID, unsigned> DecompStart
428 = SourceMgr.getDecomposedLoc(FirstComment->getBegin());
429 std::pair<FileID, unsigned> DecompEnd
430 = SourceMgr.getDecomposedLoc(FirstComment->getEnd());
431 Result.append(FileBufferStart + DecompStart.second,
432 FileBufferStart + DecompEnd.second + 1);
433 ++FirstComment;
434 }
435
436 // Append the last comment line.
437 Result.append(FileBufferStart +
438 SourceMgr.getFileOffset(LastComment->getBegin()),
439 FileBufferStart + LastCommentEndDecomp.second + 1);
440 return Result.c_str();
441}
442
Chris Lattner464175b2007-07-18 17:52:12 +0000443//===----------------------------------------------------------------------===//
444// Type Sizing and Analysis
445//===----------------------------------------------------------------------===//
Chris Lattnera7674d82007-07-13 22:13:22 +0000446
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000447/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
448/// scalar floating point type.
449const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
450 const BuiltinType *BT = T->getAsBuiltinType();
451 assert(BT && "Not a floating point type!");
452 switch (BT->getKind()) {
453 default: assert(0 && "Not a floating point type!");
454 case BuiltinType::Float: return Target.getFloatFormat();
455 case BuiltinType::Double: return Target.getDoubleFormat();
456 case BuiltinType::LongDouble: return Target.getLongDoubleFormat();
457 }
458}
459
Chris Lattneraf707ab2009-01-24 21:53:27 +0000460/// getDeclAlign - Return a conservative estimate of the alignment of the
461/// specified decl. Note that bitfields do not have a valid alignment, so
462/// this method will assert on them.
Daniel Dunbarb7d08442009-02-17 22:16:19 +0000463unsigned ASTContext::getDeclAlignInBytes(const Decl *D) {
Eli Friedmandcdafb62009-02-22 02:56:25 +0000464 unsigned Align = Target.getCharWidth();
465
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000466 if (const AlignedAttr* AA = D->getAttr<AlignedAttr>())
Eli Friedmandcdafb62009-02-22 02:56:25 +0000467 Align = std::max(Align, AA->getAlignment());
468
Chris Lattneraf707ab2009-01-24 21:53:27 +0000469 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
470 QualType T = VD->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000471 if (const ReferenceType* RT = T->getAs<ReferenceType>()) {
Anders Carlsson4cc2cfd2009-04-10 04:47:03 +0000472 unsigned AS = RT->getPointeeType().getAddressSpace();
Anders Carlssonf0930232009-04-10 04:52:36 +0000473 Align = Target.getPointerAlign(AS);
Anders Carlsson4cc2cfd2009-04-10 04:47:03 +0000474 } else if (!T->isIncompleteType() && !T->isFunctionType()) {
475 // Incomplete or function types default to 1.
Eli Friedmandcdafb62009-02-22 02:56:25 +0000476 while (isa<VariableArrayType>(T) || isa<IncompleteArrayType>(T))
477 T = cast<ArrayType>(T)->getElementType();
478
479 Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr()));
480 }
Chris Lattneraf707ab2009-01-24 21:53:27 +0000481 }
Eli Friedmandcdafb62009-02-22 02:56:25 +0000482
483 return Align / Target.getCharWidth();
Chris Lattneraf707ab2009-01-24 21:53:27 +0000484}
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000485
Chris Lattnera7674d82007-07-13 22:13:22 +0000486/// getTypeSize - Return the size of the specified type, in bits. This method
487/// does not work on incomplete types.
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000488std::pair<uint64_t, unsigned>
Daniel Dunbar1d751182008-11-08 05:48:37 +0000489ASTContext::getTypeInfo(const Type *T) {
Mike Stump5e301002009-02-27 18:32:39 +0000490 uint64_t Width=0;
491 unsigned Align=8;
Chris Lattnera7674d82007-07-13 22:13:22 +0000492 switch (T->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000493#define TYPE(Class, Base)
494#define ABSTRACT_TYPE(Class, Base)
Douglas Gregor18857642009-04-30 17:32:17 +0000495#define NON_CANONICAL_TYPE(Class, Base)
Douglas Gregor72564e72009-02-26 23:50:07 +0000496#define DEPENDENT_TYPE(Class, Base) case Type::Class:
497#include "clang/AST/TypeNodes.def"
Douglas Gregor18857642009-04-30 17:32:17 +0000498 assert(false && "Should not see dependent types");
Douglas Gregor72564e72009-02-26 23:50:07 +0000499 break;
500
Chris Lattner692233e2007-07-13 22:27:08 +0000501 case Type::FunctionNoProto:
502 case Type::FunctionProto:
Douglas Gregor18857642009-04-30 17:32:17 +0000503 // GCC extension: alignof(function) = 32 bits
504 Width = 0;
505 Align = 32;
506 break;
507
Douglas Gregor72564e72009-02-26 23:50:07 +0000508 case Type::IncompleteArray:
Steve Narofffb22d962007-08-30 01:06:46 +0000509 case Type::VariableArray:
Douglas Gregor18857642009-04-30 17:32:17 +0000510 Width = 0;
511 Align = getTypeAlign(cast<ArrayType>(T)->getElementType());
512 break;
513
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000514 case Type::ConstantArrayWithExpr:
515 case Type::ConstantArrayWithoutExpr:
Steve Narofffb22d962007-08-30 01:06:46 +0000516 case Type::ConstantArray: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000517 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
Steve Narofffb22d962007-08-30 01:06:46 +0000518
Chris Lattner98be4942008-03-05 18:54:05 +0000519 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000520 Width = EltInfo.first*CAT->getSize().getZExtValue();
Chris Lattner030d8842007-07-19 22:06:24 +0000521 Align = EltInfo.second;
522 break;
Christopher Lamb5c09a022007-12-29 05:10:55 +0000523 }
Nate Begeman213541a2008-04-18 23:10:10 +0000524 case Type::ExtVector:
Chris Lattner030d8842007-07-19 22:06:24 +0000525 case Type::Vector: {
526 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000527 getTypeInfo(cast<VectorType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000528 Width = EltInfo.first*cast<VectorType>(T)->getNumElements();
Eli Friedman4bd998b2008-05-30 09:31:38 +0000529 Align = Width;
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000530 // If the alignment is not a power of 2, round up to the next power of 2.
531 // This happens for non-power-of-2 length vectors.
532 // FIXME: this should probably be a target property.
533 Align = 1 << llvm::Log2_32_Ceil(Align);
Chris Lattner030d8842007-07-19 22:06:24 +0000534 break;
535 }
Chris Lattner5d2a6302007-07-18 18:26:58 +0000536
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000537 case Type::Builtin:
Chris Lattnera7674d82007-07-13 22:13:22 +0000538 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner692233e2007-07-13 22:27:08 +0000539 default: assert(0 && "Unknown builtin type!");
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000540 case BuiltinType::Void:
Douglas Gregor18857642009-04-30 17:32:17 +0000541 // GCC extension: alignof(void) = 8 bits.
542 Width = 0;
543 Align = 8;
544 break;
545
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000546 case BuiltinType::Bool:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000547 Width = Target.getBoolWidth();
548 Align = Target.getBoolAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000549 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000550 case BuiltinType::Char_S:
551 case BuiltinType::Char_U:
552 case BuiltinType::UChar:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000553 case BuiltinType::SChar:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000554 Width = Target.getCharWidth();
555 Align = Target.getCharAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000556 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000557 case BuiltinType::WChar:
558 Width = Target.getWCharWidth();
559 Align = Target.getWCharAlign();
560 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000561 case BuiltinType::Char16:
562 Width = Target.getChar16Width();
563 Align = Target.getChar16Align();
564 break;
565 case BuiltinType::Char32:
566 Width = Target.getChar32Width();
567 Align = Target.getChar32Align();
568 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000569 case BuiltinType::UShort:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000570 case BuiltinType::Short:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000571 Width = Target.getShortWidth();
572 Align = Target.getShortAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000573 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000574 case BuiltinType::UInt:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000575 case BuiltinType::Int:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000576 Width = Target.getIntWidth();
577 Align = Target.getIntAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000578 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000579 case BuiltinType::ULong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000580 case BuiltinType::Long:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000581 Width = Target.getLongWidth();
582 Align = Target.getLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000583 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000584 case BuiltinType::ULongLong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000585 case BuiltinType::LongLong:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000586 Width = Target.getLongLongWidth();
587 Align = Target.getLongLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000588 break;
Chris Lattnerec16cb92009-04-30 02:55:13 +0000589 case BuiltinType::Int128:
590 case BuiltinType::UInt128:
591 Width = 128;
592 Align = 128; // int128_t is 128-bit aligned on all targets.
593 break;
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000594 case BuiltinType::Float:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000595 Width = Target.getFloatWidth();
596 Align = Target.getFloatAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000597 break;
598 case BuiltinType::Double:
Chris Lattner5426bf62008-04-07 07:01:58 +0000599 Width = Target.getDoubleWidth();
600 Align = Target.getDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000601 break;
602 case BuiltinType::LongDouble:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000603 Width = Target.getLongDoubleWidth();
604 Align = Target.getLongDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000605 break;
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000606 case BuiltinType::NullPtr:
607 Width = Target.getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t)
608 Align = Target.getPointerAlign(0); // == sizeof(void*)
Sebastian Redl1590d9c2009-05-27 19:34:06 +0000609 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000610 }
Chris Lattnerbfef6d72007-07-15 23:46:53 +0000611 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +0000612 case Type::FixedWidthInt:
613 // FIXME: This isn't precisely correct; the width/alignment should depend
614 // on the available types for the target
615 Width = cast<FixedWidthIntType>(T)->getWidth();
Chris Lattner736166b2009-02-15 21:20:13 +0000616 Width = std::max(llvm::NextPowerOf2(Width - 1), (uint64_t)8);
Eli Friedmanf98aba32009-02-13 02:31:07 +0000617 Align = Width;
618 break;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000619 case Type::ExtQual:
Chris Lattner98be4942008-03-05 18:54:05 +0000620 // FIXME: Pointers into different addr spaces could have different sizes and
621 // alignment requirements: getPointerInfo should take an AddrSpace.
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000622 return getTypeInfo(QualType(cast<ExtQualType>(T)->getBaseType(), 0));
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000623 case Type::ObjCObjectPointer:
Chris Lattner5426bf62008-04-07 07:01:58 +0000624 Width = Target.getPointerWidth(0);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000625 Align = Target.getPointerAlign(0);
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000626 break;
Steve Naroff485eeff2008-09-24 15:05:44 +0000627 case Type::BlockPointer: {
628 unsigned AS = cast<BlockPointerType>(T)->getPointeeType().getAddressSpace();
629 Width = Target.getPointerWidth(AS);
630 Align = Target.getPointerAlign(AS);
631 break;
632 }
Chris Lattnerf72a4432008-03-08 08:34:58 +0000633 case Type::Pointer: {
634 unsigned AS = cast<PointerType>(T)->getPointeeType().getAddressSpace();
Chris Lattner5426bf62008-04-07 07:01:58 +0000635 Width = Target.getPointerWidth(AS);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000636 Align = Target.getPointerAlign(AS);
637 break;
638 }
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000639 case Type::LValueReference:
640 case Type::RValueReference:
Chris Lattner7ab2ed82007-07-13 22:16:13 +0000641 // "When applied to a reference or a reference type, the result is the size
Chris Lattner5d2a6302007-07-18 18:26:58 +0000642 // of the referenced type." C++98 5.3.3p2: expr.sizeof.
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000643 // FIXME: This is wrong for struct layout: a reference in a struct has
644 // pointer size.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000645 return getTypeInfo(cast<ReferenceType>(T)->getPointeeType());
Sebastian Redlf30208a2009-01-24 21:16:55 +0000646 case Type::MemberPointer: {
Anders Carlsson1cca74e2009-05-17 02:06:04 +0000647 // FIXME: This is ABI dependent. We use the Itanium C++ ABI.
648 // http://www.codesourcery.com/public/cxx-abi/abi.html#member-pointers
649 // If we ever want to support other ABIs this needs to be abstracted.
650
Sebastian Redlf30208a2009-01-24 21:16:55 +0000651 QualType Pointee = cast<MemberPointerType>(T)->getPointeeType();
Anders Carlsson1cca74e2009-05-17 02:06:04 +0000652 std::pair<uint64_t, unsigned> PtrDiffInfo =
653 getTypeInfo(getPointerDiffType());
654 Width = PtrDiffInfo.first;
Sebastian Redlf30208a2009-01-24 21:16:55 +0000655 if (Pointee->isFunctionType())
656 Width *= 2;
Anders Carlsson1cca74e2009-05-17 02:06:04 +0000657 Align = PtrDiffInfo.second;
658 break;
Sebastian Redlf30208a2009-01-24 21:16:55 +0000659 }
Chris Lattner5d2a6302007-07-18 18:26:58 +0000660 case Type::Complex: {
661 // Complex types have the same alignment as their elements, but twice the
662 // size.
663 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000664 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000665 Width = EltInfo.first*2;
Chris Lattner5d2a6302007-07-18 18:26:58 +0000666 Align = EltInfo.second;
667 break;
668 }
Devang Patel44a3dde2008-06-04 21:54:36 +0000669 case Type::ObjCInterface: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000670 const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
Devang Patel44a3dde2008-06-04 21:54:36 +0000671 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
672 Width = Layout.getSize();
673 Align = Layout.getAlignment();
674 break;
675 }
Douglas Gregor72564e72009-02-26 23:50:07 +0000676 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +0000677 case Type::Enum: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000678 const TagType *TT = cast<TagType>(T);
679
680 if (TT->getDecl()->isInvalidDecl()) {
Chris Lattner8389eab2008-08-09 21:35:13 +0000681 Width = 1;
682 Align = 1;
683 break;
684 }
685
Daniel Dunbar1d751182008-11-08 05:48:37 +0000686 if (const EnumType *ET = dyn_cast<EnumType>(TT))
Chris Lattner71763312008-04-06 22:05:18 +0000687 return getTypeInfo(ET->getDecl()->getIntegerType());
688
Daniel Dunbar1d751182008-11-08 05:48:37 +0000689 const RecordType *RT = cast<RecordType>(TT);
Chris Lattner71763312008-04-06 22:05:18 +0000690 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
691 Width = Layout.getSize();
692 Align = Layout.getAlignment();
Chris Lattnerdc0d73e2007-07-23 22:46:22 +0000693 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000694 }
Douglas Gregor7532dc62009-03-30 22:58:21 +0000695
Douglas Gregor18857642009-04-30 17:32:17 +0000696 case Type::Typedef: {
697 const TypedefDecl *Typedef = cast<TypedefType>(T)->getDecl();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000698 if (const AlignedAttr *Aligned = Typedef->getAttr<AlignedAttr>()) {
Douglas Gregor18857642009-04-30 17:32:17 +0000699 Align = Aligned->getAlignment();
700 Width = getTypeSize(Typedef->getUnderlyingType().getTypePtr());
701 } else
702 return getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
Douglas Gregor7532dc62009-03-30 22:58:21 +0000703 break;
Chris Lattner71763312008-04-06 22:05:18 +0000704 }
Douglas Gregor18857642009-04-30 17:32:17 +0000705
706 case Type::TypeOfExpr:
707 return getTypeInfo(cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType()
708 .getTypePtr());
709
710 case Type::TypeOf:
711 return getTypeInfo(cast<TypeOfType>(T)->getUnderlyingType().getTypePtr());
712
Anders Carlsson395b4752009-06-24 19:06:50 +0000713 case Type::Decltype:
714 return getTypeInfo(cast<DecltypeType>(T)->getUnderlyingExpr()->getType()
715 .getTypePtr());
716
Douglas Gregor18857642009-04-30 17:32:17 +0000717 case Type::QualifiedName:
718 return getTypeInfo(cast<QualifiedNameType>(T)->getNamedType().getTypePtr());
719
720 case Type::TemplateSpecialization:
721 assert(getCanonicalType(T) != T &&
722 "Cannot request the size of a dependent type");
723 // FIXME: this is likely to be wrong once we support template
724 // aliases, since a template alias could refer to a typedef that
725 // has an __aligned__ attribute on it.
726 return getTypeInfo(getCanonicalType(T));
727 }
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000728
Chris Lattner464175b2007-07-18 17:52:12 +0000729 assert(Align && (Align & (Align-1)) == 0 && "Alignment must be power of 2");
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000730 return std::make_pair(Width, Align);
Chris Lattnera7674d82007-07-13 22:13:22 +0000731}
732
Chris Lattner34ebde42009-01-27 18:08:34 +0000733/// getPreferredTypeAlign - Return the "preferred" alignment of the specified
734/// type for the current target in bits. This can be different than the ABI
735/// alignment in cases where it is beneficial for performance to overalign
736/// a data type.
737unsigned ASTContext::getPreferredTypeAlign(const Type *T) {
738 unsigned ABIAlign = getTypeAlign(T);
Eli Friedman1eed6022009-05-25 21:27:19 +0000739
740 // Double and long long should be naturally aligned if possible.
741 if (const ComplexType* CT = T->getAsComplexType())
742 T = CT->getElementType().getTypePtr();
743 if (T->isSpecificBuiltinType(BuiltinType::Double) ||
744 T->isSpecificBuiltinType(BuiltinType::LongLong))
745 return std::max(ABIAlign, (unsigned)getTypeSize(T));
746
Chris Lattner34ebde42009-01-27 18:08:34 +0000747 return ABIAlign;
748}
749
Daniel Dunbara80a0f62009-04-22 17:43:55 +0000750static void CollectLocalObjCIvars(ASTContext *Ctx,
751 const ObjCInterfaceDecl *OI,
752 llvm::SmallVectorImpl<FieldDecl*> &Fields) {
Fariborz Jahaniana769c002008-12-17 21:40:49 +0000753 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
754 E = OI->ivar_end(); I != E; ++I) {
Chris Lattnerf1690852009-03-31 08:48:01 +0000755 ObjCIvarDecl *IVDecl = *I;
Fariborz Jahaniana769c002008-12-17 21:40:49 +0000756 if (!IVDecl->isInvalidDecl())
757 Fields.push_back(cast<FieldDecl>(IVDecl));
758 }
759}
760
Daniel Dunbara80a0f62009-04-22 17:43:55 +0000761void ASTContext::CollectObjCIvars(const ObjCInterfaceDecl *OI,
762 llvm::SmallVectorImpl<FieldDecl*> &Fields) {
763 if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
764 CollectObjCIvars(SuperClass, Fields);
765 CollectLocalObjCIvars(this, OI, Fields);
766}
767
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +0000768/// ShallowCollectObjCIvars -
769/// Collect all ivars, including those synthesized, in the current class.
770///
771void ASTContext::ShallowCollectObjCIvars(const ObjCInterfaceDecl *OI,
772 llvm::SmallVectorImpl<ObjCIvarDecl*> &Ivars,
773 bool CollectSynthesized) {
774 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
775 E = OI->ivar_end(); I != E; ++I) {
776 Ivars.push_back(*I);
777 }
778 if (CollectSynthesized)
779 CollectSynthesizedIvars(OI, Ivars);
780}
781
Fariborz Jahanian98200742009-05-12 18:14:29 +0000782void ASTContext::CollectProtocolSynthesizedIvars(const ObjCProtocolDecl *PD,
783 llvm::SmallVectorImpl<ObjCIvarDecl*> &Ivars) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000784 for (ObjCContainerDecl::prop_iterator I = PD->prop_begin(),
785 E = PD->prop_end(); I != E; ++I)
Fariborz Jahanian98200742009-05-12 18:14:29 +0000786 if (ObjCIvarDecl *Ivar = (*I)->getPropertyIvarDecl())
787 Ivars.push_back(Ivar);
788
789 // Also look into nested protocols.
790 for (ObjCProtocolDecl::protocol_iterator P = PD->protocol_begin(),
791 E = PD->protocol_end(); P != E; ++P)
792 CollectProtocolSynthesizedIvars(*P, Ivars);
793}
794
795/// CollectSynthesizedIvars -
796/// This routine collect synthesized ivars for the designated class.
797///
798void ASTContext::CollectSynthesizedIvars(const ObjCInterfaceDecl *OI,
799 llvm::SmallVectorImpl<ObjCIvarDecl*> &Ivars) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000800 for (ObjCInterfaceDecl::prop_iterator I = OI->prop_begin(),
801 E = OI->prop_end(); I != E; ++I) {
Fariborz Jahanian98200742009-05-12 18:14:29 +0000802 if (ObjCIvarDecl *Ivar = (*I)->getPropertyIvarDecl())
803 Ivars.push_back(Ivar);
804 }
805 // Also look into interface's protocol list for properties declared
806 // in the protocol and whose ivars are synthesized.
807 for (ObjCInterfaceDecl::protocol_iterator P = OI->protocol_begin(),
808 PE = OI->protocol_end(); P != PE; ++P) {
809 ObjCProtocolDecl *PD = (*P);
810 CollectProtocolSynthesizedIvars(PD, Ivars);
811 }
812}
813
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +0000814unsigned ASTContext::CountProtocolSynthesizedIvars(const ObjCProtocolDecl *PD) {
815 unsigned count = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000816 for (ObjCContainerDecl::prop_iterator I = PD->prop_begin(),
817 E = PD->prop_end(); I != E; ++I)
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +0000818 if ((*I)->getPropertyIvarDecl())
819 ++count;
820
821 // Also look into nested protocols.
822 for (ObjCProtocolDecl::protocol_iterator P = PD->protocol_begin(),
823 E = PD->protocol_end(); P != E; ++P)
824 count += CountProtocolSynthesizedIvars(*P);
825 return count;
826}
827
828unsigned ASTContext::CountSynthesizedIvars(const ObjCInterfaceDecl *OI)
829{
830 unsigned count = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000831 for (ObjCInterfaceDecl::prop_iterator I = OI->prop_begin(),
832 E = OI->prop_end(); I != E; ++I) {
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +0000833 if ((*I)->getPropertyIvarDecl())
834 ++count;
835 }
836 // Also look into interface's protocol list for properties declared
837 // in the protocol and whose ivars are synthesized.
838 for (ObjCInterfaceDecl::protocol_iterator P = OI->protocol_begin(),
839 PE = OI->protocol_end(); P != PE; ++P) {
840 ObjCProtocolDecl *PD = (*P);
841 count += CountProtocolSynthesizedIvars(PD);
842 }
843 return count;
844}
845
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000846/// \brief Get the implementation of ObjCInterfaceDecl,or NULL if none exists.
847ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) {
848 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
849 I = ObjCImpls.find(D);
850 if (I != ObjCImpls.end())
851 return cast<ObjCImplementationDecl>(I->second);
852 return 0;
853}
854/// \brief Get the implementation of ObjCCategoryDecl, or NULL if none exists.
855ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) {
856 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
857 I = ObjCImpls.find(D);
858 if (I != ObjCImpls.end())
859 return cast<ObjCCategoryImplDecl>(I->second);
860 return 0;
861}
862
863/// \brief Set the implementation of ObjCInterfaceDecl.
864void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD,
865 ObjCImplementationDecl *ImplD) {
866 assert(IFaceD && ImplD && "Passed null params");
867 ObjCImpls[IFaceD] = ImplD;
868}
869/// \brief Set the implementation of ObjCCategoryDecl.
870void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD,
871 ObjCCategoryImplDecl *ImplD) {
872 assert(CatD && ImplD && "Passed null params");
873 ObjCImpls[CatD] = ImplD;
874}
875
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +0000876/// getInterfaceLayoutImpl - Get or compute information about the
877/// layout of the given interface.
878///
879/// \param Impl - If given, also include the layout of the interface's
880/// implementation. This may differ by including synthesized ivars.
Devang Patel44a3dde2008-06-04 21:54:36 +0000881const ASTRecordLayout &
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +0000882ASTContext::getObjCLayout(const ObjCInterfaceDecl *D,
883 const ObjCImplementationDecl *Impl) {
Daniel Dunbar532d4da2009-05-03 13:15:50 +0000884 assert(!D->isForwardDecl() && "Invalid interface decl!");
885
Devang Patel44a3dde2008-06-04 21:54:36 +0000886 // Look up this layout, if already laid out, return what we have.
Daniel Dunbard8fd6ff2009-05-03 11:41:43 +0000887 ObjCContainerDecl *Key =
888 Impl ? (ObjCContainerDecl*) Impl : (ObjCContainerDecl*) D;
889 if (const ASTRecordLayout *Entry = ObjCLayouts[Key])
890 return *Entry;
Devang Patel44a3dde2008-06-04 21:54:36 +0000891
Daniel Dunbar453addb2009-05-03 11:16:44 +0000892 // Add in synthesized ivar count if laying out an implementation.
893 if (Impl) {
Anders Carlsson29445a02009-07-18 21:19:52 +0000894 unsigned FieldCount = D->ivar_size();
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +0000895 unsigned SynthCount = CountSynthesizedIvars(D);
896 FieldCount += SynthCount;
Daniel Dunbard8fd6ff2009-05-03 11:41:43 +0000897 // If there aren't any sythesized ivars then reuse the interface
Daniel Dunbar453addb2009-05-03 11:16:44 +0000898 // entry. Note we can't cache this because we simply free all
899 // entries later; however we shouldn't look up implementations
900 // frequently.
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +0000901 if (SynthCount == 0)
Daniel Dunbar453addb2009-05-03 11:16:44 +0000902 return getObjCLayout(D, 0);
903 }
904
Anders Carlsson29445a02009-07-18 21:19:52 +0000905 const ASTRecordLayout *NewEntry =
906 ASTRecordLayoutBuilder::ComputeLayout(*this, D, Impl);
907 ObjCLayouts[Key] = NewEntry;
908
Devang Patel44a3dde2008-06-04 21:54:36 +0000909 return *NewEntry;
910}
911
Daniel Dunbarb2dbbb92009-05-03 10:38:35 +0000912const ASTRecordLayout &
913ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) {
914 return getObjCLayout(D, 0);
915}
916
917const ASTRecordLayout &
918ASTContext::getASTObjCImplementationLayout(const ObjCImplementationDecl *D) {
919 return getObjCLayout(D->getClassInterface(), D);
920}
921
Devang Patel88a981b2007-11-01 19:11:01 +0000922/// getASTRecordLayout - Get or compute information about the layout of the
Chris Lattner464175b2007-07-18 17:52:12 +0000923/// specified record (struct/union/class), which indicates its size and field
924/// position information.
Chris Lattner98be4942008-03-05 18:54:05 +0000925const ASTRecordLayout &ASTContext::getASTRecordLayout(const RecordDecl *D) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000926 D = D->getDefinition(*this);
927 assert(D && "Cannot get layout of forward declarations!");
Eli Friedman4bd998b2008-05-30 09:31:38 +0000928
Chris Lattner464175b2007-07-18 17:52:12 +0000929 // Look up this layout, if already laid out, return what we have.
Eli Friedmanab22c432009-07-22 20:29:16 +0000930 // Note that we can't save a reference to the entry because this function
931 // is recursive.
932 const ASTRecordLayout *Entry = ASTRecordLayouts[D];
Chris Lattner464175b2007-07-18 17:52:12 +0000933 if (Entry) return *Entry;
Eli Friedman4bd998b2008-05-30 09:31:38 +0000934
Anders Carlsson29445a02009-07-18 21:19:52 +0000935 const ASTRecordLayout *NewEntry =
936 ASTRecordLayoutBuilder::ComputeLayout(*this, D);
Eli Friedmanab22c432009-07-22 20:29:16 +0000937 ASTRecordLayouts[D] = NewEntry;
Anders Carlsson29445a02009-07-18 21:19:52 +0000938
Chris Lattner5d2a6302007-07-18 18:26:58 +0000939 return *NewEntry;
Chris Lattner464175b2007-07-18 17:52:12 +0000940}
941
Chris Lattnera7674d82007-07-13 22:13:22 +0000942//===----------------------------------------------------------------------===//
943// Type creation/memoization methods
944//===----------------------------------------------------------------------===//
945
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000946QualType ASTContext::getAddrSpaceQualType(QualType T, unsigned AddressSpace) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000947 QualType CanT = getCanonicalType(T);
948 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattnerf46699c2008-02-20 20:55:12 +0000949 return T;
Chris Lattnerb7d25532009-02-18 22:53:11 +0000950
951 // If we are composing extended qualifiers together, merge together into one
952 // ExtQualType node.
953 unsigned CVRQuals = T.getCVRQualifiers();
954 QualType::GCAttrTypes GCAttr = QualType::GCNone;
955 Type *TypeNode = T.getTypePtr();
Chris Lattnerf46699c2008-02-20 20:55:12 +0000956
Chris Lattnerb7d25532009-02-18 22:53:11 +0000957 if (ExtQualType *EQT = dyn_cast<ExtQualType>(TypeNode)) {
958 // If this type already has an address space specified, it cannot get
959 // another one.
960 assert(EQT->getAddressSpace() == 0 &&
961 "Type cannot be in multiple addr spaces!");
962 GCAttr = EQT->getObjCGCAttr();
963 TypeNode = EQT->getBaseType();
964 }
Chris Lattnerf46699c2008-02-20 20:55:12 +0000965
Chris Lattnerb7d25532009-02-18 22:53:11 +0000966 // Check if we've already instantiated this type.
Christopher Lambebb97e92008-02-04 02:31:56 +0000967 llvm::FoldingSetNodeID ID;
Mike Stump24556362009-07-25 21:26:53 +0000968 ExtQualType::Profile(ID, TypeNode, AddressSpace, GCAttr);
Christopher Lambebb97e92008-02-04 02:31:56 +0000969 void *InsertPos = 0;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000970 if (ExtQualType *EXTQy = ExtQualTypes.FindNodeOrInsertPos(ID, InsertPos))
Chris Lattnerb7d25532009-02-18 22:53:11 +0000971 return QualType(EXTQy, CVRQuals);
972
Christopher Lambebb97e92008-02-04 02:31:56 +0000973 // If the base type isn't canonical, this won't be a canonical type either,
974 // so fill in the canonical type field.
975 QualType Canonical;
Chris Lattnerb7d25532009-02-18 22:53:11 +0000976 if (!TypeNode->isCanonical()) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000977 Canonical = getAddrSpaceQualType(CanT, AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000978
Chris Lattnerb7d25532009-02-18 22:53:11 +0000979 // Update InsertPos, the previous call could have invalidated it.
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000980 ExtQualType *NewIP = ExtQualTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000981 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Christopher Lambebb97e92008-02-04 02:31:56 +0000982 }
Chris Lattnerb7d25532009-02-18 22:53:11 +0000983 ExtQualType *New =
984 new (*this, 8) ExtQualType(TypeNode, Canonical, AddressSpace, GCAttr);
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000985 ExtQualTypes.InsertNode(New, InsertPos);
Christopher Lambebb97e92008-02-04 02:31:56 +0000986 Types.push_back(New);
Chris Lattnerb7d25532009-02-18 22:53:11 +0000987 return QualType(New, CVRQuals);
Christopher Lambebb97e92008-02-04 02:31:56 +0000988}
989
Chris Lattnerb7d25532009-02-18 22:53:11 +0000990QualType ASTContext::getObjCGCQualType(QualType T,
991 QualType::GCAttrTypes GCAttr) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +0000992 QualType CanT = getCanonicalType(T);
Chris Lattnerb7d25532009-02-18 22:53:11 +0000993 if (CanT.getObjCGCAttr() == GCAttr)
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +0000994 return T;
995
Fariborz Jahanian4027cd12009-06-03 17:15:17 +0000996 if (T->isPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000997 QualType Pointee = T->getAs<PointerType>()->getPointeeType();
Steve Naroff58f9f2c2009-07-14 18:25:06 +0000998 if (Pointee->isAnyPointerType()) {
Fariborz Jahanian4027cd12009-06-03 17:15:17 +0000999 QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
1000 return getPointerType(ResultType);
1001 }
1002 }
Chris Lattnerb7d25532009-02-18 22:53:11 +00001003 // If we are composing extended qualifiers together, merge together into one
1004 // ExtQualType node.
1005 unsigned CVRQuals = T.getCVRQualifiers();
1006 Type *TypeNode = T.getTypePtr();
1007 unsigned AddressSpace = 0;
1008
1009 if (ExtQualType *EQT = dyn_cast<ExtQualType>(TypeNode)) {
Mike Stump24556362009-07-25 21:26:53 +00001010 // If this type already has an ObjCGC specified, it cannot get
Chris Lattnerb7d25532009-02-18 22:53:11 +00001011 // another one.
1012 assert(EQT->getObjCGCAttr() == QualType::GCNone &&
Mike Stump24556362009-07-25 21:26:53 +00001013 "Type cannot have multiple ObjCGCs!");
Chris Lattnerb7d25532009-02-18 22:53:11 +00001014 AddressSpace = EQT->getAddressSpace();
1015 TypeNode = EQT->getBaseType();
1016 }
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001017
1018 // Check if we've already instantiated an gc qual'd type of this type.
1019 llvm::FoldingSetNodeID ID;
Mike Stump24556362009-07-25 21:26:53 +00001020 ExtQualType::Profile(ID, TypeNode, AddressSpace, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001021 void *InsertPos = 0;
1022 if (ExtQualType *EXTQy = ExtQualTypes.FindNodeOrInsertPos(ID, InsertPos))
Chris Lattnerb7d25532009-02-18 22:53:11 +00001023 return QualType(EXTQy, CVRQuals);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001024
1025 // If the base type isn't canonical, this won't be a canonical type either,
1026 // so fill in the canonical type field.
Eli Friedman5a61f0e2009-02-27 23:04:43 +00001027 // FIXME: Isn't this also not canonical if the base type is a array
1028 // or pointer type? I can't find any documentation for objc_gc, though...
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001029 QualType Canonical;
1030 if (!T->isCanonical()) {
Chris Lattnerb7d25532009-02-18 22:53:11 +00001031 Canonical = getObjCGCQualType(CanT, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001032
Chris Lattnerb7d25532009-02-18 22:53:11 +00001033 // Update InsertPos, the previous call could have invalidated it.
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001034 ExtQualType *NewIP = ExtQualTypes.FindNodeOrInsertPos(ID, InsertPos);
1035 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
1036 }
Chris Lattnerb7d25532009-02-18 22:53:11 +00001037 ExtQualType *New =
1038 new (*this, 8) ExtQualType(TypeNode, Canonical, AddressSpace, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001039 ExtQualTypes.InsertNode(New, InsertPos);
1040 Types.push_back(New);
Chris Lattnerb7d25532009-02-18 22:53:11 +00001041 return QualType(New, CVRQuals);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001042}
Chris Lattnera7674d82007-07-13 22:13:22 +00001043
Mike Stump24556362009-07-25 21:26:53 +00001044QualType ASTContext::getNoReturnType(QualType T) {
Mike Stump6dcbc292009-07-25 23:24:03 +00001045 QualifierSet qs;
1046 qs.strip(T);
Mike Stump24556362009-07-25 21:26:53 +00001047 if (T->isPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001048 QualType Pointee = T->getAs<PointerType>()->getPointeeType();
Mike Stump24556362009-07-25 21:26:53 +00001049 QualType ResultType = getNoReturnType(Pointee);
Mike Stump6dcbc292009-07-25 23:24:03 +00001050 ResultType = getPointerType(ResultType);
1051 ResultType.setCVRQualifiers(T.getCVRQualifiers());
1052 return qs.apply(ResultType, *this);
Mike Stump24556362009-07-25 21:26:53 +00001053 }
1054 if (T->isBlockPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001055 QualType Pointee = T->getAs<BlockPointerType>()->getPointeeType();
Mike Stump24556362009-07-25 21:26:53 +00001056 QualType ResultType = getNoReturnType(Pointee);
Mike Stump6dcbc292009-07-25 23:24:03 +00001057 ResultType = getBlockPointerType(ResultType);
1058 ResultType.setCVRQualifiers(T.getCVRQualifiers());
1059 return qs.apply(ResultType, *this);
Mike Stump24556362009-07-25 21:26:53 +00001060 }
1061 if (!T->isFunctionType())
1062 assert(0 && "can't noreturn qualify non-pointer to function or block type");
1063
Mike Stumpe24aea22009-07-27 22:25:19 +00001064 if (const FunctionNoProtoType *F = T->getAsFunctionNoProtoType()) {
Mike Stump24556362009-07-25 21:26:53 +00001065 return getFunctionNoProtoType(F->getResultType(), true);
1066 }
Mike Stumpe24aea22009-07-27 22:25:19 +00001067 const FunctionProtoType *F = T->getAsFunctionProtoType();
Mike Stump24556362009-07-25 21:26:53 +00001068 return getFunctionType(F->getResultType(), F->arg_type_begin(),
1069 F->getNumArgs(), F->isVariadic(), F->getTypeQuals(),
1070 F->hasExceptionSpec(), F->hasAnyExceptionSpec(),
1071 F->getNumExceptions(), F->exception_begin(), true);
1072}
1073
Reid Spencer5f016e22007-07-11 17:01:13 +00001074/// getComplexType - Return the uniqued reference to the type for a complex
1075/// number with the specified element type.
1076QualType ASTContext::getComplexType(QualType T) {
1077 // Unique pointers, to guarantee there is only one pointer of a particular
1078 // structure.
1079 llvm::FoldingSetNodeID ID;
1080 ComplexType::Profile(ID, T);
1081
1082 void *InsertPos = 0;
1083 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
1084 return QualType(CT, 0);
1085
1086 // If the pointee type isn't canonical, this won't be a canonical type either,
1087 // so fill in the canonical type field.
1088 QualType Canonical;
1089 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001090 Canonical = getComplexType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +00001091
1092 // Get the new insert position for the node we care about.
1093 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001094 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001095 }
Steve Narofff83820b2009-01-27 22:08:43 +00001096 ComplexType *New = new (*this,8) ComplexType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001097 Types.push_back(New);
1098 ComplexTypes.InsertNode(New, InsertPos);
1099 return QualType(New, 0);
1100}
1101
Eli Friedmanf98aba32009-02-13 02:31:07 +00001102QualType ASTContext::getFixedWidthIntType(unsigned Width, bool Signed) {
1103 llvm::DenseMap<unsigned, FixedWidthIntType*> &Map = Signed ?
1104 SignedFixedWidthIntTypes : UnsignedFixedWidthIntTypes;
1105 FixedWidthIntType *&Entry = Map[Width];
1106 if (!Entry)
1107 Entry = new FixedWidthIntType(Width, Signed);
1108 return QualType(Entry, 0);
1109}
Reid Spencer5f016e22007-07-11 17:01:13 +00001110
1111/// getPointerType - Return the uniqued reference to the type for a pointer to
1112/// the specified type.
1113QualType ASTContext::getPointerType(QualType T) {
1114 // Unique pointers, to guarantee there is only one pointer of a particular
1115 // structure.
1116 llvm::FoldingSetNodeID ID;
1117 PointerType::Profile(ID, T);
1118
1119 void *InsertPos = 0;
1120 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
1121 return QualType(PT, 0);
1122
1123 // If the pointee type isn't canonical, this won't be a canonical type either,
1124 // so fill in the canonical type field.
1125 QualType Canonical;
1126 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001127 Canonical = getPointerType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +00001128
1129 // Get the new insert position for the node we care about.
1130 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001131 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001132 }
Steve Narofff83820b2009-01-27 22:08:43 +00001133 PointerType *New = new (*this,8) PointerType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001134 Types.push_back(New);
1135 PointerTypes.InsertNode(New, InsertPos);
1136 return QualType(New, 0);
1137}
1138
Steve Naroff5618bd42008-08-27 16:04:49 +00001139/// getBlockPointerType - Return the uniqued reference to the type for
1140/// a pointer to the specified block.
1141QualType ASTContext::getBlockPointerType(QualType T) {
Steve Naroff296e8d52008-08-28 19:20:44 +00001142 assert(T->isFunctionType() && "block of function types only");
1143 // Unique pointers, to guarantee there is only one block of a particular
Steve Naroff5618bd42008-08-27 16:04:49 +00001144 // structure.
1145 llvm::FoldingSetNodeID ID;
1146 BlockPointerType::Profile(ID, T);
1147
1148 void *InsertPos = 0;
1149 if (BlockPointerType *PT =
1150 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
1151 return QualType(PT, 0);
1152
Steve Naroff296e8d52008-08-28 19:20:44 +00001153 // If the block pointee type isn't canonical, this won't be a canonical
Steve Naroff5618bd42008-08-27 16:04:49 +00001154 // type either so fill in the canonical type field.
1155 QualType Canonical;
1156 if (!T->isCanonical()) {
1157 Canonical = getBlockPointerType(getCanonicalType(T));
1158
1159 // Get the new insert position for the node we care about.
1160 BlockPointerType *NewIP =
1161 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001162 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff5618bd42008-08-27 16:04:49 +00001163 }
Steve Narofff83820b2009-01-27 22:08:43 +00001164 BlockPointerType *New = new (*this,8) BlockPointerType(T, Canonical);
Steve Naroff5618bd42008-08-27 16:04:49 +00001165 Types.push_back(New);
1166 BlockPointerTypes.InsertNode(New, InsertPos);
1167 return QualType(New, 0);
1168}
1169
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001170/// getLValueReferenceType - Return the uniqued reference to the type for an
1171/// lvalue reference to the specified type.
1172QualType ASTContext::getLValueReferenceType(QualType T) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001173 // Unique pointers, to guarantee there is only one pointer of a particular
1174 // structure.
1175 llvm::FoldingSetNodeID ID;
1176 ReferenceType::Profile(ID, T);
1177
1178 void *InsertPos = 0;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001179 if (LValueReferenceType *RT =
1180 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00001181 return QualType(RT, 0);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001182
Reid Spencer5f016e22007-07-11 17:01:13 +00001183 // If the referencee type isn't canonical, this won't be a canonical type
1184 // either, so fill in the canonical type field.
1185 QualType Canonical;
1186 if (!T->isCanonical()) {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001187 Canonical = getLValueReferenceType(getCanonicalType(T));
1188
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 // Get the new insert position for the node we care about.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001190 LValueReferenceType *NewIP =
1191 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001192 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001193 }
1194
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001195 LValueReferenceType *New = new (*this,8) LValueReferenceType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001196 Types.push_back(New);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001197 LValueReferenceTypes.InsertNode(New, InsertPos);
1198 return QualType(New, 0);
1199}
1200
1201/// getRValueReferenceType - Return the uniqued reference to the type for an
1202/// rvalue reference to the specified type.
1203QualType ASTContext::getRValueReferenceType(QualType T) {
1204 // Unique pointers, to guarantee there is only one pointer of a particular
1205 // structure.
1206 llvm::FoldingSetNodeID ID;
1207 ReferenceType::Profile(ID, T);
1208
1209 void *InsertPos = 0;
1210 if (RValueReferenceType *RT =
1211 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
1212 return QualType(RT, 0);
1213
1214 // If the referencee type isn't canonical, this won't be a canonical type
1215 // either, so fill in the canonical type field.
1216 QualType Canonical;
1217 if (!T->isCanonical()) {
1218 Canonical = getRValueReferenceType(getCanonicalType(T));
1219
1220 // Get the new insert position for the node we care about.
1221 RValueReferenceType *NewIP =
1222 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
1223 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
1224 }
1225
1226 RValueReferenceType *New = new (*this,8) RValueReferenceType(T, Canonical);
1227 Types.push_back(New);
1228 RValueReferenceTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00001229 return QualType(New, 0);
1230}
1231
Sebastian Redlf30208a2009-01-24 21:16:55 +00001232/// getMemberPointerType - Return the uniqued reference to the type for a
1233/// member pointer to the specified type, in the specified class.
1234QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls)
1235{
1236 // Unique pointers, to guarantee there is only one pointer of a particular
1237 // structure.
1238 llvm::FoldingSetNodeID ID;
1239 MemberPointerType::Profile(ID, T, Cls);
1240
1241 void *InsertPos = 0;
1242 if (MemberPointerType *PT =
1243 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
1244 return QualType(PT, 0);
1245
1246 // If the pointee or class type isn't canonical, this won't be a canonical
1247 // type either, so fill in the canonical type field.
1248 QualType Canonical;
1249 if (!T->isCanonical()) {
1250 Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
1251
1252 // Get the new insert position for the node we care about.
1253 MemberPointerType *NewIP =
1254 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
1255 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
1256 }
Steve Narofff83820b2009-01-27 22:08:43 +00001257 MemberPointerType *New = new (*this,8) MemberPointerType(T, Cls, Canonical);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001258 Types.push_back(New);
1259 MemberPointerTypes.InsertNode(New, InsertPos);
1260 return QualType(New, 0);
1261}
1262
Steve Narofffb22d962007-08-30 01:06:46 +00001263/// getConstantArrayType - Return the unique reference to the type for an
1264/// array of the specified element type.
1265QualType ASTContext::getConstantArrayType(QualType EltTy,
Chris Lattner38aeec72009-05-13 04:12:56 +00001266 const llvm::APInt &ArySizeIn,
Steve Naroffc9406122007-08-30 18:10:14 +00001267 ArrayType::ArraySizeModifier ASM,
1268 unsigned EltTypeQuals) {
Eli Friedman587cbdf2009-05-29 20:17:55 +00001269 assert((EltTy->isDependentType() || EltTy->isConstantSizeType()) &&
1270 "Constant array of VLAs is illegal!");
1271
Chris Lattner38aeec72009-05-13 04:12:56 +00001272 // Convert the array size into a canonical width matching the pointer size for
1273 // the target.
1274 llvm::APInt ArySize(ArySizeIn);
1275 ArySize.zextOrTrunc(Target.getPointerWidth(EltTy.getAddressSpace()));
1276
Reid Spencer5f016e22007-07-11 17:01:13 +00001277 llvm::FoldingSetNodeID ID;
Chris Lattner0be2ef22009-02-19 17:31:02 +00001278 ConstantArrayType::Profile(ID, EltTy, ArySize, ASM, EltTypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001279
1280 void *InsertPos = 0;
Ted Kremenek7192f8e2007-10-31 17:10:13 +00001281 if (ConstantArrayType *ATP =
1282 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00001283 return QualType(ATP, 0);
1284
1285 // If the element type isn't canonical, this won't be a canonical type either,
1286 // so fill in the canonical type field.
1287 QualType Canonical;
1288 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001289 Canonical = getConstantArrayType(getCanonicalType(EltTy), ArySize,
Steve Naroffc9406122007-08-30 18:10:14 +00001290 ASM, EltTypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001291 // Get the new insert position for the node we care about.
Ted Kremenek7192f8e2007-10-31 17:10:13 +00001292 ConstantArrayType *NewIP =
1293 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001294 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001295 }
1296
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001297 ConstantArrayType *New =
Steve Narofff83820b2009-01-27 22:08:43 +00001298 new(*this,8)ConstantArrayType(EltTy, Canonical, ArySize, ASM, EltTypeQuals);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00001299 ConstantArrayTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00001300 Types.push_back(New);
1301 return QualType(New, 0);
1302}
1303
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001304/// getConstantArrayWithExprType - Return a reference to the type for
1305/// an array of the specified element type.
1306QualType
1307ASTContext::getConstantArrayWithExprType(QualType EltTy,
1308 const llvm::APInt &ArySizeIn,
1309 Expr *ArySizeExpr,
1310 ArrayType::ArraySizeModifier ASM,
1311 unsigned EltTypeQuals,
1312 SourceRange Brackets) {
1313 // Convert the array size into a canonical width matching the pointer
1314 // size for the target.
1315 llvm::APInt ArySize(ArySizeIn);
1316 ArySize.zextOrTrunc(Target.getPointerWidth(EltTy.getAddressSpace()));
1317
1318 // Compute the canonical ConstantArrayType.
1319 QualType Canonical = getConstantArrayType(getCanonicalType(EltTy),
1320 ArySize, ASM, EltTypeQuals);
1321 // Since we don't unique expressions, it isn't possible to unique VLA's
1322 // that have an expression provided for their size.
1323 ConstantArrayWithExprType *New =
1324 new(*this,8)ConstantArrayWithExprType(EltTy, Canonical,
1325 ArySize, ArySizeExpr,
1326 ASM, EltTypeQuals, Brackets);
1327 Types.push_back(New);
1328 return QualType(New, 0);
1329}
1330
1331/// getConstantArrayWithoutExprType - Return a reference to the type for
1332/// an array of the specified element type.
1333QualType
1334ASTContext::getConstantArrayWithoutExprType(QualType EltTy,
1335 const llvm::APInt &ArySizeIn,
1336 ArrayType::ArraySizeModifier ASM,
1337 unsigned EltTypeQuals) {
1338 // Convert the array size into a canonical width matching the pointer
1339 // size for the target.
1340 llvm::APInt ArySize(ArySizeIn);
1341 ArySize.zextOrTrunc(Target.getPointerWidth(EltTy.getAddressSpace()));
1342
1343 // Compute the canonical ConstantArrayType.
1344 QualType Canonical = getConstantArrayType(getCanonicalType(EltTy),
1345 ArySize, ASM, EltTypeQuals);
1346 ConstantArrayWithoutExprType *New =
1347 new(*this,8)ConstantArrayWithoutExprType(EltTy, Canonical,
1348 ArySize, ASM, EltTypeQuals);
1349 Types.push_back(New);
1350 return QualType(New, 0);
1351}
1352
Steve Naroffbdbf7b02007-08-30 18:14:25 +00001353/// getVariableArrayType - Returns a non-unique reference to the type for a
1354/// variable array of the specified element type.
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001355QualType ASTContext::getVariableArrayType(QualType EltTy,
1356 Expr *NumElts,
Steve Naroffc9406122007-08-30 18:10:14 +00001357 ArrayType::ArraySizeModifier ASM,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001358 unsigned EltTypeQuals,
1359 SourceRange Brackets) {
Eli Friedmanc5773c42008-02-15 18:16:39 +00001360 // Since we don't unique expressions, it isn't possible to unique VLA's
1361 // that have an expression provided for their size.
1362
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001363 VariableArrayType *New =
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001364 new(*this,8)VariableArrayType(EltTy, QualType(),
1365 NumElts, ASM, EltTypeQuals, Brackets);
Eli Friedmanc5773c42008-02-15 18:16:39 +00001366
1367 VariableArrayTypes.push_back(New);
1368 Types.push_back(New);
1369 return QualType(New, 0);
1370}
1371
Douglas Gregor898574e2008-12-05 23:32:09 +00001372/// getDependentSizedArrayType - Returns a non-unique reference to
1373/// the type for a dependently-sized array of the specified element
Douglas Gregor04d4bee2009-07-31 00:23:35 +00001374/// type.
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001375QualType ASTContext::getDependentSizedArrayType(QualType EltTy,
1376 Expr *NumElts,
Douglas Gregor898574e2008-12-05 23:32:09 +00001377 ArrayType::ArraySizeModifier ASM,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001378 unsigned EltTypeQuals,
1379 SourceRange Brackets) {
Douglas Gregor898574e2008-12-05 23:32:09 +00001380 assert((NumElts->isTypeDependent() || NumElts->isValueDependent()) &&
1381 "Size must be type- or value-dependent!");
1382
Douglas Gregor04d4bee2009-07-31 00:23:35 +00001383 llvm::FoldingSetNodeID ID;
1384 DependentSizedArrayType::Profile(ID, *this, getCanonicalType(EltTy), ASM,
1385 EltTypeQuals, NumElts);
Douglas Gregor898574e2008-12-05 23:32:09 +00001386
Douglas Gregor04d4bee2009-07-31 00:23:35 +00001387 void *InsertPos = 0;
1388 DependentSizedArrayType *Canon
1389 = DependentSizedArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
1390 DependentSizedArrayType *New;
1391 if (Canon) {
1392 // We already have a canonical version of this array type; use it as
1393 // the canonical type for a newly-built type.
1394 New = new (*this,8) DependentSizedArrayType(*this, EltTy,
1395 QualType(Canon, 0),
1396 NumElts, ASM, EltTypeQuals,
1397 Brackets);
1398 } else {
1399 QualType CanonEltTy = getCanonicalType(EltTy);
1400 if (CanonEltTy == EltTy) {
1401 New = new (*this,8) DependentSizedArrayType(*this, EltTy, QualType(),
1402 NumElts, ASM, EltTypeQuals,
1403 Brackets);
1404 DependentSizedArrayTypes.InsertNode(New, InsertPos);
1405 } else {
1406 QualType Canon = getDependentSizedArrayType(CanonEltTy, NumElts,
1407 ASM, EltTypeQuals,
1408 SourceRange());
1409 New = new (*this,8) DependentSizedArrayType(*this, EltTy, Canon,
1410 NumElts, ASM, EltTypeQuals,
1411 Brackets);
1412 }
1413 }
1414
Douglas Gregor898574e2008-12-05 23:32:09 +00001415 Types.push_back(New);
1416 return QualType(New, 0);
1417}
1418
Eli Friedmanc5773c42008-02-15 18:16:39 +00001419QualType ASTContext::getIncompleteArrayType(QualType EltTy,
1420 ArrayType::ArraySizeModifier ASM,
1421 unsigned EltTypeQuals) {
1422 llvm::FoldingSetNodeID ID;
Chris Lattner0be2ef22009-02-19 17:31:02 +00001423 IncompleteArrayType::Profile(ID, EltTy, ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00001424
1425 void *InsertPos = 0;
1426 if (IncompleteArrayType *ATP =
1427 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
1428 return QualType(ATP, 0);
1429
1430 // If the element type isn't canonical, this won't be a canonical type
1431 // either, so fill in the canonical type field.
1432 QualType Canonical;
1433
1434 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001435 Canonical = getIncompleteArrayType(getCanonicalType(EltTy),
Ted Kremenek2bd24ba2007-10-29 23:37:31 +00001436 ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00001437
1438 // Get the new insert position for the node we care about.
1439 IncompleteArrayType *NewIP =
1440 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001441 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Ted Kremenek2bd24ba2007-10-29 23:37:31 +00001442 }
Eli Friedmanc5773c42008-02-15 18:16:39 +00001443
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001444 IncompleteArrayType *New
1445 = new (*this,8) IncompleteArrayType(EltTy, Canonical,
1446 ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +00001447
1448 IncompleteArrayTypes.InsertNode(New, InsertPos);
1449 Types.push_back(New);
1450 return QualType(New, 0);
Steve Narofffb22d962007-08-30 01:06:46 +00001451}
1452
Steve Naroff73322922007-07-18 18:00:27 +00001453/// getVectorType - Return the unique reference to a vector type of
1454/// the specified element type and size. VectorType must be a built-in type.
1455QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001456 BuiltinType *baseType;
1457
Chris Lattnerf52ab252008-04-06 22:59:24 +00001458 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Steve Naroff73322922007-07-18 18:00:27 +00001459 assert(baseType != 0 && "getVectorType(): Expecting a built-in type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001460
1461 // Check if we've already instantiated a vector of this type.
1462 llvm::FoldingSetNodeID ID;
Steve Naroff73322922007-07-18 18:00:27 +00001463 VectorType::Profile(ID, vecType, NumElts, Type::Vector);
Reid Spencer5f016e22007-07-11 17:01:13 +00001464 void *InsertPos = 0;
1465 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
1466 return QualType(VTP, 0);
1467
1468 // If the element type isn't canonical, this won't be a canonical type either,
1469 // so fill in the canonical type field.
1470 QualType Canonical;
1471 if (!vecType->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001472 Canonical = getVectorType(getCanonicalType(vecType), NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001473
1474 // Get the new insert position for the node we care about.
1475 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001476 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001477 }
Steve Narofff83820b2009-01-27 22:08:43 +00001478 VectorType *New = new (*this,8) VectorType(vecType, NumElts, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001479 VectorTypes.InsertNode(New, InsertPos);
1480 Types.push_back(New);
1481 return QualType(New, 0);
1482}
1483
Nate Begeman213541a2008-04-18 23:10:10 +00001484/// getExtVectorType - Return the unique reference to an extended vector type of
Steve Naroff73322922007-07-18 18:00:27 +00001485/// the specified element type and size. VectorType must be a built-in type.
Nate Begeman213541a2008-04-18 23:10:10 +00001486QualType ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) {
Steve Naroff73322922007-07-18 18:00:27 +00001487 BuiltinType *baseType;
1488
Chris Lattnerf52ab252008-04-06 22:59:24 +00001489 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Nate Begeman213541a2008-04-18 23:10:10 +00001490 assert(baseType != 0 && "getExtVectorType(): Expecting a built-in type");
Steve Naroff73322922007-07-18 18:00:27 +00001491
1492 // Check if we've already instantiated a vector of this type.
1493 llvm::FoldingSetNodeID ID;
Nate Begeman213541a2008-04-18 23:10:10 +00001494 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector);
Steve Naroff73322922007-07-18 18:00:27 +00001495 void *InsertPos = 0;
1496 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
1497 return QualType(VTP, 0);
1498
1499 // If the element type isn't canonical, this won't be a canonical type either,
1500 // so fill in the canonical type field.
1501 QualType Canonical;
1502 if (!vecType->isCanonical()) {
Nate Begeman213541a2008-04-18 23:10:10 +00001503 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
Steve Naroff73322922007-07-18 18:00:27 +00001504
1505 // Get the new insert position for the node we care about.
1506 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001507 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff73322922007-07-18 18:00:27 +00001508 }
Steve Narofff83820b2009-01-27 22:08:43 +00001509 ExtVectorType *New = new (*this,8) ExtVectorType(vecType, NumElts, Canonical);
Steve Naroff73322922007-07-18 18:00:27 +00001510 VectorTypes.InsertNode(New, InsertPos);
1511 Types.push_back(New);
1512 return QualType(New, 0);
1513}
1514
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001515QualType ASTContext::getDependentSizedExtVectorType(QualType vecType,
1516 Expr *SizeExpr,
1517 SourceLocation AttrLoc) {
Douglas Gregor2ec09f12009-07-31 03:54:25 +00001518 llvm::FoldingSetNodeID ID;
1519 DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType),
1520 SizeExpr);
1521
1522 void *InsertPos = 0;
1523 DependentSizedExtVectorType *Canon
1524 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
1525 DependentSizedExtVectorType *New;
1526 if (Canon) {
1527 // We already have a canonical version of this array type; use it as
1528 // the canonical type for a newly-built type.
1529 New = new (*this,8) DependentSizedExtVectorType(*this, vecType,
1530 QualType(Canon, 0),
1531 SizeExpr, AttrLoc);
1532 } else {
1533 QualType CanonVecTy = getCanonicalType(vecType);
1534 if (CanonVecTy == vecType) {
1535 New = new (*this,8) DependentSizedExtVectorType(*this, vecType,
1536 QualType(), SizeExpr,
1537 AttrLoc);
1538 DependentSizedExtVectorTypes.InsertNode(New, InsertPos);
1539 } else {
1540 QualType Canon = getDependentSizedExtVectorType(CanonVecTy, SizeExpr,
1541 SourceLocation());
1542 New = new (*this,8) DependentSizedExtVectorType(*this, vecType, Canon,
1543 SizeExpr, AttrLoc);
1544 }
1545 }
1546
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001547 Types.push_back(New);
1548 return QualType(New, 0);
1549}
1550
Douglas Gregor72564e72009-02-26 23:50:07 +00001551/// getFunctionNoProtoType - Return a K&R style C function type like 'int()'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001552///
Mike Stump24556362009-07-25 21:26:53 +00001553QualType ASTContext::getFunctionNoProtoType(QualType ResultTy, bool NoReturn) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001554 // Unique functions, to guarantee there is only one function of a particular
1555 // structure.
1556 llvm::FoldingSetNodeID ID;
Mike Stump24556362009-07-25 21:26:53 +00001557 FunctionNoProtoType::Profile(ID, ResultTy, NoReturn);
Reid Spencer5f016e22007-07-11 17:01:13 +00001558
1559 void *InsertPos = 0;
Douglas Gregor72564e72009-02-26 23:50:07 +00001560 if (FunctionNoProtoType *FT =
1561 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00001562 return QualType(FT, 0);
1563
1564 QualType Canonical;
1565 if (!ResultTy->isCanonical()) {
Mike Stump24556362009-07-25 21:26:53 +00001566 Canonical = getFunctionNoProtoType(getCanonicalType(ResultTy), NoReturn);
Reid Spencer5f016e22007-07-11 17:01:13 +00001567
1568 // Get the new insert position for the node we care about.
Douglas Gregor72564e72009-02-26 23:50:07 +00001569 FunctionNoProtoType *NewIP =
1570 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001571 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001572 }
1573
Mike Stump24556362009-07-25 21:26:53 +00001574 FunctionNoProtoType *New
1575 = new (*this,8) FunctionNoProtoType(ResultTy, Canonical, NoReturn);
Reid Spencer5f016e22007-07-11 17:01:13 +00001576 Types.push_back(New);
Douglas Gregor72564e72009-02-26 23:50:07 +00001577 FunctionNoProtoTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00001578 return QualType(New, 0);
1579}
1580
1581/// getFunctionType - Return a normal function type with a typed argument
1582/// list. isVariadic indicates whether the argument list includes '...'.
Chris Lattner61710852008-10-05 17:34:18 +00001583QualType ASTContext::getFunctionType(QualType ResultTy,const QualType *ArgArray,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001584 unsigned NumArgs, bool isVariadic,
Sebastian Redl465226e2009-05-27 22:11:52 +00001585 unsigned TypeQuals, bool hasExceptionSpec,
1586 bool hasAnyExceptionSpec, unsigned NumExs,
Mike Stump24556362009-07-25 21:26:53 +00001587 const QualType *ExArray, bool NoReturn) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001588 // Unique functions, to guarantee there is only one function of a particular
1589 // structure.
1590 llvm::FoldingSetNodeID ID;
Douglas Gregor72564e72009-02-26 23:50:07 +00001591 FunctionProtoType::Profile(ID, ResultTy, ArgArray, NumArgs, isVariadic,
Sebastian Redl465226e2009-05-27 22:11:52 +00001592 TypeQuals, hasExceptionSpec, hasAnyExceptionSpec,
Mike Stump24556362009-07-25 21:26:53 +00001593 NumExs, ExArray, NoReturn);
Reid Spencer5f016e22007-07-11 17:01:13 +00001594
1595 void *InsertPos = 0;
Douglas Gregor72564e72009-02-26 23:50:07 +00001596 if (FunctionProtoType *FTP =
1597 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +00001598 return QualType(FTP, 0);
Sebastian Redl465226e2009-05-27 22:11:52 +00001599
1600 // Determine whether the type being created is already canonical or not.
Reid Spencer5f016e22007-07-11 17:01:13 +00001601 bool isCanonical = ResultTy->isCanonical();
Sebastian Redl465226e2009-05-27 22:11:52 +00001602 if (hasExceptionSpec)
1603 isCanonical = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001604 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
1605 if (!ArgArray[i]->isCanonical())
1606 isCanonical = false;
1607
1608 // If this type isn't canonical, get the canonical version of it.
Sebastian Redl465226e2009-05-27 22:11:52 +00001609 // The exception spec is not part of the canonical type.
Reid Spencer5f016e22007-07-11 17:01:13 +00001610 QualType Canonical;
1611 if (!isCanonical) {
1612 llvm::SmallVector<QualType, 16> CanonicalArgs;
1613 CanonicalArgs.reserve(NumArgs);
1614 for (unsigned i = 0; i != NumArgs; ++i)
Chris Lattnerf52ab252008-04-06 22:59:24 +00001615 CanonicalArgs.push_back(getCanonicalType(ArgArray[i]));
Sebastian Redl465226e2009-05-27 22:11:52 +00001616
Chris Lattnerf52ab252008-04-06 22:59:24 +00001617 Canonical = getFunctionType(getCanonicalType(ResultTy),
Jay Foadbeaaccd2009-05-21 09:52:38 +00001618 CanonicalArgs.data(), NumArgs,
Douglas Gregor47259d92009-08-05 19:03:35 +00001619 isVariadic, TypeQuals, false,
1620 false, 0, 0, NoReturn);
Sebastian Redl465226e2009-05-27 22:11:52 +00001621
Reid Spencer5f016e22007-07-11 17:01:13 +00001622 // Get the new insert position for the node we care about.
Douglas Gregor72564e72009-02-26 23:50:07 +00001623 FunctionProtoType *NewIP =
1624 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001625 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001626 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001627
Douglas Gregor72564e72009-02-26 23:50:07 +00001628 // FunctionProtoType objects are allocated with extra bytes after them
Sebastian Redl465226e2009-05-27 22:11:52 +00001629 // for two variable size arrays (for parameter and exception types) at the
1630 // end of them.
Douglas Gregor72564e72009-02-26 23:50:07 +00001631 FunctionProtoType *FTP =
Sebastian Redl465226e2009-05-27 22:11:52 +00001632 (FunctionProtoType*)Allocate(sizeof(FunctionProtoType) +
1633 NumArgs*sizeof(QualType) +
1634 NumExs*sizeof(QualType), 8);
Douglas Gregor72564e72009-02-26 23:50:07 +00001635 new (FTP) FunctionProtoType(ResultTy, ArgArray, NumArgs, isVariadic,
Sebastian Redl465226e2009-05-27 22:11:52 +00001636 TypeQuals, hasExceptionSpec, hasAnyExceptionSpec,
Mike Stump24556362009-07-25 21:26:53 +00001637 ExArray, NumExs, Canonical, NoReturn);
Reid Spencer5f016e22007-07-11 17:01:13 +00001638 Types.push_back(FTP);
Douglas Gregor72564e72009-02-26 23:50:07 +00001639 FunctionProtoTypes.InsertNode(FTP, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00001640 return QualType(FTP, 0);
1641}
1642
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001643/// getTypeDeclType - Return the unique reference to the type for the
1644/// specified type declaration.
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001645QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) {
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001646 assert(Decl && "Passed null for Decl param");
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001647 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1648
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001649 if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001650 return getTypedefType(Typedef);
Douglas Gregorfab9d672009-02-05 23:33:38 +00001651 else if (isa<TemplateTypeParmDecl>(Decl)) {
1652 assert(false && "Template type parameter types are always available.");
Mike Stump9fdbab32009-07-31 02:02:20 +00001653 } else if (ObjCInterfaceDecl *ObjCInterface
1654 = dyn_cast<ObjCInterfaceDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001655 return getObjCInterfaceType(ObjCInterface);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001656
Douglas Gregorc1efaec2009-02-28 01:32:25 +00001657 if (RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001658 if (PrevDecl)
1659 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001660 else
1661 Decl->TypeForDecl = new (*this,8) RecordType(Record);
Mike Stump9fdbab32009-07-31 02:02:20 +00001662 } else if (EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001663 if (PrevDecl)
1664 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001665 else
1666 Decl->TypeForDecl = new (*this,8) EnumType(Enum);
Mike Stump9fdbab32009-07-31 02:02:20 +00001667 } else
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001668 assert(false && "TypeDecl without a type?");
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001669
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001670 if (!PrevDecl) Types.push_back(Decl->TypeForDecl);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001671 return QualType(Decl->TypeForDecl, 0);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001672}
1673
Reid Spencer5f016e22007-07-11 17:01:13 +00001674/// getTypedefType - Return the unique reference to the type for the
1675/// specified typename decl.
1676QualType ASTContext::getTypedefType(TypedefDecl *Decl) {
1677 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1678
Chris Lattnerf52ab252008-04-06 22:59:24 +00001679 QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
Douglas Gregor72564e72009-02-26 23:50:07 +00001680 Decl->TypeForDecl = new(*this,8) TypedefType(Type::Typedef, Decl, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001681 Types.push_back(Decl->TypeForDecl);
1682 return QualType(Decl->TypeForDecl, 0);
1683}
1684
Douglas Gregorfab9d672009-02-05 23:33:38 +00001685/// \brief Retrieve the template type parameter type for a template
Anders Carlsson76e4ce42009-06-16 00:30:48 +00001686/// parameter or parameter pack with the given depth, index, and (optionally)
1687/// name.
Douglas Gregorfab9d672009-02-05 23:33:38 +00001688QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
Anders Carlsson76e4ce42009-06-16 00:30:48 +00001689 bool ParameterPack,
Douglas Gregorfab9d672009-02-05 23:33:38 +00001690 IdentifierInfo *Name) {
1691 llvm::FoldingSetNodeID ID;
Anders Carlsson76e4ce42009-06-16 00:30:48 +00001692 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, Name);
Douglas Gregorfab9d672009-02-05 23:33:38 +00001693 void *InsertPos = 0;
1694 TemplateTypeParmType *TypeParm
1695 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
1696
1697 if (TypeParm)
1698 return QualType(TypeParm, 0);
1699
Anders Carlsson76e4ce42009-06-16 00:30:48 +00001700 if (Name) {
1701 QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack);
1702 TypeParm = new (*this, 8) TemplateTypeParmType(Depth, Index, ParameterPack,
1703 Name, Canon);
1704 } else
1705 TypeParm = new (*this, 8) TemplateTypeParmType(Depth, Index, ParameterPack);
Douglas Gregorfab9d672009-02-05 23:33:38 +00001706
1707 Types.push_back(TypeParm);
1708 TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
1709
1710 return QualType(TypeParm, 0);
1711}
1712
Douglas Gregor55f6b142009-02-09 18:46:07 +00001713QualType
Douglas Gregor7532dc62009-03-30 22:58:21 +00001714ASTContext::getTemplateSpecializationType(TemplateName Template,
1715 const TemplateArgument *Args,
1716 unsigned NumArgs,
1717 QualType Canon) {
Douglas Gregorb88e8882009-07-30 17:40:51 +00001718 if (!Canon.isNull())
1719 Canon = getCanonicalType(Canon);
1720 else {
1721 // Build the canonical template specialization type.
Douglas Gregor1275ae02009-07-28 23:00:59 +00001722 TemplateName CanonTemplate = getCanonicalTemplateName(Template);
1723 llvm::SmallVector<TemplateArgument, 4> CanonArgs;
1724 CanonArgs.reserve(NumArgs);
1725 for (unsigned I = 0; I != NumArgs; ++I)
1726 CanonArgs.push_back(getCanonicalTemplateArgument(Args[I]));
1727
1728 // Determine whether this canonical template specialization type already
1729 // exists.
1730 llvm::FoldingSetNodeID ID;
1731 TemplateSpecializationType::Profile(ID, CanonTemplate,
Douglas Gregor828e2262009-07-29 16:09:57 +00001732 CanonArgs.data(), NumArgs, *this);
Douglas Gregor1275ae02009-07-28 23:00:59 +00001733
1734 void *InsertPos = 0;
1735 TemplateSpecializationType *Spec
1736 = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
1737
1738 if (!Spec) {
1739 // Allocate a new canonical template specialization type.
1740 void *Mem = Allocate((sizeof(TemplateSpecializationType) +
1741 sizeof(TemplateArgument) * NumArgs),
1742 8);
Douglas Gregor828e2262009-07-29 16:09:57 +00001743 Spec = new (Mem) TemplateSpecializationType(*this, CanonTemplate,
Douglas Gregor1275ae02009-07-28 23:00:59 +00001744 CanonArgs.data(), NumArgs,
Douglas Gregorb88e8882009-07-30 17:40:51 +00001745 Canon);
Douglas Gregor1275ae02009-07-28 23:00:59 +00001746 Types.push_back(Spec);
1747 TemplateSpecializationTypes.InsertNode(Spec, InsertPos);
1748 }
1749
Douglas Gregorb88e8882009-07-30 17:40:51 +00001750 if (Canon.isNull())
1751 Canon = QualType(Spec, 0);
Douglas Gregor1275ae02009-07-28 23:00:59 +00001752 assert(Canon->isDependentType() &&
1753 "Non-dependent template-id type must have a canonical type");
Douglas Gregorb88e8882009-07-30 17:40:51 +00001754 }
Douglas Gregorfc705b82009-02-26 22:19:44 +00001755
Douglas Gregor1275ae02009-07-28 23:00:59 +00001756 // Allocate the (non-canonical) template specialization type, but don't
1757 // try to unique it: these types typically have location information that
1758 // we don't unique and don't want to lose.
Douglas Gregor7532dc62009-03-30 22:58:21 +00001759 void *Mem = Allocate((sizeof(TemplateSpecializationType) +
Douglas Gregor40808ce2009-03-09 23:48:35 +00001760 sizeof(TemplateArgument) * NumArgs),
1761 8);
Douglas Gregor1275ae02009-07-28 23:00:59 +00001762 TemplateSpecializationType *Spec
Douglas Gregor828e2262009-07-29 16:09:57 +00001763 = new (Mem) TemplateSpecializationType(*this, Template, Args, NumArgs,
1764 Canon);
Douglas Gregor1275ae02009-07-28 23:00:59 +00001765
Douglas Gregor55f6b142009-02-09 18:46:07 +00001766 Types.push_back(Spec);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001767 return QualType(Spec, 0);
1768}
1769
Douglas Gregore4e5b052009-03-19 00:18:19 +00001770QualType
Douglas Gregorab452ba2009-03-26 23:50:42 +00001771ASTContext::getQualifiedNameType(NestedNameSpecifier *NNS,
Douglas Gregore4e5b052009-03-19 00:18:19 +00001772 QualType NamedType) {
1773 llvm::FoldingSetNodeID ID;
Douglas Gregorab452ba2009-03-26 23:50:42 +00001774 QualifiedNameType::Profile(ID, NNS, NamedType);
Douglas Gregore4e5b052009-03-19 00:18:19 +00001775
1776 void *InsertPos = 0;
1777 QualifiedNameType *T
1778 = QualifiedNameTypes.FindNodeOrInsertPos(ID, InsertPos);
1779 if (T)
1780 return QualType(T, 0);
1781
Douglas Gregorab452ba2009-03-26 23:50:42 +00001782 T = new (*this) QualifiedNameType(NNS, NamedType,
1783 getCanonicalType(NamedType));
Douglas Gregore4e5b052009-03-19 00:18:19 +00001784 Types.push_back(T);
1785 QualifiedNameTypes.InsertNode(T, InsertPos);
1786 return QualType(T, 0);
1787}
1788
Douglas Gregord57959a2009-03-27 23:10:48 +00001789QualType ASTContext::getTypenameType(NestedNameSpecifier *NNS,
1790 const IdentifierInfo *Name,
1791 QualType Canon) {
1792 assert(NNS->isDependent() && "nested-name-specifier must be dependent");
1793
1794 if (Canon.isNull()) {
1795 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
1796 if (CanonNNS != NNS)
1797 Canon = getTypenameType(CanonNNS, Name);
1798 }
1799
1800 llvm::FoldingSetNodeID ID;
1801 TypenameType::Profile(ID, NNS, Name);
1802
1803 void *InsertPos = 0;
1804 TypenameType *T
1805 = TypenameTypes.FindNodeOrInsertPos(ID, InsertPos);
1806 if (T)
1807 return QualType(T, 0);
1808
1809 T = new (*this) TypenameType(NNS, Name, Canon);
1810 Types.push_back(T);
1811 TypenameTypes.InsertNode(T, InsertPos);
1812 return QualType(T, 0);
1813}
1814
Douglas Gregor17343172009-04-01 00:28:59 +00001815QualType
1816ASTContext::getTypenameType(NestedNameSpecifier *NNS,
1817 const TemplateSpecializationType *TemplateId,
1818 QualType Canon) {
1819 assert(NNS->isDependent() && "nested-name-specifier must be dependent");
1820
1821 if (Canon.isNull()) {
1822 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
1823 QualType CanonType = getCanonicalType(QualType(TemplateId, 0));
1824 if (CanonNNS != NNS || CanonType != QualType(TemplateId, 0)) {
1825 const TemplateSpecializationType *CanonTemplateId
1826 = CanonType->getAsTemplateSpecializationType();
1827 assert(CanonTemplateId &&
1828 "Canonical type must also be a template specialization type");
1829 Canon = getTypenameType(CanonNNS, CanonTemplateId);
1830 }
1831 }
1832
1833 llvm::FoldingSetNodeID ID;
1834 TypenameType::Profile(ID, NNS, TemplateId);
1835
1836 void *InsertPos = 0;
1837 TypenameType *T
1838 = TypenameTypes.FindNodeOrInsertPos(ID, InsertPos);
1839 if (T)
1840 return QualType(T, 0);
1841
1842 T = new (*this) TypenameType(NNS, TemplateId, Canon);
1843 Types.push_back(T);
1844 TypenameTypes.InsertNode(T, InsertPos);
1845 return QualType(T, 0);
1846}
1847
Chris Lattner88cb27a2008-04-07 04:56:42 +00001848/// CmpProtocolNames - Comparison predicate for sorting protocols
1849/// alphabetically.
1850static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
1851 const ObjCProtocolDecl *RHS) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001852 return LHS->getDeclName() < RHS->getDeclName();
Chris Lattner88cb27a2008-04-07 04:56:42 +00001853}
1854
1855static void SortAndUniqueProtocols(ObjCProtocolDecl **&Protocols,
1856 unsigned &NumProtocols) {
1857 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
1858
1859 // Sort protocols, keyed by name.
1860 std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
1861
1862 // Remove duplicates.
1863 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
1864 NumProtocols = ProtocolsEnd-Protocols;
1865}
1866
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001867/// getObjCObjectPointerType - Return a ObjCObjectPointerType type for
1868/// the given interface decl and the conforming protocol list.
Steve Naroff14108da2009-07-10 23:34:53 +00001869QualType ASTContext::getObjCObjectPointerType(QualType InterfaceT,
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001870 ObjCProtocolDecl **Protocols,
1871 unsigned NumProtocols) {
1872 // Sort the protocol list alphabetically to canonicalize it.
1873 if (NumProtocols)
1874 SortAndUniqueProtocols(Protocols, NumProtocols);
1875
1876 llvm::FoldingSetNodeID ID;
Steve Naroff14108da2009-07-10 23:34:53 +00001877 ObjCObjectPointerType::Profile(ID, InterfaceT, Protocols, NumProtocols);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001878
1879 void *InsertPos = 0;
1880 if (ObjCObjectPointerType *QT =
1881 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
1882 return QualType(QT, 0);
1883
1884 // No Match;
1885 ObjCObjectPointerType *QType =
Steve Naroff14108da2009-07-10 23:34:53 +00001886 new (*this,8) ObjCObjectPointerType(InterfaceT, Protocols, NumProtocols);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001887
1888 Types.push_back(QType);
1889 ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
1890 return QualType(QType, 0);
1891}
Chris Lattner88cb27a2008-04-07 04:56:42 +00001892
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001893/// getObjCInterfaceType - Return the unique reference to the type for the
1894/// specified ObjC interface decl. The list of protocols is optional.
1895QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001896 ObjCProtocolDecl **Protocols, unsigned NumProtocols) {
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001897 if (NumProtocols)
1898 // Sort the protocol list alphabetically to canonicalize it.
1899 SortAndUniqueProtocols(Protocols, NumProtocols);
Chris Lattner88cb27a2008-04-07 04:56:42 +00001900
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001901 llvm::FoldingSetNodeID ID;
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001902 ObjCInterfaceType::Profile(ID, Decl, Protocols, NumProtocols);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001903
1904 void *InsertPos = 0;
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001905 if (ObjCInterfaceType *QT =
1906 ObjCInterfaceTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001907 return QualType(QT, 0);
1908
1909 // No Match;
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001910 ObjCInterfaceType *QType =
1911 new (*this,8) ObjCInterfaceType(const_cast<ObjCInterfaceDecl*>(Decl),
1912 Protocols, NumProtocols);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001913 Types.push_back(QType);
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001914 ObjCInterfaceTypes.InsertNode(QType, InsertPos);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001915 return QualType(QType, 0);
1916}
1917
Douglas Gregor72564e72009-02-26 23:50:07 +00001918/// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique
1919/// TypeOfExprType AST's (since expression's are never shared). For example,
Steve Naroff9752f252007-08-01 18:02:17 +00001920/// multiple declarations that refer to "typeof(x)" all contain different
1921/// DeclRefExpr's. This doesn't effect the type checker, since it operates
1922/// on canonical type's (which are always unique).
Douglas Gregor72564e72009-02-26 23:50:07 +00001923QualType ASTContext::getTypeOfExprType(Expr *tofExpr) {
Douglas Gregordd0257c2009-07-08 00:03:05 +00001924 TypeOfExprType *toe;
Douglas Gregorb1975722009-07-30 23:18:24 +00001925 if (tofExpr->isTypeDependent()) {
1926 llvm::FoldingSetNodeID ID;
1927 DependentTypeOfExprType::Profile(ID, *this, tofExpr);
1928
1929 void *InsertPos = 0;
1930 DependentTypeOfExprType *Canon
1931 = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos);
1932 if (Canon) {
1933 // We already have a "canonical" version of an identical, dependent
1934 // typeof(expr) type. Use that as our canonical type.
1935 toe = new (*this, 8) TypeOfExprType(tofExpr,
1936 QualType((TypeOfExprType*)Canon, 0));
1937 }
1938 else {
1939 // Build a new, canonical typeof(expr) type.
1940 Canon = new (*this, 8) DependentTypeOfExprType(*this, tofExpr);
1941 DependentTypeOfExprTypes.InsertNode(Canon, InsertPos);
1942 toe = Canon;
1943 }
1944 } else {
Douglas Gregordd0257c2009-07-08 00:03:05 +00001945 QualType Canonical = getCanonicalType(tofExpr->getType());
1946 toe = new (*this,8) TypeOfExprType(tofExpr, Canonical);
1947 }
Steve Naroff9752f252007-08-01 18:02:17 +00001948 Types.push_back(toe);
1949 return QualType(toe, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001950}
1951
Steve Naroff9752f252007-08-01 18:02:17 +00001952/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
1953/// TypeOfType AST's. The only motivation to unique these nodes would be
1954/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
1955/// an issue. This doesn't effect the type checker, since it operates
1956/// on canonical type's (which are always unique).
Steve Naroffd1861fd2007-07-31 12:34:36 +00001957QualType ASTContext::getTypeOfType(QualType tofType) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001958 QualType Canonical = getCanonicalType(tofType);
Steve Narofff83820b2009-01-27 22:08:43 +00001959 TypeOfType *tot = new (*this,8) TypeOfType(tofType, Canonical);
Steve Naroff9752f252007-08-01 18:02:17 +00001960 Types.push_back(tot);
1961 return QualType(tot, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001962}
1963
Anders Carlsson60a9a2a2009-06-24 21:24:56 +00001964/// getDecltypeForExpr - Given an expr, will return the decltype for that
1965/// expression, according to the rules in C++0x [dcl.type.simple]p4
1966static QualType getDecltypeForExpr(const Expr *e, ASTContext &Context) {
Anders Carlssona07c33e2009-06-25 15:00:34 +00001967 if (e->isTypeDependent())
1968 return Context.DependentTy;
1969
Anders Carlsson60a9a2a2009-06-24 21:24:56 +00001970 // If e is an id expression or a class member access, decltype(e) is defined
1971 // as the type of the entity named by e.
1972 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(e)) {
1973 if (const ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl()))
1974 return VD->getType();
1975 }
1976 if (const MemberExpr *ME = dyn_cast<MemberExpr>(e)) {
1977 if (const FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
1978 return FD->getType();
1979 }
1980 // If e is a function call or an invocation of an overloaded operator,
1981 // (parentheses around e are ignored), decltype(e) is defined as the
1982 // return type of that function.
1983 if (const CallExpr *CE = dyn_cast<CallExpr>(e->IgnoreParens()))
1984 return CE->getCallReturnType();
1985
1986 QualType T = e->getType();
1987
1988 // Otherwise, where T is the type of e, if e is an lvalue, decltype(e) is
1989 // defined as T&, otherwise decltype(e) is defined as T.
1990 if (e->isLvalue(Context) == Expr::LV_Valid)
1991 T = Context.getLValueReferenceType(T);
1992
1993 return T;
1994}
1995
Anders Carlsson395b4752009-06-24 19:06:50 +00001996/// getDecltypeType - Unlike many "get<Type>" functions, we don't unique
1997/// DecltypeType AST's. The only motivation to unique these nodes would be
1998/// memory savings. Since decltype(t) is fairly uncommon, space shouldn't be
1999/// an issue. This doesn't effect the type checker, since it operates
2000/// on canonical type's (which are always unique).
2001QualType ASTContext::getDecltypeType(Expr *e) {
Douglas Gregordd0257c2009-07-08 00:03:05 +00002002 DecltypeType *dt;
Douglas Gregor9d702ae2009-07-30 23:36:40 +00002003 if (e->isTypeDependent()) {
2004 llvm::FoldingSetNodeID ID;
2005 DependentDecltypeType::Profile(ID, *this, e);
2006
2007 void *InsertPos = 0;
2008 DependentDecltypeType *Canon
2009 = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos);
2010 if (Canon) {
2011 // We already have a "canonical" version of an equivalent, dependent
2012 // decltype type. Use that as our canonical type.
2013 dt = new (*this, 8) DecltypeType(e, DependentTy,
2014 QualType((DecltypeType*)Canon, 0));
2015 }
2016 else {
2017 // Build a new, canonical typeof(expr) type.
2018 Canon = new (*this, 8) DependentDecltypeType(*this, e);
2019 DependentDecltypeTypes.InsertNode(Canon, InsertPos);
2020 dt = Canon;
2021 }
2022 } else {
Douglas Gregordd0257c2009-07-08 00:03:05 +00002023 QualType T = getDecltypeForExpr(e, *this);
Anders Carlsson563a03b2009-07-10 19:20:26 +00002024 dt = new (*this, 8) DecltypeType(e, T, getCanonicalType(T));
Douglas Gregordd0257c2009-07-08 00:03:05 +00002025 }
Anders Carlsson395b4752009-06-24 19:06:50 +00002026 Types.push_back(dt);
2027 return QualType(dt, 0);
2028}
2029
Reid Spencer5f016e22007-07-11 17:01:13 +00002030/// getTagDeclType - Return the unique reference to the type for the
2031/// specified TagDecl (struct/union/class/enum) decl.
Mike Stumpe607ed02009-08-07 18:05:12 +00002032QualType ASTContext::getTagDeclType(const TagDecl *Decl) {
Ted Kremenekd778f882007-11-26 21:16:01 +00002033 assert (Decl);
Mike Stumpe607ed02009-08-07 18:05:12 +00002034 // FIXME: What is the design on getTagDeclType when it requires casting
2035 // away const? mutable?
2036 return getTypeDeclType(const_cast<TagDecl*>(Decl));
Reid Spencer5f016e22007-07-11 17:01:13 +00002037}
2038
2039/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
2040/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
2041/// needs to agree with the definition in <stddef.h>.
2042QualType ASTContext::getSizeType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002043 return getFromTargetType(Target.getSizeType());
Reid Spencer5f016e22007-07-11 17:01:13 +00002044}
2045
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00002046/// getSignedWCharType - Return the type of "signed wchar_t".
2047/// Used when in C++, as a GCC extension.
2048QualType ASTContext::getSignedWCharType() const {
2049 // FIXME: derive from "Target" ?
2050 return WCharTy;
2051}
2052
2053/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
2054/// Used when in C++, as a GCC extension.
2055QualType ASTContext::getUnsignedWCharType() const {
2056 // FIXME: derive from "Target" ?
2057 return UnsignedIntTy;
2058}
2059
Chris Lattner8b9023b2007-07-13 03:05:23 +00002060/// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?)
2061/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
2062QualType ASTContext::getPointerDiffType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002063 return getFromTargetType(Target.getPtrDiffType(0));
Chris Lattner8b9023b2007-07-13 03:05:23 +00002064}
2065
Chris Lattnere6327742008-04-02 05:18:44 +00002066//===----------------------------------------------------------------------===//
2067// Type Operators
2068//===----------------------------------------------------------------------===//
2069
Chris Lattner77c96472008-04-06 22:41:35 +00002070/// getCanonicalType - Return the canonical (structural) type corresponding to
2071/// the specified potentially non-canonical type. The non-canonical version
2072/// of a type may have many "decorated" versions of types. Decorators can
2073/// include typedefs, 'typeof' operators, etc. The returned type is guaranteed
2074/// to be free of any of these, allowing two canonical types to be compared
2075/// for exact equality with a simple pointer comparison.
Douglas Gregor50d62d12009-08-05 05:36:45 +00002076CanQualType ASTContext::getCanonicalType(QualType T) {
Chris Lattner77c96472008-04-06 22:41:35 +00002077 QualType CanType = T.getTypePtr()->getCanonicalTypeInternal();
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002078
2079 // If the result has type qualifiers, make sure to canonicalize them as well.
2080 unsigned TypeQuals = T.getCVRQualifiers() | CanType.getCVRQualifiers();
Douglas Gregor50d62d12009-08-05 05:36:45 +00002081 if (TypeQuals == 0)
2082 return CanQualType::CreateUnsafe(CanType);
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002083
2084 // If the type qualifiers are on an array type, get the canonical type of the
2085 // array with the qualifiers applied to the element type.
2086 ArrayType *AT = dyn_cast<ArrayType>(CanType);
2087 if (!AT)
Douglas Gregor50d62d12009-08-05 05:36:45 +00002088 return CanQualType::CreateUnsafe(CanType.getQualifiedType(TypeQuals));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002089
2090 // Get the canonical version of the element with the extra qualifiers on it.
2091 // This can recursively sink qualifiers through multiple levels of arrays.
2092 QualType NewEltTy=AT->getElementType().getWithAdditionalQualifiers(TypeQuals);
2093 NewEltTy = getCanonicalType(NewEltTy);
2094
2095 if (ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
Douglas Gregor50d62d12009-08-05 05:36:45 +00002096 return CanQualType::CreateUnsafe(
2097 getConstantArrayType(NewEltTy, CAT->getSize(),
2098 CAT->getSizeModifier(),
2099 CAT->getIndexTypeQualifier()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002100 if (IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT))
Douglas Gregor50d62d12009-08-05 05:36:45 +00002101 return CanQualType::CreateUnsafe(
2102 getIncompleteArrayType(NewEltTy, IAT->getSizeModifier(),
2103 IAT->getIndexTypeQualifier()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002104
Douglas Gregor898574e2008-12-05 23:32:09 +00002105 if (DependentSizedArrayType *DSAT = dyn_cast<DependentSizedArrayType>(AT))
Douglas Gregor50d62d12009-08-05 05:36:45 +00002106 return CanQualType::CreateUnsafe(
2107 getDependentSizedArrayType(NewEltTy,
2108 DSAT->getSizeExpr(),
2109 DSAT->getSizeModifier(),
2110 DSAT->getIndexTypeQualifier(),
2111 DSAT->getBracketsRange()));
Douglas Gregor898574e2008-12-05 23:32:09 +00002112
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002113 VariableArrayType *VAT = cast<VariableArrayType>(AT);
Douglas Gregor50d62d12009-08-05 05:36:45 +00002114 return CanQualType::CreateUnsafe(getVariableArrayType(NewEltTy,
2115 VAT->getSizeExpr(),
2116 VAT->getSizeModifier(),
2117 VAT->getIndexTypeQualifier(),
2118 VAT->getBracketsRange()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002119}
2120
Douglas Gregor25a3ef72009-05-07 06:41:52 +00002121TemplateName ASTContext::getCanonicalTemplateName(TemplateName Name) {
2122 // If this template name refers to a template, the canonical
2123 // template name merely stores the template itself.
2124 if (TemplateDecl *Template = Name.getAsTemplateDecl())
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00002125 return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl()));
Douglas Gregor25a3ef72009-05-07 06:41:52 +00002126
Douglas Gregord99cbe62009-07-29 18:26:50 +00002127 // If this template name refers to a set of overloaded function templates,
2128 /// the canonical template name merely stores the set of function templates.
Douglas Gregor6ebd15e2009-07-31 05:24:01 +00002129 if (OverloadedFunctionDecl *Ovl = Name.getAsOverloadedFunctionDecl()) {
2130 OverloadedFunctionDecl *CanonOvl = 0;
2131 for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
2132 FEnd = Ovl->function_end();
2133 F != FEnd; ++F) {
2134 Decl *Canon = F->get()->getCanonicalDecl();
2135 if (CanonOvl || Canon != F->get()) {
2136 if (!CanonOvl)
2137 CanonOvl = OverloadedFunctionDecl::Create(*this,
2138 Ovl->getDeclContext(),
2139 Ovl->getDeclName());
2140
2141 CanonOvl->addOverload(
2142 AnyFunctionDecl::getFromNamedDecl(cast<NamedDecl>(Canon)));
2143 }
2144 }
2145
2146 return TemplateName(CanonOvl? CanonOvl : Ovl);
2147 }
Douglas Gregord99cbe62009-07-29 18:26:50 +00002148
Douglas Gregor25a3ef72009-05-07 06:41:52 +00002149 DependentTemplateName *DTN = Name.getAsDependentTemplateName();
2150 assert(DTN && "Non-dependent template names must refer to template decls.");
2151 return DTN->CanonicalTemplateName;
2152}
2153
Douglas Gregor1275ae02009-07-28 23:00:59 +00002154TemplateArgument
2155ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) {
2156 switch (Arg.getKind()) {
2157 case TemplateArgument::Null:
2158 return Arg;
2159
2160 case TemplateArgument::Expression:
2161 // FIXME: Build canonical expression?
2162 return Arg;
2163
2164 case TemplateArgument::Declaration:
2165 return TemplateArgument(SourceLocation(),
2166 Arg.getAsDecl()->getCanonicalDecl());
2167
2168 case TemplateArgument::Integral:
2169 return TemplateArgument(SourceLocation(),
2170 *Arg.getAsIntegral(),
2171 getCanonicalType(Arg.getIntegralType()));
2172
2173 case TemplateArgument::Type:
2174 return TemplateArgument(SourceLocation(),
2175 getCanonicalType(Arg.getAsType()));
2176
2177 case TemplateArgument::Pack: {
2178 // FIXME: Allocate in ASTContext
2179 TemplateArgument *CanonArgs = new TemplateArgument[Arg.pack_size()];
2180 unsigned Idx = 0;
2181 for (TemplateArgument::pack_iterator A = Arg.pack_begin(),
2182 AEnd = Arg.pack_end();
2183 A != AEnd; (void)++A, ++Idx)
2184 CanonArgs[Idx] = getCanonicalTemplateArgument(*A);
2185
2186 TemplateArgument Result;
2187 Result.setArgumentPack(CanonArgs, Arg.pack_size(), false);
2188 return Result;
2189 }
2190 }
2191
2192 // Silence GCC warning
2193 assert(false && "Unhandled template argument kind");
2194 return TemplateArgument();
2195}
2196
Douglas Gregord57959a2009-03-27 23:10:48 +00002197NestedNameSpecifier *
2198ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) {
2199 if (!NNS)
2200 return 0;
2201
2202 switch (NNS->getKind()) {
2203 case NestedNameSpecifier::Identifier:
2204 // Canonicalize the prefix but keep the identifier the same.
2205 return NestedNameSpecifier::Create(*this,
2206 getCanonicalNestedNameSpecifier(NNS->getPrefix()),
2207 NNS->getAsIdentifier());
2208
2209 case NestedNameSpecifier::Namespace:
2210 // A namespace is canonical; build a nested-name-specifier with
2211 // this namespace and no prefix.
2212 return NestedNameSpecifier::Create(*this, 0, NNS->getAsNamespace());
2213
2214 case NestedNameSpecifier::TypeSpec:
2215 case NestedNameSpecifier::TypeSpecWithTemplate: {
2216 QualType T = getCanonicalType(QualType(NNS->getAsType(), 0));
2217 NestedNameSpecifier *Prefix = 0;
2218
2219 // FIXME: This isn't the right check!
2220 if (T->isDependentType())
2221 Prefix = getCanonicalNestedNameSpecifier(NNS->getPrefix());
2222
2223 return NestedNameSpecifier::Create(*this, Prefix,
2224 NNS->getKind() == NestedNameSpecifier::TypeSpecWithTemplate,
2225 T.getTypePtr());
2226 }
2227
2228 case NestedNameSpecifier::Global:
2229 // The global specifier is canonical and unique.
2230 return NNS;
2231 }
2232
2233 // Required to silence a GCC warning
2234 return 0;
2235}
2236
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002237
2238const ArrayType *ASTContext::getAsArrayType(QualType T) {
2239 // Handle the non-qualified case efficiently.
2240 if (T.getCVRQualifiers() == 0) {
2241 // Handle the common positive case fast.
2242 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
2243 return AT;
2244 }
2245
2246 // Handle the common negative case fast, ignoring CVR qualifiers.
2247 QualType CType = T->getCanonicalTypeInternal();
2248
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00002249 // Make sure to look through type qualifiers (like ExtQuals) for the negative
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002250 // test.
2251 if (!isa<ArrayType>(CType) &&
2252 !isa<ArrayType>(CType.getUnqualifiedType()))
2253 return 0;
2254
2255 // Apply any CVR qualifiers from the array type to the element type. This
2256 // implements C99 6.7.3p8: "If the specification of an array type includes
2257 // any type qualifiers, the element type is so qualified, not the array type."
2258
2259 // If we get here, we either have type qualifiers on the type, or we have
2260 // sugar such as a typedef in the way. If we have type qualifiers on the type
Douglas Gregor50d62d12009-08-05 05:36:45 +00002261 // we must propagate them down into the element type.
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002262 unsigned CVRQuals = T.getCVRQualifiers();
2263 unsigned AddrSpace = 0;
2264 Type *Ty = T.getTypePtr();
2265
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00002266 // Rip through ExtQualType's and typedefs to get to a concrete type.
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002267 while (1) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00002268 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(Ty)) {
2269 AddrSpace = EXTQT->getAddressSpace();
2270 Ty = EXTQT->getBaseType();
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002271 } else {
2272 T = Ty->getDesugaredType();
2273 if (T.getTypePtr() == Ty && T.getCVRQualifiers() == 0)
2274 break;
2275 CVRQuals |= T.getCVRQualifiers();
2276 Ty = T.getTypePtr();
2277 }
2278 }
2279
2280 // If we have a simple case, just return now.
2281 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
2282 if (ATy == 0 || (AddrSpace == 0 && CVRQuals == 0))
2283 return ATy;
2284
2285 // Otherwise, we have an array and we have qualifiers on it. Push the
2286 // qualifiers into the array element type and return a new array type.
2287 // Get the canonical version of the element with the extra qualifiers on it.
2288 // This can recursively sink qualifiers through multiple levels of arrays.
2289 QualType NewEltTy = ATy->getElementType();
2290 if (AddrSpace)
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00002291 NewEltTy = getAddrSpaceQualType(NewEltTy, AddrSpace);
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002292 NewEltTy = NewEltTy.getWithAdditionalQualifiers(CVRQuals);
2293
2294 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
2295 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
2296 CAT->getSizeModifier(),
2297 CAT->getIndexTypeQualifier()));
2298 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
2299 return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
2300 IAT->getSizeModifier(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002301 IAT->getIndexTypeQualifier()));
Douglas Gregor898574e2008-12-05 23:32:09 +00002302
Douglas Gregor898574e2008-12-05 23:32:09 +00002303 if (const DependentSizedArrayType *DSAT
2304 = dyn_cast<DependentSizedArrayType>(ATy))
2305 return cast<ArrayType>(
2306 getDependentSizedArrayType(NewEltTy,
2307 DSAT->getSizeExpr(),
2308 DSAT->getSizeModifier(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002309 DSAT->getIndexTypeQualifier(),
2310 DSAT->getBracketsRange()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002311
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002312 const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002313 return cast<ArrayType>(getVariableArrayType(NewEltTy,
2314 VAT->getSizeExpr(),
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002315 VAT->getSizeModifier(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002316 VAT->getIndexTypeQualifier(),
2317 VAT->getBracketsRange()));
Chris Lattner77c96472008-04-06 22:41:35 +00002318}
2319
2320
Chris Lattnere6327742008-04-02 05:18:44 +00002321/// getArrayDecayedType - Return the properly qualified result of decaying the
2322/// specified array type to a pointer. This operation is non-trivial when
2323/// handling typedefs etc. The canonical type of "T" must be an array type,
2324/// this returns a pointer to a properly qualified element of the array.
2325///
2326/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
2327QualType ASTContext::getArrayDecayedType(QualType Ty) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002328 // Get the element type with 'getAsArrayType' so that we don't lose any
2329 // typedefs in the element type of the array. This also handles propagation
2330 // of type qualifiers from the array type into the element type if present
2331 // (C99 6.7.3p8).
2332 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
2333 assert(PrettyArrayType && "Not an array type!");
Chris Lattnere6327742008-04-02 05:18:44 +00002334
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002335 QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
Chris Lattnere6327742008-04-02 05:18:44 +00002336
2337 // int x[restrict 4] -> int *restrict
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002338 return PtrTy.getQualifiedType(PrettyArrayType->getIndexTypeQualifier());
Chris Lattnere6327742008-04-02 05:18:44 +00002339}
2340
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00002341QualType ASTContext::getBaseElementType(QualType QT) {
2342 QualifierSet qualifiers;
2343 while (true) {
2344 const Type *UT = qualifiers.strip(QT);
2345 if (const ArrayType *AT = getAsArrayType(QualType(UT,0))) {
2346 QT = AT->getElementType();
Mike Stump6dcbc292009-07-25 23:24:03 +00002347 } else {
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00002348 return qualifiers.apply(QT, *this);
2349 }
2350 }
2351}
2352
Daniel Dunbard786f6a2009-01-05 22:14:37 +00002353QualType ASTContext::getBaseElementType(const VariableArrayType *VAT) {
Anders Carlsson6183a992008-12-21 03:44:36 +00002354 QualType ElemTy = VAT->getElementType();
2355
2356 if (const VariableArrayType *VAT = getAsVariableArrayType(ElemTy))
2357 return getBaseElementType(VAT);
2358
2359 return ElemTy;
2360}
2361
Reid Spencer5f016e22007-07-11 17:01:13 +00002362/// getFloatingRank - Return a relative rank for floating point types.
2363/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnera75cea32008-04-06 23:38:49 +00002364static FloatingRank getFloatingRank(QualType T) {
Christopher Lambebb97e92008-02-04 02:31:56 +00002365 if (const ComplexType *CT = T->getAsComplexType())
Reid Spencer5f016e22007-07-11 17:01:13 +00002366 return getFloatingRank(CT->getElementType());
Chris Lattnera75cea32008-04-06 23:38:49 +00002367
Daniel Dunbard786f6a2009-01-05 22:14:37 +00002368 assert(T->getAsBuiltinType() && "getFloatingRank(): not a floating type");
Christopher Lambebb97e92008-02-04 02:31:56 +00002369 switch (T->getAsBuiltinType()->getKind()) {
Chris Lattnera75cea32008-04-06 23:38:49 +00002370 default: assert(0 && "getFloatingRank(): not a floating type");
Reid Spencer5f016e22007-07-11 17:01:13 +00002371 case BuiltinType::Float: return FloatRank;
2372 case BuiltinType::Double: return DoubleRank;
2373 case BuiltinType::LongDouble: return LongDoubleRank;
2374 }
2375}
2376
Steve Naroff716c7302007-08-27 01:41:48 +00002377/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
2378/// point or a complex type (based on typeDomain/typeSize).
2379/// 'typeDomain' is a real floating point or complex type.
2380/// 'typeSize' is a real floating point or complex type.
Chris Lattner1361b112008-04-06 23:58:54 +00002381QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
2382 QualType Domain) const {
2383 FloatingRank EltRank = getFloatingRank(Size);
2384 if (Domain->isComplexType()) {
2385 switch (EltRank) {
Steve Naroff716c7302007-08-27 01:41:48 +00002386 default: assert(0 && "getFloatingRank(): illegal value for rank");
Steve Narofff1448a02007-08-27 01:27:54 +00002387 case FloatRank: return FloatComplexTy;
2388 case DoubleRank: return DoubleComplexTy;
2389 case LongDoubleRank: return LongDoubleComplexTy;
2390 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002391 }
Chris Lattner1361b112008-04-06 23:58:54 +00002392
2393 assert(Domain->isRealFloatingType() && "Unknown domain!");
2394 switch (EltRank) {
2395 default: assert(0 && "getFloatingRank(): illegal value for rank");
2396 case FloatRank: return FloatTy;
2397 case DoubleRank: return DoubleTy;
2398 case LongDoubleRank: return LongDoubleTy;
Steve Narofff1448a02007-08-27 01:27:54 +00002399 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002400}
2401
Chris Lattner7cfeb082008-04-06 23:55:33 +00002402/// getFloatingTypeOrder - Compare the rank of the two specified floating
2403/// point types, ignoring the domain of the type (i.e. 'double' ==
2404/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
2405/// LHS < RHS, return -1.
Chris Lattnera75cea32008-04-06 23:38:49 +00002406int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) {
2407 FloatingRank LHSR = getFloatingRank(LHS);
2408 FloatingRank RHSR = getFloatingRank(RHS);
2409
2410 if (LHSR == RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00002411 return 0;
Chris Lattnera75cea32008-04-06 23:38:49 +00002412 if (LHSR > RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00002413 return 1;
2414 return -1;
Reid Spencer5f016e22007-07-11 17:01:13 +00002415}
2416
Chris Lattnerf52ab252008-04-06 22:59:24 +00002417/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
2418/// routine will assert if passed a built-in type that isn't an integer or enum,
2419/// or if it is not canonicalized.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002420unsigned ASTContext::getIntegerRank(Type *T) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002421 assert(T->isCanonical() && "T should be canonicalized");
Eli Friedmanf98aba32009-02-13 02:31:07 +00002422 if (EnumType* ET = dyn_cast<EnumType>(T))
2423 T = ET->getDecl()->getIntegerType().getTypePtr();
2424
Eli Friedmana3426752009-07-05 23:44:27 +00002425 if (T->isSpecificBuiltinType(BuiltinType::WChar))
2426 T = getFromTargetType(Target.getWCharType()).getTypePtr();
2427
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002428 if (T->isSpecificBuiltinType(BuiltinType::Char16))
2429 T = getFromTargetType(Target.getChar16Type()).getTypePtr();
2430
2431 if (T->isSpecificBuiltinType(BuiltinType::Char32))
2432 T = getFromTargetType(Target.getChar32Type()).getTypePtr();
2433
Eli Friedmanf98aba32009-02-13 02:31:07 +00002434 // There are two things which impact the integer rank: the width, and
2435 // the ordering of builtins. The builtin ordering is encoded in the
2436 // bottom three bits; the width is encoded in the bits above that.
Chris Lattner1b63e4f2009-06-14 01:54:56 +00002437 if (FixedWidthIntType* FWIT = dyn_cast<FixedWidthIntType>(T))
Eli Friedmanf98aba32009-02-13 02:31:07 +00002438 return FWIT->getWidth() << 3;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002439
Chris Lattnerf52ab252008-04-06 22:59:24 +00002440 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner7cfeb082008-04-06 23:55:33 +00002441 default: assert(0 && "getIntegerRank(): not a built-in integer");
2442 case BuiltinType::Bool:
Eli Friedmanf98aba32009-02-13 02:31:07 +00002443 return 1 + (getIntWidth(BoolTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00002444 case BuiltinType::Char_S:
2445 case BuiltinType::Char_U:
2446 case BuiltinType::SChar:
2447 case BuiltinType::UChar:
Eli Friedmanf98aba32009-02-13 02:31:07 +00002448 return 2 + (getIntWidth(CharTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00002449 case BuiltinType::Short:
2450 case BuiltinType::UShort:
Eli Friedmanf98aba32009-02-13 02:31:07 +00002451 return 3 + (getIntWidth(ShortTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00002452 case BuiltinType::Int:
2453 case BuiltinType::UInt:
Eli Friedmanf98aba32009-02-13 02:31:07 +00002454 return 4 + (getIntWidth(IntTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00002455 case BuiltinType::Long:
2456 case BuiltinType::ULong:
Eli Friedmanf98aba32009-02-13 02:31:07 +00002457 return 5 + (getIntWidth(LongTy) << 3);
Chris Lattner7cfeb082008-04-06 23:55:33 +00002458 case BuiltinType::LongLong:
2459 case BuiltinType::ULongLong:
Eli Friedmanf98aba32009-02-13 02:31:07 +00002460 return 6 + (getIntWidth(LongLongTy) << 3);
Chris Lattner2df9ced2009-04-30 02:43:43 +00002461 case BuiltinType::Int128:
2462 case BuiltinType::UInt128:
2463 return 7 + (getIntWidth(Int128Ty) << 3);
Chris Lattnerf52ab252008-04-06 22:59:24 +00002464 }
2465}
2466
Chris Lattner7cfeb082008-04-06 23:55:33 +00002467/// getIntegerTypeOrder - Returns the highest ranked integer type:
2468/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
2469/// LHS < RHS, return -1.
2470int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00002471 Type *LHSC = getCanonicalType(LHS).getTypePtr();
2472 Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner7cfeb082008-04-06 23:55:33 +00002473 if (LHSC == RHSC) return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00002474
Chris Lattnerf52ab252008-04-06 22:59:24 +00002475 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
2476 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002477
Chris Lattner7cfeb082008-04-06 23:55:33 +00002478 unsigned LHSRank = getIntegerRank(LHSC);
2479 unsigned RHSRank = getIntegerRank(RHSC);
Reid Spencer5f016e22007-07-11 17:01:13 +00002480
Chris Lattner7cfeb082008-04-06 23:55:33 +00002481 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
2482 if (LHSRank == RHSRank) return 0;
2483 return LHSRank > RHSRank ? 1 : -1;
2484 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002485
Chris Lattner7cfeb082008-04-06 23:55:33 +00002486 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
2487 if (LHSUnsigned) {
2488 // If the unsigned [LHS] type is larger, return it.
2489 if (LHSRank >= RHSRank)
2490 return 1;
2491
2492 // If the signed type can represent all values of the unsigned type, it
2493 // wins. Because we are dealing with 2's complement and types that are
2494 // powers of two larger than each other, this is always safe.
2495 return -1;
2496 }
Chris Lattnerf52ab252008-04-06 22:59:24 +00002497
Chris Lattner7cfeb082008-04-06 23:55:33 +00002498 // If the unsigned [RHS] type is larger, return it.
2499 if (RHSRank >= LHSRank)
2500 return -1;
2501
2502 // If the signed type can represent all values of the unsigned type, it
2503 // wins. Because we are dealing with 2's complement and types that are
2504 // powers of two larger than each other, this is always safe.
2505 return 1;
Reid Spencer5f016e22007-07-11 17:01:13 +00002506}
Anders Carlsson71993dd2007-08-17 05:31:46 +00002507
2508// getCFConstantStringType - Return the type used for constant CFStrings.
2509QualType ASTContext::getCFConstantStringType() {
2510 if (!CFConstantStringTypeDecl) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00002511 CFConstantStringTypeDecl =
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002512 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
Ted Kremenekdf042e62008-09-05 01:34:33 +00002513 &Idents.get("NSConstantString"));
Anders Carlssonf06273f2007-11-19 00:25:30 +00002514 QualType FieldTypes[4];
Anders Carlsson71993dd2007-08-17 05:31:46 +00002515
2516 // const int *isa;
2517 FieldTypes[0] = getPointerType(IntTy.getQualifiedType(QualType::Const));
Anders Carlssonf06273f2007-11-19 00:25:30 +00002518 // int flags;
2519 FieldTypes[1] = IntTy;
Anders Carlsson71993dd2007-08-17 05:31:46 +00002520 // const char *str;
Anders Carlssonf06273f2007-11-19 00:25:30 +00002521 FieldTypes[2] = getPointerType(CharTy.getQualifiedType(QualType::Const));
Anders Carlsson71993dd2007-08-17 05:31:46 +00002522 // long length;
Anders Carlssonf06273f2007-11-19 00:25:30 +00002523 FieldTypes[3] = LongTy;
Douglas Gregor44b43212008-12-11 16:49:14 +00002524
Anders Carlsson71993dd2007-08-17 05:31:46 +00002525 // Create fields
Douglas Gregor44b43212008-12-11 16:49:14 +00002526 for (unsigned i = 0; i < 4; ++i) {
2527 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl,
2528 SourceLocation(), 0,
2529 FieldTypes[i], /*BitWidth=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002530 /*Mutable=*/false);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002531 CFConstantStringTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00002532 }
2533
2534 CFConstantStringTypeDecl->completeDefinition(*this);
Anders Carlsson71993dd2007-08-17 05:31:46 +00002535 }
2536
2537 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif84675832007-09-11 15:32:40 +00002538}
Anders Carlssonb2cf3572007-10-11 01:00:40 +00002539
Douglas Gregor319ac892009-04-23 22:29:11 +00002540void ASTContext::setCFConstantStringType(QualType T) {
Ted Kremenek6217b802009-07-29 21:53:49 +00002541 const RecordType *Rec = T->getAs<RecordType>();
Douglas Gregor319ac892009-04-23 22:29:11 +00002542 assert(Rec && "Invalid CFConstantStringType");
2543 CFConstantStringTypeDecl = Rec->getDecl();
2544}
2545
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00002546QualType ASTContext::getObjCFastEnumerationStateType()
2547{
2548 if (!ObjCFastEnumerationStateTypeDecl) {
Douglas Gregor44b43212008-12-11 16:49:14 +00002549 ObjCFastEnumerationStateTypeDecl =
2550 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
2551 &Idents.get("__objcFastEnumerationState"));
2552
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00002553 QualType FieldTypes[] = {
2554 UnsignedLongTy,
Steve Naroffde2e22d2009-07-15 18:40:39 +00002555 getPointerType(ObjCIdTypedefType),
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00002556 getPointerType(UnsignedLongTy),
2557 getConstantArrayType(UnsignedLongTy,
2558 llvm::APInt(32, 5), ArrayType::Normal, 0)
2559 };
2560
Douglas Gregor44b43212008-12-11 16:49:14 +00002561 for (size_t i = 0; i < 4; ++i) {
2562 FieldDecl *Field = FieldDecl::Create(*this,
2563 ObjCFastEnumerationStateTypeDecl,
2564 SourceLocation(), 0,
2565 FieldTypes[i], /*BitWidth=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002566 /*Mutable=*/false);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002567 ObjCFastEnumerationStateTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00002568 }
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00002569
Douglas Gregor44b43212008-12-11 16:49:14 +00002570 ObjCFastEnumerationStateTypeDecl->completeDefinition(*this);
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00002571 }
2572
2573 return getTagDeclType(ObjCFastEnumerationStateTypeDecl);
2574}
2575
Douglas Gregor319ac892009-04-23 22:29:11 +00002576void ASTContext::setObjCFastEnumerationStateType(QualType T) {
Ted Kremenek6217b802009-07-29 21:53:49 +00002577 const RecordType *Rec = T->getAs<RecordType>();
Douglas Gregor319ac892009-04-23 22:29:11 +00002578 assert(Rec && "Invalid ObjCFAstEnumerationStateType");
2579 ObjCFastEnumerationStateTypeDecl = Rec->getDecl();
2580}
2581
Anders Carlssone8c49532007-10-29 06:33:42 +00002582// This returns true if a type has been typedefed to BOOL:
2583// typedef <type> BOOL;
Chris Lattner2d998332007-10-30 20:27:44 +00002584static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone8c49532007-10-29 06:33:42 +00002585 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattnerbb49c3e2008-11-24 03:52:59 +00002586 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
2587 return II->isStr("BOOL");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002588
2589 return false;
2590}
2591
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002592/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002593/// purpose.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002594int ASTContext::getObjCEncodingTypeSize(QualType type) {
Chris Lattner98be4942008-03-05 18:54:05 +00002595 uint64_t sz = getTypeSize(type);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002596
2597 // Make all integer and enum types at least as large as an int
2598 if (sz > 0 && type->isIntegralType())
Chris Lattner98be4942008-03-05 18:54:05 +00002599 sz = std::max(sz, getTypeSize(IntTy));
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002600 // Treat arrays as pointers, since that's how they're passed in.
2601 else if (type->isArrayType())
Chris Lattner98be4942008-03-05 18:54:05 +00002602 sz = getTypeSize(VoidPtrTy);
2603 return sz / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002604}
2605
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002606/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002607/// declaration.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002608void ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
Chris Lattnere6db3b02008-11-19 07:24:05 +00002609 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002610 // FIXME: This is not very efficient.
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00002611 // Encode type qualifer, 'in', 'inout', etc. for the return type.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002612 getObjCEncodingForTypeQualifier(Decl->getObjCDeclQualifier(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002613 // Encode result type.
Daniel Dunbar0d504c12008-10-17 20:21:44 +00002614 getObjCEncodingForType(Decl->getResultType(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002615 // Compute size of all parameters.
2616 // Start with computing size of a pointer in number of bytes.
2617 // FIXME: There might(should) be a better way of doing this computation!
2618 SourceLocation Loc;
Chris Lattner98be4942008-03-05 18:54:05 +00002619 int PtrSize = getTypeSize(VoidPtrTy) / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002620 // The first two arguments (self and _cmd) are pointers; account for
2621 // their size.
2622 int ParmOffset = 2 * PtrSize;
Chris Lattner89951a82009-02-20 18:43:26 +00002623 for (ObjCMethodDecl::param_iterator PI = Decl->param_begin(),
2624 E = Decl->param_end(); PI != E; ++PI) {
2625 QualType PType = (*PI)->getType();
2626 int sz = getObjCEncodingTypeSize(PType);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002627 assert (sz > 0 && "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002628 ParmOffset += sz;
2629 }
2630 S += llvm::utostr(ParmOffset);
2631 S += "@0:";
2632 S += llvm::utostr(PtrSize);
2633
2634 // Argument types.
2635 ParmOffset = 2 * PtrSize;
Chris Lattner89951a82009-02-20 18:43:26 +00002636 for (ObjCMethodDecl::param_iterator PI = Decl->param_begin(),
2637 E = Decl->param_end(); PI != E; ++PI) {
2638 ParmVarDecl *PVDecl = *PI;
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00002639 QualType PType = PVDecl->getOriginalType();
2640 if (const ArrayType *AT =
Steve Naroffab76d452009-04-14 00:03:58 +00002641 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
2642 // Use array's original type only if it has known number of
2643 // elements.
Steve Naroffbb3fde32009-04-14 00:40:09 +00002644 if (!isa<ConstantArrayType>(AT))
Steve Naroffab76d452009-04-14 00:03:58 +00002645 PType = PVDecl->getType();
2646 } else if (PType->isFunctionType())
2647 PType = PVDecl->getType();
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00002648 // Process argument qualifiers for user supplied arguments; such as,
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002649 // 'in', 'inout', etc.
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00002650 getObjCEncodingForTypeQualifier(PVDecl->getObjCDeclQualifier(), S);
Daniel Dunbar0d504c12008-10-17 20:21:44 +00002651 getObjCEncodingForType(PType, S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002652 S += llvm::utostr(ParmOffset);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002653 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002654 }
2655}
2656
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002657/// getObjCEncodingForPropertyDecl - Return the encoded type for this
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00002658/// property declaration. If non-NULL, Container must be either an
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002659/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
2660/// NULL when getting encodings for protocol properties.
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00002661/// Property attributes are stored as a comma-delimited C string. The simple
2662/// attributes readonly and bycopy are encoded as single characters. The
2663/// parametrized attributes, getter=name, setter=name, and ivar=name, are
2664/// encoded as single characters, followed by an identifier. Property types
2665/// are also encoded as a parametrized attribute. The characters used to encode
2666/// these attributes are defined by the following enumeration:
2667/// @code
2668/// enum PropertyAttributes {
2669/// kPropertyReadOnly = 'R', // property is read-only.
2670/// kPropertyBycopy = 'C', // property is a copy of the value last assigned
2671/// kPropertyByref = '&', // property is a reference to the value last assigned
2672/// kPropertyDynamic = 'D', // property is dynamic
2673/// kPropertyGetter = 'G', // followed by getter selector name
2674/// kPropertySetter = 'S', // followed by setter selector name
2675/// kPropertyInstanceVariable = 'V' // followed by instance variable name
2676/// kPropertyType = 't' // followed by old-style type encoding.
2677/// kPropertyWeak = 'W' // 'weak' property
2678/// kPropertyStrong = 'P' // property GC'able
2679/// kPropertyNonAtomic = 'N' // property non-atomic
2680/// };
2681/// @endcode
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002682void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
2683 const Decl *Container,
Chris Lattnere6db3b02008-11-19 07:24:05 +00002684 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002685 // Collect information from the property implementation decl(s).
2686 bool Dynamic = false;
2687 ObjCPropertyImplDecl *SynthesizePID = 0;
2688
2689 // FIXME: Duplicated code due to poor abstraction.
2690 if (Container) {
2691 if (const ObjCCategoryImplDecl *CID =
2692 dyn_cast<ObjCCategoryImplDecl>(Container)) {
2693 for (ObjCCategoryImplDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002694 i = CID->propimpl_begin(), e = CID->propimpl_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00002695 i != e; ++i) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002696 ObjCPropertyImplDecl *PID = *i;
2697 if (PID->getPropertyDecl() == PD) {
2698 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
2699 Dynamic = true;
2700 } else {
2701 SynthesizePID = PID;
2702 }
2703 }
2704 }
2705 } else {
Chris Lattner61710852008-10-05 17:34:18 +00002706 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002707 for (ObjCCategoryImplDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002708 i = OID->propimpl_begin(), e = OID->propimpl_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00002709 i != e; ++i) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002710 ObjCPropertyImplDecl *PID = *i;
2711 if (PID->getPropertyDecl() == PD) {
2712 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
2713 Dynamic = true;
2714 } else {
2715 SynthesizePID = PID;
2716 }
2717 }
2718 }
2719 }
2720 }
2721
2722 // FIXME: This is not very efficient.
2723 S = "T";
2724
2725 // Encode result type.
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002726 // GCC has some special rules regarding encoding of properties which
2727 // closely resembles encoding of ivars.
Daniel Dunbar153bfe52009-04-20 06:37:24 +00002728 getObjCEncodingForTypeImpl(PD->getType(), S, true, true, 0,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002729 true /* outermost type */,
2730 true /* encoding for property */);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002731
2732 if (PD->isReadOnly()) {
2733 S += ",R";
2734 } else {
2735 switch (PD->getSetterKind()) {
2736 case ObjCPropertyDecl::Assign: break;
2737 case ObjCPropertyDecl::Copy: S += ",C"; break;
2738 case ObjCPropertyDecl::Retain: S += ",&"; break;
2739 }
2740 }
2741
2742 // It really isn't clear at all what this means, since properties
2743 // are "dynamic by default".
2744 if (Dynamic)
2745 S += ",D";
2746
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002747 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
2748 S += ",N";
2749
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002750 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
2751 S += ",G";
Chris Lattner077bf5e2008-11-24 03:33:13 +00002752 S += PD->getGetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002753 }
2754
2755 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
2756 S += ",S";
Chris Lattner077bf5e2008-11-24 03:33:13 +00002757 S += PD->getSetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002758 }
2759
2760 if (SynthesizePID) {
2761 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
2762 S += ",V";
Chris Lattner39f34e92008-11-24 04:00:27 +00002763 S += OID->getNameAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002764 }
2765
2766 // FIXME: OBJCGC: weak & strong
2767}
2768
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002769/// getLegacyIntegralTypeEncoding -
2770/// Another legacy compatibility encoding: 32-bit longs are encoded as
Fariborz Jahanianc657eba2009-02-11 23:59:18 +00002771/// 'l' or 'L' , but not always. For typedefs, we need to use
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002772/// 'i' or 'I' instead if encoding a struct field, or a pointer!
2773///
2774void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
Mike Stump8e1fab22009-07-22 18:58:19 +00002775 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002776 if (const BuiltinType *BT = PointeeTy->getAsBuiltinType()) {
Fariborz Jahanianc657eba2009-02-11 23:59:18 +00002777 if (BT->getKind() == BuiltinType::ULong &&
2778 ((const_cast<ASTContext *>(this))->getIntWidth(PointeeTy) == 32))
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002779 PointeeTy = UnsignedIntTy;
Fariborz Jahanianc657eba2009-02-11 23:59:18 +00002780 else
2781 if (BT->getKind() == BuiltinType::Long &&
2782 ((const_cast<ASTContext *>(this))->getIntWidth(PointeeTy) == 32))
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002783 PointeeTy = IntTy;
2784 }
2785 }
2786}
2787
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002788void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
Daniel Dunbar153bfe52009-04-20 06:37:24 +00002789 const FieldDecl *Field) {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002790 // We follow the behavior of gcc, expanding structures which are
2791 // directly pointed to, and expanding embedded structures. Note that
2792 // these rules are sufficient to prevent recursive encoding of the
2793 // same type.
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00002794 getObjCEncodingForTypeImpl(T, S, true, true, Field,
2795 true /* outermost type */);
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002796}
2797
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00002798static void EncodeBitField(const ASTContext *Context, std::string& S,
Daniel Dunbar153bfe52009-04-20 06:37:24 +00002799 const FieldDecl *FD) {
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00002800 const Expr *E = FD->getBitWidth();
2801 assert(E && "bitfield width not there - getObjCEncodingForTypeImpl");
2802 ASTContext *Ctx = const_cast<ASTContext*>(Context);
Eli Friedman9a901bb2009-04-26 19:19:15 +00002803 unsigned N = E->EvaluateAsInt(*Ctx).getZExtValue();
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00002804 S += 'b';
2805 S += llvm::utostr(N);
2806}
2807
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002808void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
2809 bool ExpandPointedToStructures,
2810 bool ExpandStructures,
Daniel Dunbar153bfe52009-04-20 06:37:24 +00002811 const FieldDecl *FD,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002812 bool OutermostType,
Douglas Gregor6ab35242009-04-09 21:40:53 +00002813 bool EncodingProperty) {
Anders Carlssone8c49532007-10-29 06:33:42 +00002814 if (const BuiltinType *BT = T->getAsBuiltinType()) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002815 if (FD && FD->isBitField())
2816 return EncodeBitField(this, S, FD);
2817 char encoding;
2818 switch (BT->getKind()) {
2819 default: assert(0 && "Unhandled builtin type kind");
2820 case BuiltinType::Void: encoding = 'v'; break;
2821 case BuiltinType::Bool: encoding = 'B'; break;
2822 case BuiltinType::Char_U:
2823 case BuiltinType::UChar: encoding = 'C'; break;
2824 case BuiltinType::UShort: encoding = 'S'; break;
2825 case BuiltinType::UInt: encoding = 'I'; break;
2826 case BuiltinType::ULong:
Fariborz Jahanian72696e12009-02-11 22:31:45 +00002827 encoding =
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002828 (const_cast<ASTContext *>(this))->getIntWidth(T) == 32 ? 'L' : 'Q';
Fariborz Jahanian72696e12009-02-11 22:31:45 +00002829 break;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002830 case BuiltinType::UInt128: encoding = 'T'; break;
2831 case BuiltinType::ULongLong: encoding = 'Q'; break;
2832 case BuiltinType::Char_S:
2833 case BuiltinType::SChar: encoding = 'c'; break;
2834 case BuiltinType::Short: encoding = 's'; break;
2835 case BuiltinType::Int: encoding = 'i'; break;
2836 case BuiltinType::Long:
2837 encoding =
2838 (const_cast<ASTContext *>(this))->getIntWidth(T) == 32 ? 'l' : 'q';
2839 break;
2840 case BuiltinType::LongLong: encoding = 'q'; break;
2841 case BuiltinType::Int128: encoding = 't'; break;
2842 case BuiltinType::Float: encoding = 'f'; break;
2843 case BuiltinType::Double: encoding = 'd'; break;
2844 case BuiltinType::LongDouble: encoding = 'd'; break;
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002845 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002846
2847 S += encoding;
2848 return;
2849 }
2850
2851 if (const ComplexType *CT = T->getAsComplexType()) {
Anders Carlssonc612f7b2009-04-09 21:55:45 +00002852 S += 'j';
2853 getObjCEncodingForTypeImpl(CT->getElementType(), S, false, false, 0, false,
2854 false);
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002855 return;
2856 }
2857
Ted Kremenek6217b802009-07-29 21:53:49 +00002858 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002859 QualType PointeeTy = PT->getPointeeType();
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002860 bool isReadOnly = false;
2861 // For historical/compatibility reasons, the read-only qualifier of the
2862 // pointee gets emitted _before_ the '^'. The read-only qualifier of
2863 // the pointer itself gets ignored, _unless_ we are looking at a typedef!
2864 // Also, do not emit the 'r' for anything but the outermost type!
Mike Stump8e1fab22009-07-22 18:58:19 +00002865 if (isa<TypedefType>(T.getTypePtr())) {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002866 if (OutermostType && T.isConstQualified()) {
2867 isReadOnly = true;
2868 S += 'r';
2869 }
Mike Stump9fdbab32009-07-31 02:02:20 +00002870 } else if (OutermostType) {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002871 QualType P = PointeeTy;
Ted Kremenek6217b802009-07-29 21:53:49 +00002872 while (P->getAs<PointerType>())
2873 P = P->getAs<PointerType>()->getPointeeType();
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002874 if (P.isConstQualified()) {
2875 isReadOnly = true;
2876 S += 'r';
2877 }
2878 }
2879 if (isReadOnly) {
2880 // Another legacy compatibility encoding. Some ObjC qualifier and type
2881 // combinations need to be rearranged.
2882 // Rewrite "in const" from "nr" to "rn"
2883 const char * s = S.c_str();
2884 int len = S.length();
2885 if (len >= 2 && s[len-2] == 'n' && s[len-1] == 'r') {
2886 std::string replace = "rn";
2887 S.replace(S.end()-2, S.end(), replace);
2888 }
2889 }
Steve Naroff14108da2009-07-10 23:34:53 +00002890 if (isObjCSelType(PointeeTy)) {
Anders Carlsson8baaca52007-10-31 02:53:19 +00002891 S += ':';
2892 return;
Fariborz Jahanianc2939bc2007-10-30 17:06:23 +00002893 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002894
2895 if (PointeeTy->isCharType()) {
2896 // char pointer types should be encoded as '*' unless it is a
2897 // type that has been typedef'd to 'BOOL'.
Anders Carlssone8c49532007-10-29 06:33:42 +00002898 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002899 S += '*';
2900 return;
2901 }
Ted Kremenek6217b802009-07-29 21:53:49 +00002902 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
Steve Naroff9533a7f2009-07-22 17:14:51 +00002903 // GCC binary compat: Need to convert "struct objc_class *" to "#".
2904 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
2905 S += '#';
2906 return;
2907 }
2908 // GCC binary compat: Need to convert "struct objc_object *" to "@".
2909 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
2910 S += '@';
2911 return;
2912 }
2913 // fall through...
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002914 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002915 S += '^';
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002916 getLegacyIntegralTypeEncoding(PointeeTy);
2917
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002918 getObjCEncodingForTypeImpl(PointeeTy, S, false, ExpandPointedToStructures,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002919 NULL);
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002920 return;
2921 }
2922
2923 if (const ArrayType *AT =
2924 // Ignore type qualifiers etc.
2925 dyn_cast<ArrayType>(T->getCanonicalTypeInternal())) {
Anders Carlsson559a8332009-02-22 01:38:57 +00002926 if (isa<IncompleteArrayType>(AT)) {
2927 // Incomplete arrays are encoded as a pointer to the array element.
2928 S += '^';
2929
2930 getObjCEncodingForTypeImpl(AT->getElementType(), S,
2931 false, ExpandStructures, FD);
2932 } else {
2933 S += '[';
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002934
Anders Carlsson559a8332009-02-22 01:38:57 +00002935 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
2936 S += llvm::utostr(CAT->getSize().getZExtValue());
2937 else {
2938 //Variable length arrays are encoded as a regular array with 0 elements.
2939 assert(isa<VariableArrayType>(AT) && "Unknown array type!");
2940 S += '0';
2941 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002942
Anders Carlsson559a8332009-02-22 01:38:57 +00002943 getObjCEncodingForTypeImpl(AT->getElementType(), S,
2944 false, ExpandStructures, FD);
2945 S += ']';
2946 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002947 return;
2948 }
2949
2950 if (T->getAsFunctionType()) {
Anders Carlssonc0a87b72007-10-30 00:06:20 +00002951 S += '?';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002952 return;
2953 }
2954
Ted Kremenek6217b802009-07-29 21:53:49 +00002955 if (const RecordType *RTy = T->getAs<RecordType>()) {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002956 RecordDecl *RDecl = RTy->getDecl();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002957 S += RDecl->isUnion() ? '(' : '{';
Daniel Dunbar502a4a12008-10-17 06:22:57 +00002958 // Anonymous structures print as '?'
2959 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
2960 S += II->getName();
2961 } else {
2962 S += '?';
2963 }
Daniel Dunbar0d504c12008-10-17 20:21:44 +00002964 if (ExpandStructures) {
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002965 S += '=';
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002966 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
2967 FieldEnd = RDecl->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +00002968 Field != FieldEnd; ++Field) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002969 if (FD) {
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002970 S += '"';
Douglas Gregor44b43212008-12-11 16:49:14 +00002971 S += Field->getNameAsString();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002972 S += '"';
2973 }
2974
2975 // Special case bit-fields.
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002976 if (Field->isBitField()) {
2977 getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
2978 (*Field));
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002979 } else {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002980 QualType qt = Field->getType();
2981 getLegacyIntegralTypeEncoding(qt);
2982 getObjCEncodingForTypeImpl(qt, S, false, true,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002983 FD);
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002984 }
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002985 }
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00002986 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002987 S += RDecl->isUnion() ? ')' : '}';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002988 return;
2989 }
2990
2991 if (T->isEnumeralType()) {
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00002992 if (FD && FD->isBitField())
2993 EncodeBitField(this, S, FD);
2994 else
2995 S += 'i';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00002996 return;
2997 }
2998
2999 if (T->isBlockPointerType()) {
Steve Naroff21a98b12009-02-02 18:24:29 +00003000 S += "@?"; // Unlike a pointer-to-function, which is "^?".
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003001 return;
3002 }
3003
3004 if (T->isObjCInterfaceType()) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00003005 // @encode(class_name)
3006 ObjCInterfaceDecl *OI = T->getAsObjCInterfaceType()->getDecl();
3007 S += '{';
3008 const IdentifierInfo *II = OI->getIdentifier();
3009 S += II->getName();
3010 S += '=';
Chris Lattnerf1690852009-03-31 08:48:01 +00003011 llvm::SmallVector<FieldDecl*, 32> RecFields;
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00003012 CollectObjCIvars(OI, RecFields);
Chris Lattnerf1690852009-03-31 08:48:01 +00003013 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00003014 if (RecFields[i]->isBitField())
3015 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
3016 RecFields[i]);
3017 else
3018 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
3019 FD);
3020 }
3021 S += '}';
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003022 return;
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00003023 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003024
3025 if (const ObjCObjectPointerType *OPT = T->getAsObjCObjectPointerType()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003026 if (OPT->isObjCIdType()) {
3027 S += '@';
3028 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003029 }
3030
3031 if (OPT->isObjCClassType()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003032 S += '#';
3033 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003034 }
3035
3036 if (OPT->isObjCQualifiedIdType()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003037 getObjCEncodingForTypeImpl(getObjCIdType(), S,
3038 ExpandPointedToStructures,
3039 ExpandStructures, FD);
3040 if (FD || EncodingProperty) {
3041 // Note that we do extended encoding of protocol qualifer list
3042 // Only when doing ivar or property encoding.
Steve Naroff14108da2009-07-10 23:34:53 +00003043 S += '"';
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003044 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
3045 E = OPT->qual_end(); I != E; ++I) {
Steve Naroff14108da2009-07-10 23:34:53 +00003046 S += '<';
3047 S += (*I)->getNameAsString();
3048 S += '>';
3049 }
3050 S += '"';
3051 }
3052 return;
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003053 }
3054
3055 QualType PointeeTy = OPT->getPointeeType();
3056 if (!EncodingProperty &&
3057 isa<TypedefType>(PointeeTy.getTypePtr())) {
3058 // Another historical/compatibility reason.
3059 // We encode the underlying type which comes out as
3060 // {...};
3061 S += '^';
3062 getObjCEncodingForTypeImpl(PointeeTy, S,
3063 false, ExpandPointedToStructures,
3064 NULL);
Steve Naroff14108da2009-07-10 23:34:53 +00003065 return;
3066 }
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003067
3068 S += '@';
3069 if (FD || EncodingProperty) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003070 S += '"';
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003071 S += OPT->getInterfaceDecl()->getNameAsCString();
3072 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
3073 E = OPT->qual_end(); I != E; ++I) {
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003074 S += '<';
3075 S += (*I)->getNameAsString();
3076 S += '>';
3077 }
3078 S += '"';
3079 }
3080 return;
3081 }
3082
3083 assert(0 && "@encode for type not implemented!");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00003084}
3085
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003086void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00003087 std::string& S) const {
3088 if (QT & Decl::OBJC_TQ_In)
3089 S += 'n';
3090 if (QT & Decl::OBJC_TQ_Inout)
3091 S += 'N';
3092 if (QT & Decl::OBJC_TQ_Out)
3093 S += 'o';
3094 if (QT & Decl::OBJC_TQ_Bycopy)
3095 S += 'O';
3096 if (QT & Decl::OBJC_TQ_Byref)
3097 S += 'R';
3098 if (QT & Decl::OBJC_TQ_Oneway)
3099 S += 'V';
3100}
3101
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003102void ASTContext::setBuiltinVaListType(QualType T) {
Anders Carlssonb2cf3572007-10-11 01:00:40 +00003103 assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
3104
3105 BuiltinVaListType = T;
3106}
3107
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003108void ASTContext::setObjCIdType(QualType T) {
Steve Naroffde2e22d2009-07-15 18:40:39 +00003109 ObjCIdTypedefType = T;
Steve Naroff7e219e42007-10-15 14:41:52 +00003110}
3111
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003112void ASTContext::setObjCSelType(QualType T) {
Douglas Gregor319ac892009-04-23 22:29:11 +00003113 ObjCSelType = T;
3114
3115 const TypedefType *TT = T->getAsTypedefType();
3116 if (!TT)
3117 return;
3118 TypedefDecl *TD = TT->getDecl();
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00003119
3120 // typedef struct objc_selector *SEL;
Ted Kremenek6217b802009-07-29 21:53:49 +00003121 const PointerType *ptr = TD->getUnderlyingType()->getAs<PointerType>();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00003122 if (!ptr)
3123 return;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00003124 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00003125 if (!rec)
3126 return;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00003127 SelStructType = rec;
3128}
3129
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003130void ASTContext::setObjCProtoType(QualType QT) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003131 ObjCProtoType = QT;
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00003132}
3133
Chris Lattnerce7b38c2009-07-13 00:10:46 +00003134void ASTContext::setObjCClassType(QualType T) {
Steve Naroffde2e22d2009-07-15 18:40:39 +00003135 ObjCClassTypedefType = T;
Anders Carlsson8baaca52007-10-31 02:53:19 +00003136}
3137
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003138void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
3139 assert(ObjCConstantStringType.isNull() &&
Steve Naroff21988912007-10-15 23:35:17 +00003140 "'NSConstantString' type already set!");
3141
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003142 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Naroff21988912007-10-15 23:35:17 +00003143}
3144
Douglas Gregor7532dc62009-03-30 22:58:21 +00003145/// \brief Retrieve the template name that represents a qualified
3146/// template name such as \c std::vector.
3147TemplateName ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
3148 bool TemplateKeyword,
3149 TemplateDecl *Template) {
3150 llvm::FoldingSetNodeID ID;
3151 QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
3152
3153 void *InsertPos = 0;
3154 QualifiedTemplateName *QTN =
3155 QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
3156 if (!QTN) {
3157 QTN = new (*this,4) QualifiedTemplateName(NNS, TemplateKeyword, Template);
3158 QualifiedTemplateNames.InsertNode(QTN, InsertPos);
3159 }
3160
3161 return TemplateName(QTN);
3162}
3163
Douglas Gregord99cbe62009-07-29 18:26:50 +00003164/// \brief Retrieve the template name that represents a qualified
3165/// template name such as \c std::vector.
3166TemplateName ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
3167 bool TemplateKeyword,
3168 OverloadedFunctionDecl *Template) {
3169 llvm::FoldingSetNodeID ID;
3170 QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
3171
3172 void *InsertPos = 0;
3173 QualifiedTemplateName *QTN =
3174 QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
3175 if (!QTN) {
3176 QTN = new (*this,4) QualifiedTemplateName(NNS, TemplateKeyword, Template);
3177 QualifiedTemplateNames.InsertNode(QTN, InsertPos);
3178 }
3179
3180 return TemplateName(QTN);
3181}
3182
Douglas Gregor7532dc62009-03-30 22:58:21 +00003183/// \brief Retrieve the template name that represents a dependent
3184/// template name such as \c MetaFun::template apply.
3185TemplateName ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
3186 const IdentifierInfo *Name) {
3187 assert(NNS->isDependent() && "Nested name specifier must be dependent");
3188
3189 llvm::FoldingSetNodeID ID;
3190 DependentTemplateName::Profile(ID, NNS, Name);
3191
3192 void *InsertPos = 0;
3193 DependentTemplateName *QTN =
3194 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
3195
3196 if (QTN)
3197 return TemplateName(QTN);
3198
3199 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
3200 if (CanonNNS == NNS) {
3201 QTN = new (*this,4) DependentTemplateName(NNS, Name);
3202 } else {
3203 TemplateName Canon = getDependentTemplateName(CanonNNS, Name);
3204 QTN = new (*this,4) DependentTemplateName(NNS, Name, Canon);
3205 }
3206
3207 DependentTemplateNames.InsertNode(QTN, InsertPos);
3208 return TemplateName(QTN);
3209}
3210
Douglas Gregorb4e66d52008-11-03 14:12:49 +00003211/// getFromTargetType - Given one of the integer types provided by
Douglas Gregord9341122008-11-03 15:57:00 +00003212/// TargetInfo, produce the corresponding type. The unsigned @p Type
3213/// is actually a value of type @c TargetInfo::IntType.
3214QualType ASTContext::getFromTargetType(unsigned Type) const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00003215 switch (Type) {
3216 case TargetInfo::NoInt: return QualType();
3217 case TargetInfo::SignedShort: return ShortTy;
3218 case TargetInfo::UnsignedShort: return UnsignedShortTy;
3219 case TargetInfo::SignedInt: return IntTy;
3220 case TargetInfo::UnsignedInt: return UnsignedIntTy;
3221 case TargetInfo::SignedLong: return LongTy;
3222 case TargetInfo::UnsignedLong: return UnsignedLongTy;
3223 case TargetInfo::SignedLongLong: return LongLongTy;
3224 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
3225 }
3226
3227 assert(false && "Unhandled TargetInfo::IntType value");
Daniel Dunbarb3ac5432008-11-11 01:16:00 +00003228 return QualType();
Douglas Gregorb4e66d52008-11-03 14:12:49 +00003229}
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00003230
3231//===----------------------------------------------------------------------===//
3232// Type Predicates.
3233//===----------------------------------------------------------------------===//
3234
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00003235/// isObjCNSObjectType - Return true if this is an NSObject object using
3236/// NSObject attribute on a c-style pointer type.
3237/// FIXME - Make it work directly on types.
Steve Narofff4954562009-07-16 15:41:00 +00003238/// FIXME: Move to Type.
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00003239///
3240bool ASTContext::isObjCNSObjectType(QualType Ty) const {
3241 if (TypedefType *TDT = dyn_cast<TypedefType>(Ty)) {
3242 if (TypedefDecl *TD = TDT->getDecl())
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00003243 if (TD->getAttr<ObjCNSObjectAttr>())
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00003244 return true;
3245 }
3246 return false;
3247}
3248
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00003249/// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's
3250/// garbage collection attribute.
3251///
3252QualType::GCAttrTypes ASTContext::getObjCGCAttrKind(const QualType &Ty) const {
Chris Lattnerb7d25532009-02-18 22:53:11 +00003253 QualType::GCAttrTypes GCAttrs = QualType::GCNone;
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00003254 if (getLangOptions().ObjC1 &&
3255 getLangOptions().getGCMode() != LangOptions::NonGC) {
Chris Lattnerb7d25532009-02-18 22:53:11 +00003256 GCAttrs = Ty.getObjCGCAttr();
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00003257 // Default behavious under objective-c's gc is for objective-c pointers
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00003258 // (or pointers to them) be treated as though they were declared
3259 // as __strong.
3260 if (GCAttrs == QualType::GCNone) {
Steve Narofff4954562009-07-16 15:41:00 +00003261 if (Ty->isObjCObjectPointerType())
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00003262 GCAttrs = QualType::Strong;
3263 else if (Ty->isPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +00003264 return getObjCGCAttrKind(Ty->getAs<PointerType>()->getPointeeType());
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00003265 }
Fariborz Jahanianc2112182009-04-11 00:00:54 +00003266 // Non-pointers have none gc'able attribute regardless of the attribute
3267 // set on them.
Steve Narofff4954562009-07-16 15:41:00 +00003268 else if (!Ty->isAnyPointerType() && !Ty->isBlockPointerType())
Fariborz Jahanianc2112182009-04-11 00:00:54 +00003269 return QualType::GCNone;
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00003270 }
Chris Lattnerb7d25532009-02-18 22:53:11 +00003271 return GCAttrs;
Fariborz Jahanian4fd83ea2009-02-18 21:49:28 +00003272}
3273
Chris Lattner6ac46a42008-04-07 06:51:04 +00003274//===----------------------------------------------------------------------===//
3275// Type Compatibility Testing
3276//===----------------------------------------------------------------------===//
Chris Lattner770951b2007-11-01 05:03:41 +00003277
Chris Lattner6ac46a42008-04-07 06:51:04 +00003278/// areCompatVectorTypes - Return true if the two specified vector types are
3279/// compatible.
3280static bool areCompatVectorTypes(const VectorType *LHS,
3281 const VectorType *RHS) {
3282 assert(LHS->isCanonical() && RHS->isCanonical());
3283 return LHS->getElementType() == RHS->getElementType() &&
Chris Lattner61710852008-10-05 17:34:18 +00003284 LHS->getNumElements() == RHS->getNumElements();
Chris Lattner6ac46a42008-04-07 06:51:04 +00003285}
3286
Steve Naroff4084c302009-07-23 01:01:38 +00003287//===----------------------------------------------------------------------===//
3288// ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
3289//===----------------------------------------------------------------------===//
3290
3291/// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
3292/// inheritance hierarchy of 'rProto'.
3293static bool ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
3294 ObjCProtocolDecl *rProto) {
3295 if (lProto == rProto)
3296 return true;
3297 for (ObjCProtocolDecl::protocol_iterator PI = rProto->protocol_begin(),
3298 E = rProto->protocol_end(); PI != E; ++PI)
3299 if (ProtocolCompatibleWithProtocol(lProto, *PI))
3300 return true;
3301 return false;
3302}
3303
3304/// ClassImplementsProtocol - Checks that 'lProto' protocol
3305/// has been implemented in IDecl class, its super class or categories (if
3306/// lookupCategory is true).
3307static bool ClassImplementsProtocol(ObjCProtocolDecl *lProto,
3308 ObjCInterfaceDecl *IDecl,
3309 bool lookupCategory,
3310 bool RHSIsQualifiedID = false) {
3311
3312 // 1st, look up the class.
3313 const ObjCList<ObjCProtocolDecl> &Protocols =
3314 IDecl->getReferencedProtocols();
3315
3316 for (ObjCList<ObjCProtocolDecl>::iterator PI = Protocols.begin(),
3317 E = Protocols.end(); PI != E; ++PI) {
3318 if (ProtocolCompatibleWithProtocol(lProto, *PI))
3319 return true;
3320 // This is dubious and is added to be compatible with gcc. In gcc, it is
3321 // also allowed assigning a protocol-qualified 'id' type to a LHS object
3322 // when protocol in qualified LHS is in list of protocols in the rhs 'id'
3323 // object. This IMO, should be a bug.
3324 // FIXME: Treat this as an extension, and flag this as an error when GCC
3325 // extensions are not enabled.
3326 if (RHSIsQualifiedID && ProtocolCompatibleWithProtocol(*PI, lProto))
3327 return true;
3328 }
3329
3330 // 2nd, look up the category.
3331 if (lookupCategory)
3332 for (ObjCCategoryDecl *CDecl = IDecl->getCategoryList(); CDecl;
3333 CDecl = CDecl->getNextClassCategory()) {
3334 for (ObjCCategoryDecl::protocol_iterator PI = CDecl->protocol_begin(),
3335 E = CDecl->protocol_end(); PI != E; ++PI)
3336 if (ProtocolCompatibleWithProtocol(lProto, *PI))
3337 return true;
3338 }
3339
3340 // 3rd, look up the super class(s)
3341 if (IDecl->getSuperClass())
3342 return
3343 ClassImplementsProtocol(lProto, IDecl->getSuperClass(), lookupCategory,
3344 RHSIsQualifiedID);
3345
3346 return false;
3347}
3348
3349/// QualifiedIdConformsQualifiedId - compare id<p,...> with id<p1,...>
3350/// return true if lhs's protocols conform to rhs's protocol; false
3351/// otherwise.
3352bool ASTContext::QualifiedIdConformsQualifiedId(QualType lhs, QualType rhs) {
3353 if (lhs->isObjCQualifiedIdType() && rhs->isObjCQualifiedIdType())
3354 return ObjCQualifiedIdTypesAreCompatible(lhs, rhs, false);
3355 return false;
3356}
3357
3358/// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
3359/// ObjCQualifiedIDType.
3360bool ASTContext::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs,
3361 bool compare) {
3362 // Allow id<P..> and an 'id' or void* type in all cases.
3363 if (lhs->isVoidPointerType() ||
3364 lhs->isObjCIdType() || lhs->isObjCClassType())
3365 return true;
3366 else if (rhs->isVoidPointerType() ||
3367 rhs->isObjCIdType() || rhs->isObjCClassType())
3368 return true;
3369
3370 if (const ObjCObjectPointerType *lhsQID = lhs->getAsObjCQualifiedIdType()) {
3371 const ObjCObjectPointerType *rhsOPT = rhs->getAsObjCObjectPointerType();
3372
3373 if (!rhsOPT) return false;
3374
3375 if (rhsOPT->qual_empty()) {
3376 // If the RHS is a unqualified interface pointer "NSString*",
3377 // make sure we check the class hierarchy.
3378 if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
3379 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
3380 E = lhsQID->qual_end(); I != E; ++I) {
3381 // when comparing an id<P> on lhs with a static type on rhs,
3382 // see if static class implements all of id's protocols, directly or
3383 // through its super class and categories.
3384 if (!ClassImplementsProtocol(*I, rhsID, true))
3385 return false;
3386 }
3387 }
3388 // If there are no qualifiers and no interface, we have an 'id'.
3389 return true;
3390 }
3391 // Both the right and left sides have qualifiers.
3392 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
3393 E = lhsQID->qual_end(); I != E; ++I) {
3394 ObjCProtocolDecl *lhsProto = *I;
3395 bool match = false;
3396
3397 // when comparing an id<P> on lhs with a static type on rhs,
3398 // see if static class implements all of id's protocols, directly or
3399 // through its super class and categories.
3400 for (ObjCObjectPointerType::qual_iterator J = rhsOPT->qual_begin(),
3401 E = rhsOPT->qual_end(); J != E; ++J) {
3402 ObjCProtocolDecl *rhsProto = *J;
3403 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
3404 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
3405 match = true;
3406 break;
3407 }
3408 }
3409 // If the RHS is a qualified interface pointer "NSString<P>*",
3410 // make sure we check the class hierarchy.
3411 if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
3412 for (ObjCObjectPointerType::qual_iterator I = lhsQID->qual_begin(),
3413 E = lhsQID->qual_end(); I != E; ++I) {
3414 // when comparing an id<P> on lhs with a static type on rhs,
3415 // see if static class implements all of id's protocols, directly or
3416 // through its super class and categories.
3417 if (ClassImplementsProtocol(*I, rhsID, true)) {
3418 match = true;
3419 break;
3420 }
3421 }
3422 }
3423 if (!match)
3424 return false;
3425 }
3426
3427 return true;
3428 }
3429
3430 const ObjCObjectPointerType *rhsQID = rhs->getAsObjCQualifiedIdType();
3431 assert(rhsQID && "One of the LHS/RHS should be id<x>");
3432
3433 if (const ObjCObjectPointerType *lhsOPT =
3434 lhs->getAsObjCInterfacePointerType()) {
3435 if (lhsOPT->qual_empty()) {
3436 bool match = false;
3437 if (ObjCInterfaceDecl *lhsID = lhsOPT->getInterfaceDecl()) {
3438 for (ObjCObjectPointerType::qual_iterator I = rhsQID->qual_begin(),
3439 E = rhsQID->qual_end(); I != E; ++I) {
3440 // when comparing an id<P> on lhs with a static type on rhs,
3441 // see if static class implements all of id's protocols, directly or
3442 // through its super class and categories.
3443 if (ClassImplementsProtocol(*I, lhsID, true)) {
3444 match = true;
3445 break;
3446 }
3447 }
3448 if (!match)
3449 return false;
3450 }
3451 return true;
3452 }
3453 // Both the right and left sides have qualifiers.
3454 for (ObjCObjectPointerType::qual_iterator I = lhsOPT->qual_begin(),
3455 E = lhsOPT->qual_end(); I != E; ++I) {
3456 ObjCProtocolDecl *lhsProto = *I;
3457 bool match = false;
3458
3459 // when comparing an id<P> on lhs with a static type on rhs,
3460 // see if static class implements all of id's protocols, directly or
3461 // through its super class and categories.
3462 for (ObjCObjectPointerType::qual_iterator J = rhsQID->qual_begin(),
3463 E = rhsQID->qual_end(); J != E; ++J) {
3464 ObjCProtocolDecl *rhsProto = *J;
3465 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
3466 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
3467 match = true;
3468 break;
3469 }
3470 }
3471 if (!match)
3472 return false;
3473 }
3474 return true;
3475 }
3476 return false;
3477}
3478
Eli Friedman3d815e72008-08-22 00:56:42 +00003479/// canAssignObjCInterfaces - Return true if the two interface types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00003480/// compatible for assignment from RHS to LHS. This handles validation of any
3481/// protocol qualifiers on the LHS or RHS.
3482///
Steve Naroff14108da2009-07-10 23:34:53 +00003483bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
3484 const ObjCObjectPointerType *RHSOPT) {
Steve Naroffde2e22d2009-07-15 18:40:39 +00003485 // If either type represents the built-in 'id' or 'Class' types, return true.
3486 if (LHSOPT->isObjCBuiltinType() || RHSOPT->isObjCBuiltinType())
Steve Naroff14108da2009-07-10 23:34:53 +00003487 return true;
3488
Steve Naroff4084c302009-07-23 01:01:38 +00003489 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
3490 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
3491 QualType(RHSOPT,0),
3492 false);
3493
Steve Naroff14108da2009-07-10 23:34:53 +00003494 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType();
3495 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType();
Steve Naroff4084c302009-07-23 01:01:38 +00003496 if (LHS && RHS) // We have 2 user-defined types.
3497 return canAssignObjCInterfaces(LHS, RHS);
3498
3499 return false;
Steve Naroff14108da2009-07-10 23:34:53 +00003500}
3501
Eli Friedman3d815e72008-08-22 00:56:42 +00003502bool ASTContext::canAssignObjCInterfaces(const ObjCInterfaceType *LHS,
3503 const ObjCInterfaceType *RHS) {
Chris Lattner6ac46a42008-04-07 06:51:04 +00003504 // Verify that the base decls are compatible: the RHS must be a subclass of
3505 // the LHS.
3506 if (!LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
3507 return false;
3508
3509 // RHS must have a superset of the protocols in the LHS. If the LHS is not
3510 // protocol qualified at all, then we are good.
Steve Naroffc15cb2a2009-07-18 15:33:26 +00003511 if (LHS->getNumProtocols() == 0)
Chris Lattner6ac46a42008-04-07 06:51:04 +00003512 return true;
3513
3514 // Okay, we know the LHS has protocol qualifiers. If the RHS doesn't, then it
3515 // isn't a superset.
Steve Naroffc15cb2a2009-07-18 15:33:26 +00003516 if (RHS->getNumProtocols() == 0)
Chris Lattner6ac46a42008-04-07 06:51:04 +00003517 return true; // FIXME: should return false!
3518
Steve Naroffc15cb2a2009-07-18 15:33:26 +00003519 for (ObjCInterfaceType::qual_iterator LHSPI = LHS->qual_begin(),
3520 LHSPE = LHS->qual_end();
Steve Naroff91b0b0c2009-03-01 16:12:44 +00003521 LHSPI != LHSPE; LHSPI++) {
3522 bool RHSImplementsProtocol = false;
3523
3524 // If the RHS doesn't implement the protocol on the left, the types
3525 // are incompatible.
Steve Naroffc15cb2a2009-07-18 15:33:26 +00003526 for (ObjCInterfaceType::qual_iterator RHSPI = RHS->qual_begin(),
Steve Naroff4084c302009-07-23 01:01:38 +00003527 RHSPE = RHS->qual_end();
Steve Naroff8f167562009-07-16 16:21:02 +00003528 RHSPI != RHSPE; RHSPI++) {
3529 if ((*RHSPI)->lookupProtocolNamed((*LHSPI)->getIdentifier())) {
Steve Naroff91b0b0c2009-03-01 16:12:44 +00003530 RHSImplementsProtocol = true;
Steve Naroff8f167562009-07-16 16:21:02 +00003531 break;
3532 }
Steve Naroff91b0b0c2009-03-01 16:12:44 +00003533 }
3534 // FIXME: For better diagnostics, consider passing back the protocol name.
3535 if (!RHSImplementsProtocol)
3536 return false;
Chris Lattner6ac46a42008-04-07 06:51:04 +00003537 }
Steve Naroff91b0b0c2009-03-01 16:12:44 +00003538 // The RHS implements all protocols listed on the LHS.
3539 return true;
Chris Lattner6ac46a42008-04-07 06:51:04 +00003540}
3541
Steve Naroff389bf462009-02-12 17:52:19 +00003542bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) {
3543 // get the "pointed to" types
Steve Naroff14108da2009-07-10 23:34:53 +00003544 const ObjCObjectPointerType *LHSOPT = LHS->getAsObjCObjectPointerType();
3545 const ObjCObjectPointerType *RHSOPT = RHS->getAsObjCObjectPointerType();
Steve Naroff389bf462009-02-12 17:52:19 +00003546
Steve Naroff14108da2009-07-10 23:34:53 +00003547 if (!LHSOPT || !RHSOPT)
Steve Naroff389bf462009-02-12 17:52:19 +00003548 return false;
Steve Naroff14108da2009-07-10 23:34:53 +00003549
3550 return canAssignObjCInterfaces(LHSOPT, RHSOPT) ||
3551 canAssignObjCInterfaces(RHSOPT, LHSOPT);
Steve Naroff389bf462009-02-12 17:52:19 +00003552}
3553
Steve Naroffec0550f2007-10-15 20:41:53 +00003554/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
3555/// both shall have the identically qualified version of a compatible type.
3556/// C99 6.2.7p1: Two types have compatible types if their types are the
3557/// same. See 6.7.[2,3,5] for additional rules.
Eli Friedman3d815e72008-08-22 00:56:42 +00003558bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS) {
3559 return !mergeTypes(LHS, RHS).isNull();
3560}
3561
3562QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs) {
3563 const FunctionType *lbase = lhs->getAsFunctionType();
3564 const FunctionType *rbase = rhs->getAsFunctionType();
Douglas Gregor72564e72009-02-26 23:50:07 +00003565 const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase);
3566 const FunctionProtoType *rproto = dyn_cast<FunctionProtoType>(rbase);
Eli Friedman3d815e72008-08-22 00:56:42 +00003567 bool allLTypes = true;
3568 bool allRTypes = true;
3569
3570 // Check return type
3571 QualType retType = mergeTypes(lbase->getResultType(), rbase->getResultType());
3572 if (retType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00003573 if (getCanonicalType(retType) != getCanonicalType(lbase->getResultType()))
3574 allLTypes = false;
3575 if (getCanonicalType(retType) != getCanonicalType(rbase->getResultType()))
3576 allRTypes = false;
Mike Stump6dcbc292009-07-25 23:24:03 +00003577 // FIXME: double check this
Mike Stump24556362009-07-25 21:26:53 +00003578 bool NoReturn = lbase->getNoReturnAttr() || rbase->getNoReturnAttr();
3579 if (NoReturn != lbase->getNoReturnAttr())
3580 allLTypes = false;
3581 if (NoReturn != rbase->getNoReturnAttr())
3582 allRTypes = false;
3583
Eli Friedman3d815e72008-08-22 00:56:42 +00003584 if (lproto && rproto) { // two C99 style function prototypes
Sebastian Redl465226e2009-05-27 22:11:52 +00003585 assert(!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec() &&
3586 "C++ shouldn't be here");
Eli Friedman3d815e72008-08-22 00:56:42 +00003587 unsigned lproto_nargs = lproto->getNumArgs();
3588 unsigned rproto_nargs = rproto->getNumArgs();
3589
3590 // Compatible functions must have the same number of arguments
3591 if (lproto_nargs != rproto_nargs)
3592 return QualType();
3593
3594 // Variadic and non-variadic functions aren't compatible
3595 if (lproto->isVariadic() != rproto->isVariadic())
3596 return QualType();
3597
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00003598 if (lproto->getTypeQuals() != rproto->getTypeQuals())
3599 return QualType();
3600
Eli Friedman3d815e72008-08-22 00:56:42 +00003601 // Check argument compatibility
3602 llvm::SmallVector<QualType, 10> types;
3603 for (unsigned i = 0; i < lproto_nargs; i++) {
3604 QualType largtype = lproto->getArgType(i).getUnqualifiedType();
3605 QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
3606 QualType argtype = mergeTypes(largtype, rargtype);
3607 if (argtype.isNull()) return QualType();
3608 types.push_back(argtype);
Chris Lattner61710852008-10-05 17:34:18 +00003609 if (getCanonicalType(argtype) != getCanonicalType(largtype))
3610 allLTypes = false;
3611 if (getCanonicalType(argtype) != getCanonicalType(rargtype))
3612 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00003613 }
3614 if (allLTypes) return lhs;
3615 if (allRTypes) return rhs;
3616 return getFunctionType(retType, types.begin(), types.size(),
Mike Stump24556362009-07-25 21:26:53 +00003617 lproto->isVariadic(), lproto->getTypeQuals(),
3618 NoReturn);
Eli Friedman3d815e72008-08-22 00:56:42 +00003619 }
3620
3621 if (lproto) allRTypes = false;
3622 if (rproto) allLTypes = false;
3623
Douglas Gregor72564e72009-02-26 23:50:07 +00003624 const FunctionProtoType *proto = lproto ? lproto : rproto;
Eli Friedman3d815e72008-08-22 00:56:42 +00003625 if (proto) {
Sebastian Redl465226e2009-05-27 22:11:52 +00003626 assert(!proto->hasExceptionSpec() && "C++ shouldn't be here");
Eli Friedman3d815e72008-08-22 00:56:42 +00003627 if (proto->isVariadic()) return QualType();
3628 // Check that the types are compatible with the types that
3629 // would result from default argument promotions (C99 6.7.5.3p15).
3630 // The only types actually affected are promotable integer
3631 // types and floats, which would be passed as a different
3632 // type depending on whether the prototype is visible.
3633 unsigned proto_nargs = proto->getNumArgs();
3634 for (unsigned i = 0; i < proto_nargs; ++i) {
3635 QualType argTy = proto->getArgType(i);
3636 if (argTy->isPromotableIntegerType() ||
3637 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
3638 return QualType();
3639 }
3640
3641 if (allLTypes) return lhs;
3642 if (allRTypes) return rhs;
3643 return getFunctionType(retType, proto->arg_type_begin(),
Mike Stump2d3c1912009-07-27 00:44:23 +00003644 proto->getNumArgs(), proto->isVariadic(),
3645 proto->getTypeQuals(), NoReturn);
Eli Friedman3d815e72008-08-22 00:56:42 +00003646 }
3647
3648 if (allLTypes) return lhs;
3649 if (allRTypes) return rhs;
Mike Stump24556362009-07-25 21:26:53 +00003650 return getFunctionNoProtoType(retType, NoReturn);
Eli Friedman3d815e72008-08-22 00:56:42 +00003651}
3652
3653QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
Bill Wendling43d69752007-12-03 07:33:35 +00003654 // C++ [expr]: If an expression initially has the type "reference to T", the
3655 // type is adjusted to "T" prior to any further analysis, the expression
3656 // designates the object or function denoted by the reference, and the
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003657 // expression is an lvalue unless the reference is an rvalue reference and
3658 // the expression is a function call (possibly inside parentheses).
Eli Friedman3d815e72008-08-22 00:56:42 +00003659 // FIXME: C++ shouldn't be going through here! The rules are different
3660 // enough that they should be handled separately.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003661 // FIXME: Merging of lvalue and rvalue references is incorrect. C++ *really*
3662 // shouldn't be going through here!
Ted Kremenek6217b802009-07-29 21:53:49 +00003663 if (const ReferenceType *RT = LHS->getAs<ReferenceType>())
Chris Lattnerc4e40592008-04-07 04:07:56 +00003664 LHS = RT->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003665 if (const ReferenceType *RT = RHS->getAs<ReferenceType>())
Chris Lattnerc4e40592008-04-07 04:07:56 +00003666 RHS = RT->getPointeeType();
Chris Lattnerf3692dc2008-04-07 05:37:56 +00003667
Eli Friedman3d815e72008-08-22 00:56:42 +00003668 QualType LHSCan = getCanonicalType(LHS),
3669 RHSCan = getCanonicalType(RHS);
3670
3671 // If two types are identical, they are compatible.
3672 if (LHSCan == RHSCan)
3673 return LHS;
3674
3675 // If the qualifiers are different, the types aren't compatible
Eli Friedman5a61f0e2009-02-27 23:04:43 +00003676 // Note that we handle extended qualifiers later, in the
3677 // case for ExtQualType.
3678 if (LHSCan.getCVRQualifiers() != RHSCan.getCVRQualifiers())
Eli Friedman3d815e72008-08-22 00:56:42 +00003679 return QualType();
3680
Eli Friedman852d63b2009-06-01 01:22:52 +00003681 Type::TypeClass LHSClass = LHSCan->getTypeClass();
3682 Type::TypeClass RHSClass = RHSCan->getTypeClass();
Eli Friedman3d815e72008-08-22 00:56:42 +00003683
Chris Lattner1adb8832008-01-14 05:45:46 +00003684 // We want to consider the two function types to be the same for these
3685 // comparisons, just force one to the other.
3686 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
3687 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman4c721d32008-02-12 08:23:06 +00003688
Eli Friedman07d25872009-06-02 05:28:56 +00003689 // Strip off objc_gc attributes off the top level so they can be merged.
3690 // This is a complete mess, but the attribute itself doesn't make much sense.
Fariborz Jahanian585f7b22009-06-02 01:40:22 +00003691 if (RHSClass == Type::ExtQual) {
Eli Friedman07d25872009-06-02 05:28:56 +00003692 QualType::GCAttrTypes GCAttr = RHSCan.getObjCGCAttr();
3693 if (GCAttr != QualType::GCNone) {
Fariborz Jahanian86f43852009-06-02 20:58:58 +00003694 QualType::GCAttrTypes GCLHSAttr = LHSCan.getObjCGCAttr();
Fariborz Jahanian8df7a282009-06-02 18:32:00 +00003695 // __weak attribute must appear on both declarations.
Fariborz Jahanian86f43852009-06-02 20:58:58 +00003696 // __strong attribue is redundant if other decl is an objective-c
3697 // object pointer (or decorated with __strong attribute); otherwise
3698 // issue error.
3699 if ((GCAttr == QualType::Weak && GCLHSAttr != GCAttr) ||
3700 (GCAttr == QualType::Strong && GCLHSAttr != GCAttr &&
Steve Naroff14108da2009-07-10 23:34:53 +00003701 !LHSCan->isObjCObjectPointerType()))
Fariborz Jahanian8df7a282009-06-02 18:32:00 +00003702 return QualType();
3703
Eli Friedman07d25872009-06-02 05:28:56 +00003704 RHS = QualType(cast<ExtQualType>(RHS.getDesugaredType())->getBaseType(),
3705 RHS.getCVRQualifiers());
3706 QualType Result = mergeTypes(LHS, RHS);
Fariborz Jahanian8df7a282009-06-02 18:32:00 +00003707 if (!Result.isNull()) {
3708 if (Result.getObjCGCAttr() == QualType::GCNone)
3709 Result = getObjCGCQualType(Result, GCAttr);
3710 else if (Result.getObjCGCAttr() != GCAttr)
3711 Result = QualType();
3712 }
Eli Friedman07d25872009-06-02 05:28:56 +00003713 return Result;
3714 }
Fariborz Jahanian585f7b22009-06-02 01:40:22 +00003715 }
Fariborz Jahanian585f7b22009-06-02 01:40:22 +00003716 if (LHSClass == Type::ExtQual) {
Eli Friedman07d25872009-06-02 05:28:56 +00003717 QualType::GCAttrTypes GCAttr = LHSCan.getObjCGCAttr();
3718 if (GCAttr != QualType::GCNone) {
Fariborz Jahanian8df7a282009-06-02 18:32:00 +00003719 QualType::GCAttrTypes GCRHSAttr = RHSCan.getObjCGCAttr();
3720 // __weak attribute must appear on both declarations. __strong
Fariborz Jahanian86f43852009-06-02 20:58:58 +00003721 // __strong attribue is redundant if other decl is an objective-c
3722 // object pointer (or decorated with __strong attribute); otherwise
3723 // issue error.
3724 if ((GCAttr == QualType::Weak && GCRHSAttr != GCAttr) ||
3725 (GCAttr == QualType::Strong && GCRHSAttr != GCAttr &&
Steve Naroff14108da2009-07-10 23:34:53 +00003726 !RHSCan->isObjCObjectPointerType()))
Fariborz Jahanian8df7a282009-06-02 18:32:00 +00003727 return QualType();
Fariborz Jahanian86f43852009-06-02 20:58:58 +00003728
Eli Friedman07d25872009-06-02 05:28:56 +00003729 LHS = QualType(cast<ExtQualType>(LHS.getDesugaredType())->getBaseType(),
3730 LHS.getCVRQualifiers());
3731 QualType Result = mergeTypes(LHS, RHS);
Fariborz Jahanian8df7a282009-06-02 18:32:00 +00003732 if (!Result.isNull()) {
3733 if (Result.getObjCGCAttr() == QualType::GCNone)
3734 Result = getObjCGCQualType(Result, GCAttr);
3735 else if (Result.getObjCGCAttr() != GCAttr)
3736 Result = QualType();
3737 }
Eli Friedman354e53d2009-06-02 07:45:37 +00003738 return Result;
Eli Friedman07d25872009-06-02 05:28:56 +00003739 }
Fariborz Jahanian585f7b22009-06-02 01:40:22 +00003740 }
3741
Eli Friedman4c721d32008-02-12 08:23:06 +00003742 // Same as above for arrays
Chris Lattnera36a61f2008-04-07 05:43:21 +00003743 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
3744 LHSClass = Type::ConstantArray;
3745 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
3746 RHSClass = Type::ConstantArray;
Steve Naroffec0550f2007-10-15 20:41:53 +00003747
Nate Begeman213541a2008-04-18 23:10:10 +00003748 // Canonicalize ExtVector -> Vector.
3749 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
3750 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
Chris Lattnera36a61f2008-04-07 05:43:21 +00003751
3752 // If the canonical type classes don't match.
Chris Lattner1adb8832008-01-14 05:45:46 +00003753 if (LHSClass != RHSClass) {
Chris Lattner1adb8832008-01-14 05:45:46 +00003754 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
3755 // a signed integer type, or an unsigned integer type.
Eli Friedman3d815e72008-08-22 00:56:42 +00003756 if (const EnumType* ETy = LHS->getAsEnumType()) {
3757 if (ETy->getDecl()->getIntegerType() == RHSCan.getUnqualifiedType())
3758 return RHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00003759 }
Eli Friedman3d815e72008-08-22 00:56:42 +00003760 if (const EnumType* ETy = RHS->getAsEnumType()) {
3761 if (ETy->getDecl()->getIntegerType() == LHSCan.getUnqualifiedType())
3762 return LHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00003763 }
Chris Lattner1adb8832008-01-14 05:45:46 +00003764
Eli Friedman3d815e72008-08-22 00:56:42 +00003765 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00003766 }
Eli Friedman3d815e72008-08-22 00:56:42 +00003767
Steve Naroff4a746782008-01-09 22:43:08 +00003768 // The canonical type classes match.
Chris Lattner1adb8832008-01-14 05:45:46 +00003769 switch (LHSClass) {
Douglas Gregor72564e72009-02-26 23:50:07 +00003770#define TYPE(Class, Base)
3771#define ABSTRACT_TYPE(Class, Base)
3772#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
3773#define DEPENDENT_TYPE(Class, Base) case Type::Class:
3774#include "clang/AST/TypeNodes.def"
3775 assert(false && "Non-canonical and dependent types shouldn't get here");
3776 return QualType();
3777
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003778 case Type::LValueReference:
3779 case Type::RValueReference:
Douglas Gregor72564e72009-02-26 23:50:07 +00003780 case Type::MemberPointer:
3781 assert(false && "C++ should never be in mergeTypes");
3782 return QualType();
3783
3784 case Type::IncompleteArray:
3785 case Type::VariableArray:
3786 case Type::FunctionProto:
3787 case Type::ExtVector:
Douglas Gregor72564e72009-02-26 23:50:07 +00003788 assert(false && "Types are eliminated above");
3789 return QualType();
3790
Chris Lattner1adb8832008-01-14 05:45:46 +00003791 case Type::Pointer:
Eli Friedman3d815e72008-08-22 00:56:42 +00003792 {
3793 // Merge two pointer types, while trying to preserve typedef info
Ted Kremenek6217b802009-07-29 21:53:49 +00003794 QualType LHSPointee = LHS->getAs<PointerType>()->getPointeeType();
3795 QualType RHSPointee = RHS->getAs<PointerType>()->getPointeeType();
Eli Friedman3d815e72008-08-22 00:56:42 +00003796 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
3797 if (ResultType.isNull()) return QualType();
Eli Friedman07d25872009-06-02 05:28:56 +00003798 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
Chris Lattner61710852008-10-05 17:34:18 +00003799 return LHS;
Eli Friedman07d25872009-06-02 05:28:56 +00003800 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
Chris Lattner61710852008-10-05 17:34:18 +00003801 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00003802 return getPointerType(ResultType);
3803 }
Steve Naroffc0febd52008-12-10 17:49:55 +00003804 case Type::BlockPointer:
3805 {
3806 // Merge two block pointer types, while trying to preserve typedef info
Ted Kremenek6217b802009-07-29 21:53:49 +00003807 QualType LHSPointee = LHS->getAs<BlockPointerType>()->getPointeeType();
3808 QualType RHSPointee = RHS->getAs<BlockPointerType>()->getPointeeType();
Steve Naroffc0febd52008-12-10 17:49:55 +00003809 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
3810 if (ResultType.isNull()) return QualType();
3811 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
3812 return LHS;
3813 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
3814 return RHS;
3815 return getBlockPointerType(ResultType);
3816 }
Chris Lattner1adb8832008-01-14 05:45:46 +00003817 case Type::ConstantArray:
Eli Friedman3d815e72008-08-22 00:56:42 +00003818 {
3819 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
3820 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
3821 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
3822 return QualType();
3823
3824 QualType LHSElem = getAsArrayType(LHS)->getElementType();
3825 QualType RHSElem = getAsArrayType(RHS)->getElementType();
3826 QualType ResultType = mergeTypes(LHSElem, RHSElem);
3827 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00003828 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
3829 return LHS;
3830 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
3831 return RHS;
Eli Friedman3bc0f452008-08-22 01:48:21 +00003832 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
3833 ArrayType::ArraySizeModifier(), 0);
3834 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
3835 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00003836 const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
3837 const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
Chris Lattner61710852008-10-05 17:34:18 +00003838 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
3839 return LHS;
3840 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
3841 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00003842 if (LVAT) {
3843 // FIXME: This isn't correct! But tricky to implement because
3844 // the array's size has to be the size of LHS, but the type
3845 // has to be different.
3846 return LHS;
3847 }
3848 if (RVAT) {
3849 // FIXME: This isn't correct! But tricky to implement because
3850 // the array's size has to be the size of RHS, but the type
3851 // has to be different.
3852 return RHS;
3853 }
Eli Friedman3bc0f452008-08-22 01:48:21 +00003854 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
3855 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00003856 return getIncompleteArrayType(ResultType,
3857 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00003858 }
Chris Lattner1adb8832008-01-14 05:45:46 +00003859 case Type::FunctionNoProto:
Eli Friedman3d815e72008-08-22 00:56:42 +00003860 return mergeFunctionTypes(LHS, RHS);
Douglas Gregor72564e72009-02-26 23:50:07 +00003861 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00003862 case Type::Enum:
Eli Friedman3d815e72008-08-22 00:56:42 +00003863 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00003864 case Type::Builtin:
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00003865 // Only exactly equal builtin types are compatible, which is tested above.
Eli Friedman3d815e72008-08-22 00:56:42 +00003866 return QualType();
Daniel Dunbar64cfdb72009-01-28 21:22:12 +00003867 case Type::Complex:
3868 // Distinct complex types are incompatible.
3869 return QualType();
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00003870 case Type::Vector:
Eli Friedman5a61f0e2009-02-27 23:04:43 +00003871 // FIXME: The merged type should be an ExtVector!
Eli Friedman3d815e72008-08-22 00:56:42 +00003872 if (areCompatVectorTypes(LHS->getAsVectorType(), RHS->getAsVectorType()))
3873 return LHS;
Chris Lattner61710852008-10-05 17:34:18 +00003874 return QualType();
Cedric Venet61490e92009-02-21 17:14:49 +00003875 case Type::ObjCInterface: {
Steve Naroff5fd659d2009-02-21 16:18:07 +00003876 // Check if the interfaces are assignment compatible.
Eli Friedman5a61f0e2009-02-27 23:04:43 +00003877 // FIXME: This should be type compatibility, e.g. whether
3878 // "LHS x; RHS x;" at global scope is legal.
Steve Naroff5fd659d2009-02-21 16:18:07 +00003879 const ObjCInterfaceType* LHSIface = LHS->getAsObjCInterfaceType();
3880 const ObjCInterfaceType* RHSIface = RHS->getAsObjCInterfaceType();
3881 if (LHSIface && RHSIface &&
3882 canAssignObjCInterfaces(LHSIface, RHSIface))
3883 return LHS;
3884
Eli Friedman3d815e72008-08-22 00:56:42 +00003885 return QualType();
Cedric Venet61490e92009-02-21 17:14:49 +00003886 }
Steve Naroff14108da2009-07-10 23:34:53 +00003887 case Type::ObjCObjectPointer: {
Steve Naroff14108da2009-07-10 23:34:53 +00003888 if (canAssignObjCInterfaces(LHS->getAsObjCObjectPointerType(),
3889 RHS->getAsObjCObjectPointerType()))
3890 return LHS;
3891
Steve Naroffbc76dd02008-12-10 22:14:21 +00003892 return QualType();
Steve Naroff14108da2009-07-10 23:34:53 +00003893 }
Eli Friedman5a61f0e2009-02-27 23:04:43 +00003894 case Type::FixedWidthInt:
3895 // Distinct fixed-width integers are not compatible.
3896 return QualType();
Eli Friedman5a61f0e2009-02-27 23:04:43 +00003897 case Type::ExtQual:
3898 // FIXME: ExtQual types can be compatible even if they're not
3899 // identical!
3900 return QualType();
3901 // First attempt at an implementation, but I'm not really sure it's
3902 // right...
3903#if 0
3904 ExtQualType* LQual = cast<ExtQualType>(LHSCan);
3905 ExtQualType* RQual = cast<ExtQualType>(RHSCan);
3906 if (LQual->getAddressSpace() != RQual->getAddressSpace() ||
3907 LQual->getObjCGCAttr() != RQual->getObjCGCAttr())
3908 return QualType();
3909 QualType LHSBase, RHSBase, ResultType, ResCanUnqual;
3910 LHSBase = QualType(LQual->getBaseType(), 0);
3911 RHSBase = QualType(RQual->getBaseType(), 0);
3912 ResultType = mergeTypes(LHSBase, RHSBase);
3913 if (ResultType.isNull()) return QualType();
3914 ResCanUnqual = getCanonicalType(ResultType).getUnqualifiedType();
3915 if (LHSCan.getUnqualifiedType() == ResCanUnqual)
3916 return LHS;
3917 if (RHSCan.getUnqualifiedType() == ResCanUnqual)
3918 return RHS;
3919 ResultType = getAddrSpaceQualType(ResultType, LQual->getAddressSpace());
3920 ResultType = getObjCGCQualType(ResultType, LQual->getObjCGCAttr());
3921 ResultType.setCVRQualifiers(LHSCan.getCVRQualifiers());
3922 return ResultType;
3923#endif
Douglas Gregor7532dc62009-03-30 22:58:21 +00003924
3925 case Type::TemplateSpecialization:
3926 assert(false && "Dependent types have no size");
3927 break;
Steve Naroffec0550f2007-10-15 20:41:53 +00003928 }
Douglas Gregor72564e72009-02-26 23:50:07 +00003929
3930 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00003931}
Ted Kremenek7192f8e2007-10-31 17:10:13 +00003932
Chris Lattner5426bf62008-04-07 07:01:58 +00003933//===----------------------------------------------------------------------===//
Eli Friedmanad74a752008-06-28 06:23:08 +00003934// Integer Predicates
3935//===----------------------------------------------------------------------===//
Chris Lattner88054de2009-01-16 07:15:35 +00003936
Eli Friedmanad74a752008-06-28 06:23:08 +00003937unsigned ASTContext::getIntWidth(QualType T) {
3938 if (T == BoolTy)
3939 return 1;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003940 if (FixedWidthIntType* FWIT = dyn_cast<FixedWidthIntType>(T)) {
3941 return FWIT->getWidth();
3942 }
3943 // For builtin types, just use the standard type sizing method
Eli Friedmanad74a752008-06-28 06:23:08 +00003944 return (unsigned)getTypeSize(T);
3945}
3946
3947QualType ASTContext::getCorrespondingUnsignedType(QualType T) {
3948 assert(T->isSignedIntegerType() && "Unexpected type");
3949 if (const EnumType* ETy = T->getAsEnumType())
3950 T = ETy->getDecl()->getIntegerType();
3951 const BuiltinType* BTy = T->getAsBuiltinType();
3952 assert (BTy && "Unexpected signed integer type");
3953 switch (BTy->getKind()) {
3954 case BuiltinType::Char_S:
3955 case BuiltinType::SChar:
3956 return UnsignedCharTy;
3957 case BuiltinType::Short:
3958 return UnsignedShortTy;
3959 case BuiltinType::Int:
3960 return UnsignedIntTy;
3961 case BuiltinType::Long:
3962 return UnsignedLongTy;
3963 case BuiltinType::LongLong:
3964 return UnsignedLongLongTy;
Chris Lattner2df9ced2009-04-30 02:43:43 +00003965 case BuiltinType::Int128:
3966 return UnsignedInt128Ty;
Eli Friedmanad74a752008-06-28 06:23:08 +00003967 default:
3968 assert(0 && "Unexpected signed integer type");
3969 return QualType();
3970 }
3971}
3972
Douglas Gregor2cf26342009-04-09 22:27:44 +00003973ExternalASTSource::~ExternalASTSource() { }
3974
3975void ExternalASTSource::PrintStats() { }
Chris Lattner86df27b2009-06-14 00:45:47 +00003976
3977
3978//===----------------------------------------------------------------------===//
3979// Builtin Type Computation
3980//===----------------------------------------------------------------------===//
3981
3982/// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
3983/// pointer over the consumed characters. This returns the resultant type.
3984static QualType DecodeTypeFromStr(const char *&Str, ASTContext &Context,
3985 ASTContext::GetBuiltinTypeError &Error,
3986 bool AllowTypeModifiers = true) {
3987 // Modifiers.
3988 int HowLong = 0;
3989 bool Signed = false, Unsigned = false;
3990
3991 // Read the modifiers first.
3992 bool Done = false;
3993 while (!Done) {
3994 switch (*Str++) {
3995 default: Done = true; --Str; break;
3996 case 'S':
3997 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
3998 assert(!Signed && "Can't use 'S' modifier multiple times!");
3999 Signed = true;
4000 break;
4001 case 'U':
4002 assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
4003 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
4004 Unsigned = true;
4005 break;
4006 case 'L':
4007 assert(HowLong <= 2 && "Can't have LLLL modifier");
4008 ++HowLong;
4009 break;
4010 }
4011 }
4012
4013 QualType Type;
4014
4015 // Read the base type.
4016 switch (*Str++) {
4017 default: assert(0 && "Unknown builtin type letter!");
4018 case 'v':
4019 assert(HowLong == 0 && !Signed && !Unsigned &&
4020 "Bad modifiers used with 'v'!");
4021 Type = Context.VoidTy;
4022 break;
4023 case 'f':
4024 assert(HowLong == 0 && !Signed && !Unsigned &&
4025 "Bad modifiers used with 'f'!");
4026 Type = Context.FloatTy;
4027 break;
4028 case 'd':
4029 assert(HowLong < 2 && !Signed && !Unsigned &&
4030 "Bad modifiers used with 'd'!");
4031 if (HowLong)
4032 Type = Context.LongDoubleTy;
4033 else
4034 Type = Context.DoubleTy;
4035 break;
4036 case 's':
4037 assert(HowLong == 0 && "Bad modifiers used with 's'!");
4038 if (Unsigned)
4039 Type = Context.UnsignedShortTy;
4040 else
4041 Type = Context.ShortTy;
4042 break;
4043 case 'i':
4044 if (HowLong == 3)
4045 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
4046 else if (HowLong == 2)
4047 Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
4048 else if (HowLong == 1)
4049 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
4050 else
4051 Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
4052 break;
4053 case 'c':
4054 assert(HowLong == 0 && "Bad modifiers used with 'c'!");
4055 if (Signed)
4056 Type = Context.SignedCharTy;
4057 else if (Unsigned)
4058 Type = Context.UnsignedCharTy;
4059 else
4060 Type = Context.CharTy;
4061 break;
4062 case 'b': // boolean
4063 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
4064 Type = Context.BoolTy;
4065 break;
4066 case 'z': // size_t.
4067 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
4068 Type = Context.getSizeType();
4069 break;
4070 case 'F':
4071 Type = Context.getCFConstantStringType();
4072 break;
4073 case 'a':
4074 Type = Context.getBuiltinVaListType();
4075 assert(!Type.isNull() && "builtin va list type not initialized!");
4076 break;
4077 case 'A':
4078 // This is a "reference" to a va_list; however, what exactly
4079 // this means depends on how va_list is defined. There are two
4080 // different kinds of va_list: ones passed by value, and ones
4081 // passed by reference. An example of a by-value va_list is
4082 // x86, where va_list is a char*. An example of by-ref va_list
4083 // is x86-64, where va_list is a __va_list_tag[1]. For x86,
4084 // we want this argument to be a char*&; for x86-64, we want
4085 // it to be a __va_list_tag*.
4086 Type = Context.getBuiltinVaListType();
4087 assert(!Type.isNull() && "builtin va list type not initialized!");
4088 if (Type->isArrayType()) {
4089 Type = Context.getArrayDecayedType(Type);
4090 } else {
4091 Type = Context.getLValueReferenceType(Type);
4092 }
4093 break;
4094 case 'V': {
4095 char *End;
Chris Lattner86df27b2009-06-14 00:45:47 +00004096 unsigned NumElements = strtoul(Str, &End, 10);
4097 assert(End != Str && "Missing vector size");
4098
4099 Str = End;
4100
4101 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, false);
4102 Type = Context.getVectorType(ElementType, NumElements);
4103 break;
4104 }
Chris Lattner9a5a7e72009-07-28 22:49:34 +00004105 case 'P':
Douglas Gregorc29f77b2009-07-07 16:35:42 +00004106 Type = Context.getFILEType();
4107 if (Type.isNull()) {
Mike Stumpf711c412009-07-28 23:57:15 +00004108 Error = ASTContext::GE_Missing_stdio;
Chris Lattner86df27b2009-06-14 00:45:47 +00004109 return QualType();
4110 }
Mike Stumpfd612db2009-07-28 23:47:15 +00004111 break;
Chris Lattner9a5a7e72009-07-28 22:49:34 +00004112 case 'J':
Mike Stumpf711c412009-07-28 23:57:15 +00004113 if (Signed)
Mike Stump782fa302009-07-28 02:25:19 +00004114 Type = Context.getsigjmp_bufType();
Mike Stumpf711c412009-07-28 23:57:15 +00004115 else
4116 Type = Context.getjmp_bufType();
4117
Mike Stumpfd612db2009-07-28 23:47:15 +00004118 if (Type.isNull()) {
Mike Stumpf711c412009-07-28 23:57:15 +00004119 Error = ASTContext::GE_Missing_setjmp;
Mike Stumpfd612db2009-07-28 23:47:15 +00004120 return QualType();
4121 }
4122 break;
Mike Stump782fa302009-07-28 02:25:19 +00004123 }
Chris Lattner86df27b2009-06-14 00:45:47 +00004124
4125 if (!AllowTypeModifiers)
4126 return Type;
4127
4128 Done = false;
4129 while (!Done) {
4130 switch (*Str++) {
4131 default: Done = true; --Str; break;
4132 case '*':
4133 Type = Context.getPointerType(Type);
4134 break;
4135 case '&':
4136 Type = Context.getLValueReferenceType(Type);
4137 break;
4138 // FIXME: There's no way to have a built-in with an rvalue ref arg.
4139 case 'C':
4140 Type = Type.getQualifiedType(QualType::Const);
4141 break;
4142 }
4143 }
4144
4145 return Type;
4146}
4147
4148/// GetBuiltinType - Return the type for the specified builtin.
4149QualType ASTContext::GetBuiltinType(unsigned id,
4150 GetBuiltinTypeError &Error) {
4151 const char *TypeStr = BuiltinInfo.GetTypeString(id);
4152
4153 llvm::SmallVector<QualType, 8> ArgTypes;
4154
4155 Error = GE_None;
4156 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error);
4157 if (Error != GE_None)
4158 return QualType();
4159 while (TypeStr[0] && TypeStr[0] != '.') {
4160 QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error);
4161 if (Error != GE_None)
4162 return QualType();
4163
4164 // Do array -> pointer decay. The builtin should use the decayed type.
4165 if (Ty->isArrayType())
4166 Ty = getArrayDecayedType(Ty);
4167
4168 ArgTypes.push_back(Ty);
4169 }
4170
4171 assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
4172 "'.' should only occur at end of builtin type list!");
4173
4174 // handle untyped/variadic arguments "T c99Style();" or "T cppStyle(...);".
4175 if (ArgTypes.size() == 0 && TypeStr[0] == '.')
4176 return getFunctionNoProtoType(ResType);
4177 return getFunctionType(ResType, ArgTypes.data(), ArgTypes.size(),
4178 TypeStr[0] == '.', 0);
4179}