]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / CodeGen / CodeGenTypes.cpp
1 //===--- CodeGenTypes.cpp - Type translation for LLVM CodeGen -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This is the code that handles AST -> LLVM type lowering.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "CodeGenTypes.h"
15 #include "CGCXXABI.h"
16 #include "CGCall.h"
17 #include "CGOpenCLRuntime.h"
18 #include "CGRecordLayout.h"
19 #include "TargetInfo.h"
20 #include "clang/AST/ASTContext.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/Expr.h"
24 #include "clang/AST/RecordLayout.h"
25 #include "clang/CodeGen/CGFunctionInfo.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/IR/DerivedTypes.h"
28 #include "llvm/IR/Module.h"
29 using namespace clang;
30 using namespace CodeGen;
31
32 CodeGenTypes::CodeGenTypes(CodeGenModule &cgm)
33   : CGM(cgm), Context(cgm.getContext()), TheModule(cgm.getModule()),
34     Target(cgm.getTarget()), TheCXXABI(cgm.getCXXABI()),
35     TheABIInfo(cgm.getTargetCodeGenInfo().getABIInfo()) {
36   SkippedLayout = false;
37 }
38
39 CodeGenTypes::~CodeGenTypes() {
40   llvm::DeleteContainerSeconds(CGRecordLayouts);
41
42   for (llvm::FoldingSet<CGFunctionInfo>::iterator
43        I = FunctionInfos.begin(), E = FunctionInfos.end(); I != E; )
44     delete &*I++;
45 }
46
47 const CodeGenOptions &CodeGenTypes::getCodeGenOpts() const {
48   return CGM.getCodeGenOpts();
49 }
50
51 void CodeGenTypes::addRecordTypeName(const RecordDecl *RD,
52                                      llvm::StructType *Ty,
53                                      StringRef suffix) {
54   SmallString<256> TypeName;
55   llvm::raw_svector_ostream OS(TypeName);
56   OS << RD->getKindName() << '.';
57
58   // Name the codegen type after the typedef name
59   // if there is no tag type name available
60   if (RD->getIdentifier()) {
61     // FIXME: We should not have to check for a null decl context here.
62     // Right now we do it because the implicit Obj-C decls don't have one.
63     if (RD->getDeclContext())
64       RD->printQualifiedName(OS);
65     else
66       RD->printName(OS);
67   } else if (const TypedefNameDecl *TDD = RD->getTypedefNameForAnonDecl()) {
68     // FIXME: We should not have to check for a null decl context here.
69     // Right now we do it because the implicit Obj-C decls don't have one.
70     if (TDD->getDeclContext())
71       TDD->printQualifiedName(OS);
72     else
73       TDD->printName(OS);
74   } else
75     OS << "anon";
76
77   if (!suffix.empty())
78     OS << suffix;
79
80   Ty->setName(OS.str());
81 }
82
83 /// ConvertTypeForMem - Convert type T into a llvm::Type.  This differs from
84 /// ConvertType in that it is used to convert to the memory representation for
85 /// a type.  For example, the scalar representation for _Bool is i1, but the
86 /// memory representation is usually i8 or i32, depending on the target.
87 llvm::Type *CodeGenTypes::ConvertTypeForMem(QualType T) {
88   llvm::Type *R = ConvertType(T);
89
90   // If this is a non-bool type, don't map it.
91   if (!R->isIntegerTy(1))
92     return R;
93
94   // Otherwise, return an integer of the target-specified size.
95   return llvm::IntegerType::get(getLLVMContext(),
96                                 (unsigned)Context.getTypeSize(T));
97 }
98
99
100 /// isRecordLayoutComplete - Return true if the specified type is already
101 /// completely laid out.
102 bool CodeGenTypes::isRecordLayoutComplete(const Type *Ty) const {
103   llvm::DenseMap<const Type*, llvm::StructType *>::const_iterator I =
104   RecordDeclTypes.find(Ty);
105   return I != RecordDeclTypes.end() && !I->second->isOpaque();
106 }
107
108 static bool
109 isSafeToConvert(QualType T, CodeGenTypes &CGT,
110                 llvm::SmallPtrSet<const RecordDecl*, 16> &AlreadyChecked);
111
112
113 /// isSafeToConvert - Return true if it is safe to convert the specified record
114 /// decl to IR and lay it out, false if doing so would cause us to get into a
115 /// recursive compilation mess.
116 static bool
117 isSafeToConvert(const RecordDecl *RD, CodeGenTypes &CGT,
118                 llvm::SmallPtrSet<const RecordDecl*, 16> &AlreadyChecked) {
119   // If we have already checked this type (maybe the same type is used by-value
120   // multiple times in multiple structure fields, don't check again.
121   if (!AlreadyChecked.insert(RD).second)
122     return true;
123
124   const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr();
125
126   // If this type is already laid out, converting it is a noop.
127   if (CGT.isRecordLayoutComplete(Key)) return true;
128
129   // If this type is currently being laid out, we can't recursively compile it.
130   if (CGT.isRecordBeingLaidOut(Key))
131     return false;
132
133   // If this type would require laying out bases that are currently being laid
134   // out, don't do it.  This includes virtual base classes which get laid out
135   // when a class is translated, even though they aren't embedded by-value into
136   // the class.
137   if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
138     for (const auto &I : CRD->bases())
139       if (!isSafeToConvert(I.getType()->getAs<RecordType>()->getDecl(),
140                            CGT, AlreadyChecked))
141         return false;
142   }
143
144   // If this type would require laying out members that are currently being laid
145   // out, don't do it.
146   for (const auto *I : RD->fields())
147     if (!isSafeToConvert(I->getType(), CGT, AlreadyChecked))
148       return false;
149
150   // If there are no problems, lets do it.
151   return true;
152 }
153
154 /// isSafeToConvert - Return true if it is safe to convert this field type,
155 /// which requires the structure elements contained by-value to all be
156 /// recursively safe to convert.
157 static bool
158 isSafeToConvert(QualType T, CodeGenTypes &CGT,
159                 llvm::SmallPtrSet<const RecordDecl*, 16> &AlreadyChecked) {
160   // Strip off atomic type sugar.
161   if (const auto *AT = T->getAs<AtomicType>())
162     T = AT->getValueType();
163
164   // If this is a record, check it.
165   if (const auto *RT = T->getAs<RecordType>())
166     return isSafeToConvert(RT->getDecl(), CGT, AlreadyChecked);
167
168   // If this is an array, check the elements, which are embedded inline.
169   if (const auto *AT = CGT.getContext().getAsArrayType(T))
170     return isSafeToConvert(AT->getElementType(), CGT, AlreadyChecked);
171
172   // Otherwise, there is no concern about transforming this.  We only care about
173   // things that are contained by-value in a structure that can have another
174   // structure as a member.
175   return true;
176 }
177
178
179 /// isSafeToConvert - Return true if it is safe to convert the specified record
180 /// decl to IR and lay it out, false if doing so would cause us to get into a
181 /// recursive compilation mess.
182 static bool isSafeToConvert(const RecordDecl *RD, CodeGenTypes &CGT) {
183   // If no structs are being laid out, we can certainly do this one.
184   if (CGT.noRecordsBeingLaidOut()) return true;
185
186   llvm::SmallPtrSet<const RecordDecl*, 16> AlreadyChecked;
187   return isSafeToConvert(RD, CGT, AlreadyChecked);
188 }
189
190 /// isFuncParamTypeConvertible - Return true if the specified type in a
191 /// function parameter or result position can be converted to an IR type at this
192 /// point.  This boils down to being whether it is complete, as well as whether
193 /// we've temporarily deferred expanding the type because we're in a recursive
194 /// context.
195 bool CodeGenTypes::isFuncParamTypeConvertible(QualType Ty) {
196   // Some ABIs cannot have their member pointers represented in IR unless
197   // certain circumstances have been reached.
198   if (const auto *MPT = Ty->getAs<MemberPointerType>())
199     return getCXXABI().isMemberPointerConvertible(MPT);
200
201   // If this isn't a tagged type, we can convert it!
202   const TagType *TT = Ty->getAs<TagType>();
203   if (!TT) return true;
204
205   // Incomplete types cannot be converted.
206   if (TT->isIncompleteType())
207     return false;
208
209   // If this is an enum, then it is always safe to convert.
210   const RecordType *RT = dyn_cast<RecordType>(TT);
211   if (!RT) return true;
212
213   // Otherwise, we have to be careful.  If it is a struct that we're in the
214   // process of expanding, then we can't convert the function type.  That's ok
215   // though because we must be in a pointer context under the struct, so we can
216   // just convert it to a dummy type.
217   //
218   // We decide this by checking whether ConvertRecordDeclType returns us an
219   // opaque type for a struct that we know is defined.
220   return isSafeToConvert(RT->getDecl(), *this);
221 }
222
223
224 /// Code to verify a given function type is complete, i.e. the return type
225 /// and all of the parameter types are complete.  Also check to see if we are in
226 /// a RS_StructPointer context, and if so whether any struct types have been
227 /// pended.  If so, we don't want to ask the ABI lowering code to handle a type
228 /// that cannot be converted to an IR type.
229 bool CodeGenTypes::isFuncTypeConvertible(const FunctionType *FT) {
230   if (!isFuncParamTypeConvertible(FT->getReturnType()))
231     return false;
232
233   if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
234     for (unsigned i = 0, e = FPT->getNumParams(); i != e; i++)
235       if (!isFuncParamTypeConvertible(FPT->getParamType(i)))
236         return false;
237
238   return true;
239 }
240
241 /// UpdateCompletedType - When we find the full definition for a TagDecl,
242 /// replace the 'opaque' type we previously made for it if applicable.
243 void CodeGenTypes::UpdateCompletedType(const TagDecl *TD) {
244   // If this is an enum being completed, then we flush all non-struct types from
245   // the cache.  This allows function types and other things that may be derived
246   // from the enum to be recomputed.
247   if (const EnumDecl *ED = dyn_cast<EnumDecl>(TD)) {
248     // Only flush the cache if we've actually already converted this type.
249     if (TypeCache.count(ED->getTypeForDecl())) {
250       // Okay, we formed some types based on this.  We speculated that the enum
251       // would be lowered to i32, so we only need to flush the cache if this
252       // didn't happen.
253       if (!ConvertType(ED->getIntegerType())->isIntegerTy(32))
254         TypeCache.clear();
255     }
256     // If necessary, provide the full definition of a type only used with a
257     // declaration so far.
258     if (CGDebugInfo *DI = CGM.getModuleDebugInfo())
259       DI->completeType(ED);
260     return;
261   }
262
263   // If we completed a RecordDecl that we previously used and converted to an
264   // anonymous type, then go ahead and complete it now.
265   const RecordDecl *RD = cast<RecordDecl>(TD);
266   if (RD->isDependentType()) return;
267
268   // Only complete it if we converted it already.  If we haven't converted it
269   // yet, we'll just do it lazily.
270   if (RecordDeclTypes.count(Context.getTagDeclType(RD).getTypePtr()))
271     ConvertRecordDeclType(RD);
272
273   // If necessary, provide the full definition of a type only used with a
274   // declaration so far.
275   if (CGDebugInfo *DI = CGM.getModuleDebugInfo())
276     DI->completeType(RD);
277 }
278
279 void CodeGenTypes::RefreshTypeCacheForClass(const CXXRecordDecl *RD) {
280   QualType T = Context.getRecordType(RD);
281   T = Context.getCanonicalType(T);
282
283   const Type *Ty = T.getTypePtr();
284   if (RecordsWithOpaqueMemberPointers.count(Ty)) {
285     TypeCache.clear();
286     RecordsWithOpaqueMemberPointers.clear();
287   }
288 }
289
290 static llvm::Type *getTypeForFormat(llvm::LLVMContext &VMContext,
291                                     const llvm::fltSemantics &format,
292                                     bool UseNativeHalf = false) {
293   if (&format == &llvm::APFloat::IEEEhalf()) {
294     if (UseNativeHalf)
295       return llvm::Type::getHalfTy(VMContext);
296     else
297       return llvm::Type::getInt16Ty(VMContext);
298   }
299   if (&format == &llvm::APFloat::IEEEsingle())
300     return llvm::Type::getFloatTy(VMContext);
301   if (&format == &llvm::APFloat::IEEEdouble())
302     return llvm::Type::getDoubleTy(VMContext);
303   if (&format == &llvm::APFloat::IEEEquad())
304     return llvm::Type::getFP128Ty(VMContext);
305   if (&format == &llvm::APFloat::PPCDoubleDouble())
306     return llvm::Type::getPPC_FP128Ty(VMContext);
307   if (&format == &llvm::APFloat::x87DoubleExtended())
308     return llvm::Type::getX86_FP80Ty(VMContext);
309   llvm_unreachable("Unknown float format!");
310 }
311
312 llvm::Type *CodeGenTypes::ConvertFunctionType(QualType QFT,
313                                               const FunctionDecl *FD) {
314   assert(QFT.isCanonical());
315   const Type *Ty = QFT.getTypePtr();
316   const FunctionType *FT = cast<FunctionType>(QFT.getTypePtr());
317   // First, check whether we can build the full function type.  If the
318   // function type depends on an incomplete type (e.g. a struct or enum), we
319   // cannot lower the function type.
320   if (!isFuncTypeConvertible(FT)) {
321     // This function's type depends on an incomplete tag type.
322
323     // Force conversion of all the relevant record types, to make sure
324     // we re-convert the FunctionType when appropriate.
325     if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>())
326       ConvertRecordDeclType(RT->getDecl());
327     if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
328       for (unsigned i = 0, e = FPT->getNumParams(); i != e; i++)
329         if (const RecordType *RT = FPT->getParamType(i)->getAs<RecordType>())
330           ConvertRecordDeclType(RT->getDecl());
331
332     SkippedLayout = true;
333
334     // Return a placeholder type.
335     return llvm::StructType::get(getLLVMContext());
336   }
337
338   // While we're converting the parameter types for a function, we don't want
339   // to recursively convert any pointed-to structs.  Converting directly-used
340   // structs is ok though.
341   if (!RecordsBeingLaidOut.insert(Ty).second) {
342     SkippedLayout = true;
343     return llvm::StructType::get(getLLVMContext());
344   }
345
346   // The function type can be built; call the appropriate routines to
347   // build it.
348   const CGFunctionInfo *FI;
349   if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
350     FI = &arrangeFreeFunctionType(
351         CanQual<FunctionProtoType>::CreateUnsafe(QualType(FPT, 0)), FD);
352   } else {
353     const FunctionNoProtoType *FNPT = cast<FunctionNoProtoType>(FT);
354     FI = &arrangeFreeFunctionType(
355         CanQual<FunctionNoProtoType>::CreateUnsafe(QualType(FNPT, 0)));
356   }
357
358   llvm::Type *ResultType = nullptr;
359   // If there is something higher level prodding our CGFunctionInfo, then
360   // don't recurse into it again.
361   if (FunctionsBeingProcessed.count(FI)) {
362
363     ResultType = llvm::StructType::get(getLLVMContext());
364     SkippedLayout = true;
365   } else {
366
367     // Otherwise, we're good to go, go ahead and convert it.
368     ResultType = GetFunctionType(*FI);
369   }
370
371   RecordsBeingLaidOut.erase(Ty);
372
373   if (SkippedLayout)
374     TypeCache.clear();
375
376   if (RecordsBeingLaidOut.empty())
377     while (!DeferredRecords.empty())
378       ConvertRecordDeclType(DeferredRecords.pop_back_val());
379   return ResultType;
380 }
381
382 /// ConvertType - Convert the specified type to its LLVM form.
383 llvm::Type *CodeGenTypes::ConvertType(QualType T) {
384   T = Context.getCanonicalType(T);
385
386   const Type *Ty = T.getTypePtr();
387
388   // RecordTypes are cached and processed specially.
389   if (const RecordType *RT = dyn_cast<RecordType>(Ty))
390     return ConvertRecordDeclType(RT->getDecl());
391
392   // See if type is already cached.
393   llvm::DenseMap<const Type *, llvm::Type *>::iterator TCI = TypeCache.find(Ty);
394   // If type is found in map then use it. Otherwise, convert type T.
395   if (TCI != TypeCache.end())
396     return TCI->second;
397
398   // If we don't have it in the cache, convert it now.
399   llvm::Type *ResultType = nullptr;
400   switch (Ty->getTypeClass()) {
401   case Type::Record: // Handled above.
402 #define TYPE(Class, Base)
403 #define ABSTRACT_TYPE(Class, Base)
404 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
405 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
406 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
407 #include "clang/AST/TypeNodes.def"
408     llvm_unreachable("Non-canonical or dependent types aren't possible.");
409
410   case Type::Builtin: {
411     switch (cast<BuiltinType>(Ty)->getKind()) {
412     case BuiltinType::Void:
413     case BuiltinType::ObjCId:
414     case BuiltinType::ObjCClass:
415     case BuiltinType::ObjCSel:
416       // LLVM void type can only be used as the result of a function call.  Just
417       // map to the same as char.
418       ResultType = llvm::Type::getInt8Ty(getLLVMContext());
419       break;
420
421     case BuiltinType::Bool:
422       // Note that we always return bool as i1 for use as a scalar type.
423       ResultType = llvm::Type::getInt1Ty(getLLVMContext());
424       break;
425
426     case BuiltinType::Char_S:
427     case BuiltinType::Char_U:
428     case BuiltinType::SChar:
429     case BuiltinType::UChar:
430     case BuiltinType::Short:
431     case BuiltinType::UShort:
432     case BuiltinType::Int:
433     case BuiltinType::UInt:
434     case BuiltinType::Long:
435     case BuiltinType::ULong:
436     case BuiltinType::LongLong:
437     case BuiltinType::ULongLong:
438     case BuiltinType::WChar_S:
439     case BuiltinType::WChar_U:
440     case BuiltinType::Char8:
441     case BuiltinType::Char16:
442     case BuiltinType::Char32:
443     case BuiltinType::ShortAccum:
444     case BuiltinType::Accum:
445     case BuiltinType::LongAccum:
446     case BuiltinType::UShortAccum:
447     case BuiltinType::UAccum:
448     case BuiltinType::ULongAccum:
449     case BuiltinType::ShortFract:
450     case BuiltinType::Fract:
451     case BuiltinType::LongFract:
452     case BuiltinType::UShortFract:
453     case BuiltinType::UFract:
454     case BuiltinType::ULongFract:
455     case BuiltinType::SatShortAccum:
456     case BuiltinType::SatAccum:
457     case BuiltinType::SatLongAccum:
458     case BuiltinType::SatUShortAccum:
459     case BuiltinType::SatUAccum:
460     case BuiltinType::SatULongAccum:
461     case BuiltinType::SatShortFract:
462     case BuiltinType::SatFract:
463     case BuiltinType::SatLongFract:
464     case BuiltinType::SatUShortFract:
465     case BuiltinType::SatUFract:
466     case BuiltinType::SatULongFract:
467       ResultType = llvm::IntegerType::get(getLLVMContext(),
468                                  static_cast<unsigned>(Context.getTypeSize(T)));
469       break;
470
471     case BuiltinType::Float16:
472       ResultType =
473           getTypeForFormat(getLLVMContext(), Context.getFloatTypeSemantics(T),
474                            /* UseNativeHalf = */ true);
475       break;
476
477     case BuiltinType::Half:
478       // Half FP can either be storage-only (lowered to i16) or native.
479       ResultType = getTypeForFormat(
480           getLLVMContext(), Context.getFloatTypeSemantics(T),
481           Context.getLangOpts().NativeHalfType ||
482               !Context.getTargetInfo().useFP16ConversionIntrinsics());
483       break;
484     case BuiltinType::Float:
485     case BuiltinType::Double:
486     case BuiltinType::LongDouble:
487     case BuiltinType::Float128:
488       ResultType = getTypeForFormat(getLLVMContext(),
489                                     Context.getFloatTypeSemantics(T),
490                                     /* UseNativeHalf = */ false);
491       break;
492
493     case BuiltinType::NullPtr:
494       // Model std::nullptr_t as i8*
495       ResultType = llvm::Type::getInt8PtrTy(getLLVMContext());
496       break;
497
498     case BuiltinType::UInt128:
499     case BuiltinType::Int128:
500       ResultType = llvm::IntegerType::get(getLLVMContext(), 128);
501       break;
502
503 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
504     case BuiltinType::Id:
505 #include "clang/Basic/OpenCLImageTypes.def"
506     case BuiltinType::OCLSampler:
507     case BuiltinType::OCLEvent:
508     case BuiltinType::OCLClkEvent:
509     case BuiltinType::OCLQueue:
510     case BuiltinType::OCLReserveID:
511       ResultType = CGM.getOpenCLRuntime().convertOpenCLSpecificType(Ty);
512       break;
513
514     case BuiltinType::Dependent:
515 #define BUILTIN_TYPE(Id, SingletonId)
516 #define PLACEHOLDER_TYPE(Id, SingletonId) \
517     case BuiltinType::Id:
518 #include "clang/AST/BuiltinTypes.def"
519       llvm_unreachable("Unexpected placeholder builtin type!");
520     }
521     break;
522   }
523   case Type::Auto:
524   case Type::DeducedTemplateSpecialization:
525     llvm_unreachable("Unexpected undeduced type!");
526   case Type::Complex: {
527     llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType());
528     ResultType = llvm::StructType::get(EltTy, EltTy);
529     break;
530   }
531   case Type::LValueReference:
532   case Type::RValueReference: {
533     const ReferenceType *RTy = cast<ReferenceType>(Ty);
534     QualType ETy = RTy->getPointeeType();
535     llvm::Type *PointeeType = ConvertTypeForMem(ETy);
536     unsigned AS = Context.getTargetAddressSpace(ETy);
537     ResultType = llvm::PointerType::get(PointeeType, AS);
538     break;
539   }
540   case Type::Pointer: {
541     const PointerType *PTy = cast<PointerType>(Ty);
542     QualType ETy = PTy->getPointeeType();
543     llvm::Type *PointeeType = ConvertTypeForMem(ETy);
544     if (PointeeType->isVoidTy())
545       PointeeType = llvm::Type::getInt8Ty(getLLVMContext());
546     unsigned AS = Context.getTargetAddressSpace(ETy);
547     ResultType = llvm::PointerType::get(PointeeType, AS);
548     break;
549   }
550
551   case Type::VariableArray: {
552     const VariableArrayType *A = cast<VariableArrayType>(Ty);
553     assert(A->getIndexTypeCVRQualifiers() == 0 &&
554            "FIXME: We only handle trivial array types so far!");
555     // VLAs resolve to the innermost element type; this matches
556     // the return of alloca, and there isn't any obviously better choice.
557     ResultType = ConvertTypeForMem(A->getElementType());
558     break;
559   }
560   case Type::IncompleteArray: {
561     const IncompleteArrayType *A = cast<IncompleteArrayType>(Ty);
562     assert(A->getIndexTypeCVRQualifiers() == 0 &&
563            "FIXME: We only handle trivial array types so far!");
564     // int X[] -> [0 x int], unless the element type is not sized.  If it is
565     // unsized (e.g. an incomplete struct) just use [0 x i8].
566     ResultType = ConvertTypeForMem(A->getElementType());
567     if (!ResultType->isSized()) {
568       SkippedLayout = true;
569       ResultType = llvm::Type::getInt8Ty(getLLVMContext());
570     }
571     ResultType = llvm::ArrayType::get(ResultType, 0);
572     break;
573   }
574   case Type::ConstantArray: {
575     const ConstantArrayType *A = cast<ConstantArrayType>(Ty);
576     llvm::Type *EltTy = ConvertTypeForMem(A->getElementType());
577
578     // Lower arrays of undefined struct type to arrays of i8 just to have a
579     // concrete type.
580     if (!EltTy->isSized()) {
581       SkippedLayout = true;
582       EltTy = llvm::Type::getInt8Ty(getLLVMContext());
583     }
584
585     ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
586     break;
587   }
588   case Type::ExtVector:
589   case Type::Vector: {
590     const VectorType *VT = cast<VectorType>(Ty);
591     ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
592                                        VT->getNumElements());
593     break;
594   }
595   case Type::FunctionNoProto:
596   case Type::FunctionProto:
597     ResultType = ConvertFunctionType(T);
598     break;
599   case Type::ObjCObject:
600     ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType());
601     break;
602
603   case Type::ObjCInterface: {
604     // Objective-C interfaces are always opaque (outside of the
605     // runtime, which can do whatever it likes); we never refine
606     // these.
607     llvm::Type *&T = InterfaceTypes[cast<ObjCInterfaceType>(Ty)];
608     if (!T)
609       T = llvm::StructType::create(getLLVMContext());
610     ResultType = T;
611     break;
612   }
613
614   case Type::ObjCObjectPointer: {
615     // Protocol qualifications do not influence the LLVM type, we just return a
616     // pointer to the underlying interface type. We don't need to worry about
617     // recursive conversion.
618     llvm::Type *T =
619       ConvertTypeForMem(cast<ObjCObjectPointerType>(Ty)->getPointeeType());
620     ResultType = T->getPointerTo();
621     break;
622   }
623
624   case Type::Enum: {
625     const EnumDecl *ED = cast<EnumType>(Ty)->getDecl();
626     if (ED->isCompleteDefinition() || ED->isFixed())
627       return ConvertType(ED->getIntegerType());
628     // Return a placeholder 'i32' type.  This can be changed later when the
629     // type is defined (see UpdateCompletedType), but is likely to be the
630     // "right" answer.
631     ResultType = llvm::Type::getInt32Ty(getLLVMContext());
632     break;
633   }
634
635   case Type::BlockPointer: {
636     const QualType FTy = cast<BlockPointerType>(Ty)->getPointeeType();
637     llvm::Type *PointeeType = ConvertTypeForMem(FTy);
638     unsigned AS = Context.getTargetAddressSpace(FTy);
639     ResultType = llvm::PointerType::get(PointeeType, AS);
640     break;
641   }
642
643   case Type::MemberPointer: {
644     auto *MPTy = cast<MemberPointerType>(Ty);
645     if (!getCXXABI().isMemberPointerConvertible(MPTy)) {
646       RecordsWithOpaqueMemberPointers.insert(MPTy->getClass());
647       ResultType = llvm::StructType::create(getLLVMContext());
648     } else {
649       ResultType = getCXXABI().ConvertMemberPointerType(MPTy);
650     }
651     break;
652   }
653
654   case Type::Atomic: {
655     QualType valueType = cast<AtomicType>(Ty)->getValueType();
656     ResultType = ConvertTypeForMem(valueType);
657
658     // Pad out to the inflated size if necessary.
659     uint64_t valueSize = Context.getTypeSize(valueType);
660     uint64_t atomicSize = Context.getTypeSize(Ty);
661     if (valueSize != atomicSize) {
662       assert(valueSize < atomicSize);
663       llvm::Type *elts[] = {
664         ResultType,
665         llvm::ArrayType::get(CGM.Int8Ty, (atomicSize - valueSize) / 8)
666       };
667       ResultType = llvm::StructType::get(getLLVMContext(),
668                                          llvm::makeArrayRef(elts));
669     }
670     break;
671   }
672   case Type::Pipe: {
673     ResultType = CGM.getOpenCLRuntime().getPipeType(cast<PipeType>(Ty));
674     break;
675   }
676   }
677
678   assert(ResultType && "Didn't convert a type?");
679
680   TypeCache[Ty] = ResultType;
681   return ResultType;
682 }
683
684 bool CodeGenModule::isPaddedAtomicType(QualType type) {
685   return isPaddedAtomicType(type->castAs<AtomicType>());
686 }
687
688 bool CodeGenModule::isPaddedAtomicType(const AtomicType *type) {
689   return Context.getTypeSize(type) != Context.getTypeSize(type->getValueType());
690 }
691
692 /// ConvertRecordDeclType - Lay out a tagged decl type like struct or union.
693 llvm::StructType *CodeGenTypes::ConvertRecordDeclType(const RecordDecl *RD) {
694   // TagDecl's are not necessarily unique, instead use the (clang)
695   // type connected to the decl.
696   const Type *Key = Context.getTagDeclType(RD).getTypePtr();
697
698   llvm::StructType *&Entry = RecordDeclTypes[Key];
699
700   // If we don't have a StructType at all yet, create the forward declaration.
701   if (!Entry) {
702     Entry = llvm::StructType::create(getLLVMContext());
703     addRecordTypeName(RD, Entry, "");
704   }
705   llvm::StructType *Ty = Entry;
706
707   // If this is still a forward declaration, or the LLVM type is already
708   // complete, there's nothing more to do.
709   RD = RD->getDefinition();
710   if (!RD || !RD->isCompleteDefinition() || !Ty->isOpaque())
711     return Ty;
712
713   // If converting this type would cause us to infinitely loop, don't do it!
714   if (!isSafeToConvert(RD, *this)) {
715     DeferredRecords.push_back(RD);
716     return Ty;
717   }
718
719   // Okay, this is a definition of a type.  Compile the implementation now.
720   bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
721   (void)InsertResult;
722   assert(InsertResult && "Recursively compiling a struct?");
723
724   // Force conversion of non-virtual base classes recursively.
725   if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
726     for (const auto &I : CRD->bases()) {
727       if (I.isVirtual()) continue;
728
729       ConvertRecordDeclType(I.getType()->getAs<RecordType>()->getDecl());
730     }
731   }
732
733   // Layout fields.
734   CGRecordLayout *Layout = ComputeRecordLayout(RD, Ty);
735   CGRecordLayouts[Key] = Layout;
736
737   // We're done laying out this struct.
738   bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
739   assert(EraseResult && "struct not in RecordsBeingLaidOut set?");
740
741   // If this struct blocked a FunctionType conversion, then recompute whatever
742   // was derived from that.
743   // FIXME: This is hugely overconservative.
744   if (SkippedLayout)
745     TypeCache.clear();
746
747   // If we're done converting the outer-most record, then convert any deferred
748   // structs as well.
749   if (RecordsBeingLaidOut.empty())
750     while (!DeferredRecords.empty())
751       ConvertRecordDeclType(DeferredRecords.pop_back_val());
752
753   return Ty;
754 }
755
756 /// getCGRecordLayout - Return record layout info for the given record decl.
757 const CGRecordLayout &
758 CodeGenTypes::getCGRecordLayout(const RecordDecl *RD) {
759   const Type *Key = Context.getTagDeclType(RD).getTypePtr();
760
761   const CGRecordLayout *Layout = CGRecordLayouts.lookup(Key);
762   if (!Layout) {
763     // Compute the type information.
764     ConvertRecordDeclType(RD);
765
766     // Now try again.
767     Layout = CGRecordLayouts.lookup(Key);
768   }
769
770   assert(Layout && "Unable to find record layout information for type");
771   return *Layout;
772 }
773
774 bool CodeGenTypes::isPointerZeroInitializable(QualType T) {
775   assert((T->isAnyPointerType() || T->isBlockPointerType()) && "Invalid type");
776   return isZeroInitializable(T);
777 }
778
779 bool CodeGenTypes::isZeroInitializable(QualType T) {
780   if (T->getAs<PointerType>())
781     return Context.getTargetNullPointerValue(T) == 0;
782
783   if (const auto *AT = Context.getAsArrayType(T)) {
784     if (isa<IncompleteArrayType>(AT))
785       return true;
786     if (const auto *CAT = dyn_cast<ConstantArrayType>(AT))
787       if (Context.getConstantArrayElementCount(CAT) == 0)
788         return true;
789     T = Context.getBaseElementType(T);
790   }
791
792   // Records are non-zero-initializable if they contain any
793   // non-zero-initializable subobjects.
794   if (const RecordType *RT = T->getAs<RecordType>()) {
795     const RecordDecl *RD = RT->getDecl();
796     return isZeroInitializable(RD);
797   }
798
799   // We have to ask the ABI about member pointers.
800   if (const MemberPointerType *MPT = T->getAs<MemberPointerType>())
801     return getCXXABI().isZeroInitializable(MPT);
802
803   // Everything else is okay.
804   return true;
805 }
806
807 bool CodeGenTypes::isZeroInitializable(const RecordDecl *RD) {
808   return getCGRecordLayout(RD).isZeroInitializable();
809 }