Anders Carlsson | 5b95592 | 2009-11-24 05:51:11 +0000 | [diff] [blame] | 1 | //===--- CGClass.cpp - Emit LLVM Code for C++ classes ---------------------===// |
Anders Carlsson | 5d58a1d | 2009-09-12 04:27:24 +0000 | [diff] [blame] | 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 contains code dealing with C++ code generation of classes |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
Anders Carlsson | 2f1986b | 2009-10-06 22:43:30 +0000 | [diff] [blame] | 15 | #include "clang/AST/CXXInheritance.h" |
Anders Carlsson | 5d58a1d | 2009-09-12 04:27:24 +0000 | [diff] [blame] | 16 | #include "clang/AST/RecordLayout.h" |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 17 | #include "clang/AST/StmtCXX.h" |
Anders Carlsson | 2f1986b | 2009-10-06 22:43:30 +0000 | [diff] [blame] | 18 | |
Anders Carlsson | 5d58a1d | 2009-09-12 04:27:24 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | using namespace CodeGen; |
| 21 | |
Anders Carlsson | 2f1986b | 2009-10-06 22:43:30 +0000 | [diff] [blame] | 22 | static uint64_t |
Anders Carlsson | 34a2d38 | 2010-04-24 21:06:20 +0000 | [diff] [blame] | 23 | ComputeNonVirtualBaseClassOffset(ASTContext &Context, |
| 24 | const CXXRecordDecl *DerivedClass, |
| 25 | CXXBaseSpecifierArray::iterator Start, |
| 26 | CXXBaseSpecifierArray::iterator End) { |
| 27 | uint64_t Offset = 0; |
| 28 | |
| 29 | const CXXRecordDecl *RD = DerivedClass; |
| 30 | |
| 31 | for (CXXBaseSpecifierArray::iterator I = Start; I != End; ++I) { |
| 32 | const CXXBaseSpecifier *Base = *I; |
| 33 | assert(!Base->isVirtual() && "Should not see virtual bases here!"); |
| 34 | |
| 35 | // Get the layout. |
| 36 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 37 | |
| 38 | const CXXRecordDecl *BaseDecl = |
| 39 | cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
| 40 | |
| 41 | // Add the offset. |
| 42 | Offset += Layout.getBaseClassOffset(BaseDecl); |
| 43 | |
| 44 | RD = BaseDecl; |
| 45 | } |
| 46 | |
| 47 | // FIXME: We should not use / 8 here. |
| 48 | return Offset / 8; |
| 49 | } |
Anders Carlsson | 5d58a1d | 2009-09-12 04:27:24 +0000 | [diff] [blame] | 50 | |
Anders Carlsson | 84080ec | 2009-09-29 03:13:20 +0000 | [diff] [blame] | 51 | llvm::Constant * |
Anders Carlsson | a04efdf | 2010-04-24 21:23:59 +0000 | [diff] [blame] | 52 | CodeGenModule::GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, |
| 53 | const CXXBaseSpecifierArray &BasePath) { |
| 54 | assert(!BasePath.empty() && "Base path should not be empty!"); |
| 55 | |
| 56 | uint64_t Offset = |
| 57 | ComputeNonVirtualBaseClassOffset(getContext(), ClassDecl, |
| 58 | BasePath.begin(), BasePath.end()); |
| 59 | if (!Offset) |
| 60 | return 0; |
| 61 | |
| 62 | const llvm::Type *PtrDiffTy = |
| 63 | Types.ConvertType(getContext().getPointerDiffType()); |
| 64 | |
| 65 | return llvm::ConstantInt::get(PtrDiffTy, Offset); |
Anders Carlsson | 84080ec | 2009-09-29 03:13:20 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 68 | /// Gets the address of a direct base class within a complete object. |
John McCall | bff225e | 2010-02-16 04:15:37 +0000 | [diff] [blame] | 69 | /// This should only be used for (1) non-virtual bases or (2) virtual bases |
| 70 | /// when the type is known to be complete (e.g. in complete destructors). |
| 71 | /// |
| 72 | /// The object pointed to by 'This' is assumed to be non-null. |
| 73 | llvm::Value * |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 74 | CodeGenFunction::GetAddressOfDirectBaseInCompleteClass(llvm::Value *This, |
| 75 | const CXXRecordDecl *Derived, |
| 76 | const CXXRecordDecl *Base, |
| 77 | bool BaseIsVirtual) { |
John McCall | bff225e | 2010-02-16 04:15:37 +0000 | [diff] [blame] | 78 | // 'this' must be a pointer (in some address space) to Derived. |
| 79 | assert(This->getType()->isPointerTy() && |
| 80 | cast<llvm::PointerType>(This->getType())->getElementType() |
| 81 | == ConvertType(Derived)); |
| 82 | |
| 83 | // Compute the offset of the virtual base. |
| 84 | uint64_t Offset; |
| 85 | const ASTRecordLayout &Layout = getContext().getASTRecordLayout(Derived); |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 86 | if (BaseIsVirtual) |
John McCall | bff225e | 2010-02-16 04:15:37 +0000 | [diff] [blame] | 87 | Offset = Layout.getVBaseClassOffset(Base); |
| 88 | else |
| 89 | Offset = Layout.getBaseClassOffset(Base); |
| 90 | |
| 91 | // Shift and cast down to the base type. |
| 92 | // TODO: for complete types, this should be possible with a GEP. |
| 93 | llvm::Value *V = This; |
| 94 | if (Offset) { |
| 95 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(getLLVMContext()); |
| 96 | V = Builder.CreateBitCast(V, Int8PtrTy); |
| 97 | V = Builder.CreateConstInBoundsGEP1_64(V, Offset / 8); |
| 98 | } |
| 99 | V = Builder.CreateBitCast(V, ConvertType(Base)->getPointerTo()); |
| 100 | |
| 101 | return V; |
Anders Carlsson | d103f9f | 2010-03-28 19:40:00 +0000 | [diff] [blame] | 102 | } |
John McCall | bff225e | 2010-02-16 04:15:37 +0000 | [diff] [blame] | 103 | |
Anders Carlsson | 9dc228a | 2010-04-20 16:03:35 +0000 | [diff] [blame] | 104 | static llvm::Value * |
| 105 | ApplyNonVirtualAndVirtualOffset(CodeGenFunction &CGF, llvm::Value *ThisPtr, |
| 106 | uint64_t NonVirtual, llvm::Value *Virtual) { |
| 107 | const llvm::Type *PtrDiffTy = |
| 108 | CGF.ConvertType(CGF.getContext().getPointerDiffType()); |
| 109 | |
| 110 | llvm::Value *NonVirtualOffset = 0; |
| 111 | if (NonVirtual) |
| 112 | NonVirtualOffset = llvm::ConstantInt::get(PtrDiffTy, NonVirtual); |
| 113 | |
| 114 | llvm::Value *BaseOffset; |
| 115 | if (Virtual) { |
| 116 | if (NonVirtualOffset) |
| 117 | BaseOffset = CGF.Builder.CreateAdd(Virtual, NonVirtualOffset); |
| 118 | else |
| 119 | BaseOffset = Virtual; |
| 120 | } else |
| 121 | BaseOffset = NonVirtualOffset; |
| 122 | |
| 123 | // Apply the base offset. |
| 124 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 125 | ThisPtr = CGF.Builder.CreateBitCast(ThisPtr, Int8PtrTy); |
| 126 | ThisPtr = CGF.Builder.CreateGEP(ThisPtr, BaseOffset, "add.ptr"); |
| 127 | |
| 128 | return ThisPtr; |
| 129 | } |
| 130 | |
Anders Carlsson | 5d58a1d | 2009-09-12 04:27:24 +0000 | [diff] [blame] | 131 | llvm::Value * |
Anders Carlsson | 34a2d38 | 2010-04-24 21:06:20 +0000 | [diff] [blame] | 132 | CodeGenFunction::GetAddressOfBaseClass(llvm::Value *Value, |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 133 | const CXXRecordDecl *Derived, |
Anders Carlsson | 34a2d38 | 2010-04-24 21:06:20 +0000 | [diff] [blame] | 134 | const CXXBaseSpecifierArray &BasePath, |
| 135 | bool NullCheckValue) { |
| 136 | assert(!BasePath.empty() && "Base path should not be empty!"); |
| 137 | |
| 138 | CXXBaseSpecifierArray::iterator Start = BasePath.begin(); |
| 139 | const CXXRecordDecl *VBase = 0; |
| 140 | |
| 141 | // Get the virtual base. |
| 142 | if ((*Start)->isVirtual()) { |
| 143 | VBase = |
| 144 | cast<CXXRecordDecl>((*Start)->getType()->getAs<RecordType>()->getDecl()); |
| 145 | ++Start; |
| 146 | } |
| 147 | |
| 148 | uint64_t NonVirtualOffset = |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 149 | ComputeNonVirtualBaseClassOffset(getContext(), VBase ? VBase : Derived, |
Anders Carlsson | 34a2d38 | 2010-04-24 21:06:20 +0000 | [diff] [blame] | 150 | Start, BasePath.end()); |
| 151 | |
| 152 | // Get the base pointer type. |
| 153 | const llvm::Type *BasePtrTy = |
Anders Carlsson | fc89c31 | 2010-04-24 21:12:55 +0000 | [diff] [blame] | 154 | ConvertType((BasePath.end()[-1])->getType())->getPointerTo(); |
Anders Carlsson | 34a2d38 | 2010-04-24 21:06:20 +0000 | [diff] [blame] | 155 | |
| 156 | if (!NonVirtualOffset && !VBase) { |
| 157 | // Just cast back. |
| 158 | return Builder.CreateBitCast(Value, BasePtrTy); |
| 159 | } |
| 160 | |
| 161 | llvm::BasicBlock *CastNull = 0; |
| 162 | llvm::BasicBlock *CastNotNull = 0; |
| 163 | llvm::BasicBlock *CastEnd = 0; |
| 164 | |
| 165 | if (NullCheckValue) { |
| 166 | CastNull = createBasicBlock("cast.null"); |
| 167 | CastNotNull = createBasicBlock("cast.notnull"); |
| 168 | CastEnd = createBasicBlock("cast.end"); |
| 169 | |
| 170 | llvm::Value *IsNull = |
| 171 | Builder.CreateICmpEQ(Value, |
| 172 | llvm::Constant::getNullValue(Value->getType())); |
| 173 | Builder.CreateCondBr(IsNull, CastNull, CastNotNull); |
| 174 | EmitBlock(CastNotNull); |
| 175 | } |
| 176 | |
| 177 | llvm::Value *VirtualOffset = 0; |
| 178 | |
| 179 | if (VBase) |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 180 | VirtualOffset = GetVirtualBaseClassOffset(Value, Derived, VBase); |
Anders Carlsson | 34a2d38 | 2010-04-24 21:06:20 +0000 | [diff] [blame] | 181 | |
| 182 | // Apply the offsets. |
| 183 | Value = ApplyNonVirtualAndVirtualOffset(*this, Value, NonVirtualOffset, |
| 184 | VirtualOffset); |
| 185 | |
| 186 | // Cast back. |
| 187 | Value = Builder.CreateBitCast(Value, BasePtrTy); |
| 188 | |
| 189 | if (NullCheckValue) { |
| 190 | Builder.CreateBr(CastEnd); |
| 191 | EmitBlock(CastNull); |
| 192 | Builder.CreateBr(CastEnd); |
| 193 | EmitBlock(CastEnd); |
| 194 | |
| 195 | llvm::PHINode *PHI = Builder.CreatePHI(Value->getType()); |
| 196 | PHI->reserveOperandSpace(2); |
| 197 | PHI->addIncoming(Value, CastNotNull); |
| 198 | PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), |
| 199 | CastNull); |
| 200 | Value = PHI; |
| 201 | } |
| 202 | |
| 203 | return Value; |
| 204 | } |
| 205 | |
| 206 | llvm::Value * |
Anders Carlsson | a3697c9 | 2009-11-23 17:57:54 +0000 | [diff] [blame] | 207 | CodeGenFunction::GetAddressOfDerivedClass(llvm::Value *Value, |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 208 | const CXXRecordDecl *Derived, |
Anders Carlsson | a04efdf | 2010-04-24 21:23:59 +0000 | [diff] [blame] | 209 | const CXXBaseSpecifierArray &BasePath, |
Anders Carlsson | a3697c9 | 2009-11-23 17:57:54 +0000 | [diff] [blame] | 210 | bool NullCheckValue) { |
Anders Carlsson | a04efdf | 2010-04-24 21:23:59 +0000 | [diff] [blame] | 211 | assert(!BasePath.empty() && "Base path should not be empty!"); |
| 212 | |
Anders Carlsson | a3697c9 | 2009-11-23 17:57:54 +0000 | [diff] [blame] | 213 | QualType DerivedTy = |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 214 | getContext().getCanonicalType(getContext().getTagDeclType(Derived)); |
Anders Carlsson | a3697c9 | 2009-11-23 17:57:54 +0000 | [diff] [blame] | 215 | const llvm::Type *DerivedPtrTy = ConvertType(DerivedTy)->getPointerTo(); |
| 216 | |
Anders Carlsson | a552ea7 | 2010-01-31 01:43:37 +0000 | [diff] [blame] | 217 | llvm::Value *NonVirtualOffset = |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 218 | CGM.GetNonVirtualBaseClassOffset(Derived, BasePath); |
Anders Carlsson | a552ea7 | 2010-01-31 01:43:37 +0000 | [diff] [blame] | 219 | |
| 220 | if (!NonVirtualOffset) { |
| 221 | // No offset, we can just cast back. |
| 222 | return Builder.CreateBitCast(Value, DerivedPtrTy); |
| 223 | } |
| 224 | |
Anders Carlsson | a3697c9 | 2009-11-23 17:57:54 +0000 | [diff] [blame] | 225 | llvm::BasicBlock *CastNull = 0; |
| 226 | llvm::BasicBlock *CastNotNull = 0; |
| 227 | llvm::BasicBlock *CastEnd = 0; |
| 228 | |
| 229 | if (NullCheckValue) { |
| 230 | CastNull = createBasicBlock("cast.null"); |
| 231 | CastNotNull = createBasicBlock("cast.notnull"); |
| 232 | CastEnd = createBasicBlock("cast.end"); |
| 233 | |
| 234 | llvm::Value *IsNull = |
| 235 | Builder.CreateICmpEQ(Value, |
| 236 | llvm::Constant::getNullValue(Value->getType())); |
| 237 | Builder.CreateCondBr(IsNull, CastNull, CastNotNull); |
| 238 | EmitBlock(CastNotNull); |
| 239 | } |
| 240 | |
Anders Carlsson | a552ea7 | 2010-01-31 01:43:37 +0000 | [diff] [blame] | 241 | // Apply the offset. |
| 242 | Value = Builder.CreatePtrToInt(Value, NonVirtualOffset->getType()); |
| 243 | Value = Builder.CreateSub(Value, NonVirtualOffset); |
| 244 | Value = Builder.CreateIntToPtr(Value, DerivedPtrTy); |
| 245 | |
| 246 | // Just cast. |
| 247 | Value = Builder.CreateBitCast(Value, DerivedPtrTy); |
Anders Carlsson | a3697c9 | 2009-11-23 17:57:54 +0000 | [diff] [blame] | 248 | |
| 249 | if (NullCheckValue) { |
| 250 | Builder.CreateBr(CastEnd); |
| 251 | EmitBlock(CastNull); |
| 252 | Builder.CreateBr(CastEnd); |
| 253 | EmitBlock(CastEnd); |
| 254 | |
| 255 | llvm::PHINode *PHI = Builder.CreatePHI(Value->getType()); |
| 256 | PHI->reserveOperandSpace(2); |
| 257 | PHI->addIncoming(Value, CastNotNull); |
| 258 | PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), |
| 259 | CastNull); |
| 260 | Value = PHI; |
| 261 | } |
| 262 | |
| 263 | return Value; |
Anders Carlsson | 5d58a1d | 2009-09-12 04:27:24 +0000 | [diff] [blame] | 264 | } |
Anders Carlsson | 21c9ad9 | 2010-03-30 03:27:09 +0000 | [diff] [blame] | 265 | |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 266 | /// GetVTTParameter - Return the VTT parameter that should be passed to a |
| 267 | /// base constructor/destructor with virtual bases. |
Anders Carlsson | 314e622 | 2010-05-02 23:33:10 +0000 | [diff] [blame] | 268 | static llvm::Value *GetVTTParameter(CodeGenFunction &CGF, GlobalDecl GD, |
| 269 | bool ForVirtualBase) { |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 270 | if (!CodeGenVTables::needsVTTParameter(GD)) { |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 271 | // This constructor/destructor does not need a VTT parameter. |
| 272 | return 0; |
| 273 | } |
| 274 | |
| 275 | const CXXRecordDecl *RD = cast<CXXMethodDecl>(CGF.CurFuncDecl)->getParent(); |
| 276 | const CXXRecordDecl *Base = cast<CXXMethodDecl>(GD.getDecl())->getParent(); |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 277 | |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 278 | llvm::Value *VTT; |
| 279 | |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 280 | uint64_t SubVTTIndex; |
| 281 | |
| 282 | // If the record matches the base, this is the complete ctor/dtor |
| 283 | // variant calling the base variant in a class with virtual bases. |
| 284 | if (RD == Base) { |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 285 | assert(!CodeGenVTables::needsVTTParameter(CGF.CurGD) && |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 286 | "doing no-op VTT offset in base dtor/ctor?"); |
Anders Carlsson | 314e622 | 2010-05-02 23:33:10 +0000 | [diff] [blame] | 287 | assert(!ForVirtualBase && "Can't have same class as virtual base!"); |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 288 | SubVTTIndex = 0; |
| 289 | } else { |
Anders Carlsson | c11bb21 | 2010-05-02 23:53:25 +0000 | [diff] [blame] | 290 | const ASTRecordLayout &Layout = |
| 291 | CGF.getContext().getASTRecordLayout(RD); |
| 292 | uint64_t BaseOffset = ForVirtualBase ? |
| 293 | Layout.getVBaseClassOffset(Base) : Layout.getBaseClassOffset(Base); |
| 294 | |
| 295 | SubVTTIndex = |
| 296 | CGF.CGM.getVTables().getSubVTTIndex(RD, BaseSubobject(Base, BaseOffset)); |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 297 | assert(SubVTTIndex != 0 && "Sub-VTT index must be greater than zero!"); |
| 298 | } |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 299 | |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 300 | if (CodeGenVTables::needsVTTParameter(CGF.CurGD)) { |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 301 | // A VTT parameter was passed to the constructor, use it. |
| 302 | VTT = CGF.LoadCXXVTT(); |
| 303 | VTT = CGF.Builder.CreateConstInBoundsGEP1_64(VTT, SubVTTIndex); |
| 304 | } else { |
| 305 | // We're the complete constructor, so get the VTT by name. |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 306 | VTT = CGF.CGM.getVTables().getVTT(RD); |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 307 | VTT = CGF.Builder.CreateConstInBoundsGEP2_64(VTT, 0, SubVTTIndex); |
| 308 | } |
| 309 | |
| 310 | return VTT; |
| 311 | } |
| 312 | |
John McCall | 182ab51 | 2010-07-21 01:23:41 +0000 | [diff] [blame] | 313 | namespace { |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 314 | /// Call the destructor for a direct base class. |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 315 | struct CallBaseDtor : EHScopeStack::Cleanup { |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 316 | const CXXRecordDecl *BaseClass; |
| 317 | bool BaseIsVirtual; |
| 318 | CallBaseDtor(const CXXRecordDecl *Base, bool BaseIsVirtual) |
| 319 | : BaseClass(Base), BaseIsVirtual(BaseIsVirtual) {} |
John McCall | 182ab51 | 2010-07-21 01:23:41 +0000 | [diff] [blame] | 320 | |
| 321 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 322 | const CXXRecordDecl *DerivedClass = |
| 323 | cast<CXXMethodDecl>(CGF.CurCodeDecl)->getParent(); |
| 324 | |
| 325 | const CXXDestructorDecl *D = BaseClass->getDestructor(); |
| 326 | llvm::Value *Addr = |
| 327 | CGF.GetAddressOfDirectBaseInCompleteClass(CGF.LoadCXXThis(), |
| 328 | DerivedClass, BaseClass, |
| 329 | BaseIsVirtual); |
| 330 | CGF.EmitCXXDestructorCall(D, Dtor_Base, BaseIsVirtual, Addr); |
John McCall | 182ab51 | 2010-07-21 01:23:41 +0000 | [diff] [blame] | 331 | } |
| 332 | }; |
| 333 | } |
| 334 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 335 | static void EmitBaseInitializer(CodeGenFunction &CGF, |
| 336 | const CXXRecordDecl *ClassDecl, |
| 337 | CXXBaseOrMemberInitializer *BaseInit, |
| 338 | CXXCtorType CtorType) { |
| 339 | assert(BaseInit->isBaseInitializer() && |
| 340 | "Must have base initializer!"); |
| 341 | |
| 342 | llvm::Value *ThisPtr = CGF.LoadCXXThis(); |
| 343 | |
| 344 | const Type *BaseType = BaseInit->getBaseClass(); |
| 345 | CXXRecordDecl *BaseClassDecl = |
| 346 | cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl()); |
| 347 | |
Anders Carlsson | 80638c5 | 2010-04-12 00:51:03 +0000 | [diff] [blame] | 348 | bool isBaseVirtual = BaseInit->isBaseVirtual(); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 349 | |
| 350 | // The base constructor doesn't construct virtual bases. |
| 351 | if (CtorType == Ctor_Base && isBaseVirtual) |
| 352 | return; |
| 353 | |
John McCall | bff225e | 2010-02-16 04:15:37 +0000 | [diff] [blame] | 354 | // We can pretend to be a complete class because it only matters for |
| 355 | // virtual bases, and we only do virtual bases for complete ctors. |
Anders Carlsson | 8561a86 | 2010-04-24 23:01:49 +0000 | [diff] [blame] | 356 | llvm::Value *V = |
| 357 | CGF.GetAddressOfDirectBaseInCompleteClass(ThisPtr, ClassDecl, |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 358 | BaseClassDecl, |
| 359 | isBaseVirtual); |
John McCall | bff225e | 2010-02-16 04:15:37 +0000 | [diff] [blame] | 360 | |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 361 | CGF.EmitAggExpr(BaseInit->getInit(), V, false, false, true); |
Anders Carlsson | 594d5e8 | 2010-02-06 20:00:21 +0000 | [diff] [blame] | 362 | |
John McCall | 182ab51 | 2010-07-21 01:23:41 +0000 | [diff] [blame] | 363 | if (CGF.Exceptions && !BaseClassDecl->hasTrivialDestructor()) |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 364 | CGF.EHStack.pushCleanup<CallBaseDtor>(EHCleanup, BaseClassDecl, |
| 365 | isBaseVirtual); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 366 | } |
| 367 | |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 368 | static void EmitAggMemberInitializer(CodeGenFunction &CGF, |
| 369 | LValue LHS, |
| 370 | llvm::Value *ArrayIndexVar, |
| 371 | CXXBaseOrMemberInitializer *MemberInit, |
| 372 | QualType T, |
| 373 | unsigned Index) { |
| 374 | if (Index == MemberInit->getNumArrayIndices()) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 375 | CodeGenFunction::RunCleanupsScope Cleanups(CGF); |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 376 | |
| 377 | llvm::Value *Dest = LHS.getAddress(); |
| 378 | if (ArrayIndexVar) { |
| 379 | // If we have an array index variable, load it and use it as an offset. |
| 380 | // Then, increment the value. |
| 381 | llvm::Value *ArrayIndex = CGF.Builder.CreateLoad(ArrayIndexVar); |
| 382 | Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress"); |
| 383 | llvm::Value *Next = llvm::ConstantInt::get(ArrayIndex->getType(), 1); |
| 384 | Next = CGF.Builder.CreateAdd(ArrayIndex, Next, "inc"); |
| 385 | CGF.Builder.CreateStore(Next, ArrayIndexVar); |
| 386 | } |
| 387 | |
| 388 | CGF.EmitAggExpr(MemberInit->getInit(), Dest, |
| 389 | LHS.isVolatileQualified(), |
| 390 | /*IgnoreResult*/ false, |
| 391 | /*IsInitializer*/ true); |
| 392 | |
| 393 | return; |
| 394 | } |
| 395 | |
| 396 | const ConstantArrayType *Array = CGF.getContext().getAsConstantArrayType(T); |
| 397 | assert(Array && "Array initialization without the array type?"); |
| 398 | llvm::Value *IndexVar |
| 399 | = CGF.GetAddrOfLocalVar(MemberInit->getArrayIndex(Index)); |
| 400 | assert(IndexVar && "Array index variable not loaded"); |
| 401 | |
| 402 | // Initialize this index variable to zero. |
| 403 | llvm::Value* Zero |
| 404 | = llvm::Constant::getNullValue( |
| 405 | CGF.ConvertType(CGF.getContext().getSizeType())); |
| 406 | CGF.Builder.CreateStore(Zero, IndexVar); |
| 407 | |
| 408 | // Start the loop with a block that tests the condition. |
| 409 | llvm::BasicBlock *CondBlock = CGF.createBasicBlock("for.cond"); |
| 410 | llvm::BasicBlock *AfterFor = CGF.createBasicBlock("for.end"); |
| 411 | |
| 412 | CGF.EmitBlock(CondBlock); |
| 413 | |
| 414 | llvm::BasicBlock *ForBody = CGF.createBasicBlock("for.body"); |
| 415 | // Generate: if (loop-index < number-of-elements) fall to the loop body, |
| 416 | // otherwise, go to the block after the for-loop. |
| 417 | uint64_t NumElements = Array->getSize().getZExtValue(); |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 418 | llvm::Value *Counter = CGF.Builder.CreateLoad(IndexVar); |
Chris Lattner | 985f739 | 2010-05-06 06:35:23 +0000 | [diff] [blame] | 419 | llvm::Value *NumElementsPtr = |
| 420 | llvm::ConstantInt::get(Counter->getType(), NumElements); |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 421 | llvm::Value *IsLess = CGF.Builder.CreateICmpULT(Counter, NumElementsPtr, |
| 422 | "isless"); |
| 423 | |
| 424 | // If the condition is true, execute the body. |
| 425 | CGF.Builder.CreateCondBr(IsLess, ForBody, AfterFor); |
| 426 | |
| 427 | CGF.EmitBlock(ForBody); |
| 428 | llvm::BasicBlock *ContinueBlock = CGF.createBasicBlock("for.inc"); |
| 429 | |
| 430 | { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 431 | CodeGenFunction::RunCleanupsScope Cleanups(CGF); |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 432 | |
| 433 | // Inside the loop body recurse to emit the inner loop or, eventually, the |
| 434 | // constructor call. |
| 435 | EmitAggMemberInitializer(CGF, LHS, ArrayIndexVar, MemberInit, |
| 436 | Array->getElementType(), Index + 1); |
| 437 | } |
| 438 | |
| 439 | CGF.EmitBlock(ContinueBlock); |
| 440 | |
| 441 | // Emit the increment of the loop counter. |
| 442 | llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1); |
| 443 | Counter = CGF.Builder.CreateLoad(IndexVar); |
| 444 | NextVal = CGF.Builder.CreateAdd(Counter, NextVal, "inc"); |
| 445 | CGF.Builder.CreateStore(NextVal, IndexVar); |
| 446 | |
| 447 | // Finally, branch back up to the condition for the next iteration. |
| 448 | CGF.EmitBranch(CondBlock); |
| 449 | |
| 450 | // Emit the fall-through block. |
| 451 | CGF.EmitBlock(AfterFor, true); |
| 452 | } |
John McCall | 182ab51 | 2010-07-21 01:23:41 +0000 | [diff] [blame] | 453 | |
| 454 | namespace { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 455 | struct CallMemberDtor : EHScopeStack::Cleanup { |
John McCall | 182ab51 | 2010-07-21 01:23:41 +0000 | [diff] [blame] | 456 | FieldDecl *Field; |
| 457 | CXXDestructorDecl *Dtor; |
| 458 | |
| 459 | CallMemberDtor(FieldDecl *Field, CXXDestructorDecl *Dtor) |
| 460 | : Field(Field), Dtor(Dtor) {} |
| 461 | |
| 462 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 463 | // FIXME: Is this OK for C++0x delegating constructors? |
| 464 | llvm::Value *ThisPtr = CGF.LoadCXXThis(); |
| 465 | LValue LHS = CGF.EmitLValueForField(ThisPtr, Field, 0); |
| 466 | |
| 467 | CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, /*ForVirtualBase=*/false, |
| 468 | LHS.getAddress()); |
| 469 | } |
| 470 | }; |
| 471 | } |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 472 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 473 | static void EmitMemberInitializer(CodeGenFunction &CGF, |
| 474 | const CXXRecordDecl *ClassDecl, |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 475 | CXXBaseOrMemberInitializer *MemberInit, |
| 476 | const CXXConstructorDecl *Constructor, |
| 477 | FunctionArgList &Args) { |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 478 | assert(MemberInit->isMemberInitializer() && |
| 479 | "Must have member initializer!"); |
| 480 | |
| 481 | // non-static data member initializers. |
| 482 | FieldDecl *Field = MemberInit->getMember(); |
| 483 | QualType FieldType = CGF.getContext().getCanonicalType(Field->getType()); |
| 484 | |
| 485 | llvm::Value *ThisPtr = CGF.LoadCXXThis(); |
John McCall | a9976d3 | 2010-05-21 01:18:57 +0000 | [diff] [blame] | 486 | LValue LHS; |
Anders Carlsson | 06a2970 | 2010-01-29 05:24:29 +0000 | [diff] [blame] | 487 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 488 | // If we are initializing an anonymous union field, drill down to the field. |
| 489 | if (MemberInit->getAnonUnionMember()) { |
| 490 | Field = MemberInit->getAnonUnionMember(); |
John McCall | a9976d3 | 2010-05-21 01:18:57 +0000 | [diff] [blame] | 491 | LHS = CGF.EmitLValueForAnonRecordField(ThisPtr, Field, 0); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 492 | FieldType = Field->getType(); |
John McCall | a9976d3 | 2010-05-21 01:18:57 +0000 | [diff] [blame] | 493 | } else { |
| 494 | LHS = CGF.EmitLValueForFieldInitialization(ThisPtr, Field, 0); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 495 | } |
| 496 | |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 497 | // FIXME: If there's no initializer and the CXXBaseOrMemberInitializer |
| 498 | // was implicitly generated, we shouldn't be zeroing memory. |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 499 | RValue RHS; |
| 500 | if (FieldType->isReferenceType()) { |
Anders Carlsson | 32f36ba | 2010-06-26 16:35:32 +0000 | [diff] [blame] | 501 | RHS = CGF.EmitReferenceBindingToExpr(MemberInit->getInit(), Field); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 502 | CGF.EmitStoreThroughLValue(RHS, LHS, FieldType); |
Eli Friedman | 3bb9412 | 2010-01-31 19:07:50 +0000 | [diff] [blame] | 503 | } else if (FieldType->isArrayType() && !MemberInit->getInit()) { |
Anders Carlsson | 1884eb0 | 2010-05-22 17:35:42 +0000 | [diff] [blame] | 504 | CGF.EmitNullInitialization(LHS.getAddress(), Field->getType()); |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 505 | } else if (!CGF.hasAggregateLLVMType(Field->getType())) { |
Eli Friedman | 0b29227 | 2010-06-03 19:58:07 +0000 | [diff] [blame] | 506 | RHS = RValue::get(CGF.EmitScalarExpr(MemberInit->getInit())); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 507 | CGF.EmitStoreThroughLValue(RHS, LHS, FieldType); |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 508 | } else if (MemberInit->getInit()->getType()->isAnyComplexType()) { |
| 509 | CGF.EmitComplexExprIntoAddr(MemberInit->getInit(), LHS.getAddress(), |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 510 | LHS.isVolatileQualified()); |
| 511 | } else { |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 512 | llvm::Value *ArrayIndexVar = 0; |
| 513 | const ConstantArrayType *Array |
| 514 | = CGF.getContext().getAsConstantArrayType(FieldType); |
| 515 | if (Array && Constructor->isImplicit() && |
| 516 | Constructor->isCopyConstructor()) { |
| 517 | const llvm::Type *SizeTy |
| 518 | = CGF.ConvertType(CGF.getContext().getSizeType()); |
| 519 | |
| 520 | // The LHS is a pointer to the first object we'll be constructing, as |
| 521 | // a flat array. |
| 522 | QualType BaseElementTy = CGF.getContext().getBaseElementType(Array); |
| 523 | const llvm::Type *BasePtr = CGF.ConvertType(BaseElementTy); |
| 524 | BasePtr = llvm::PointerType::getUnqual(BasePtr); |
| 525 | llvm::Value *BaseAddrPtr = CGF.Builder.CreateBitCast(LHS.getAddress(), |
| 526 | BasePtr); |
| 527 | LHS = LValue::MakeAddr(BaseAddrPtr, CGF.MakeQualifiers(BaseElementTy)); |
| 528 | |
| 529 | // Create an array index that will be used to walk over all of the |
| 530 | // objects we're constructing. |
| 531 | ArrayIndexVar = CGF.CreateTempAlloca(SizeTy, "object.index"); |
| 532 | llvm::Value *Zero = llvm::Constant::getNullValue(SizeTy); |
| 533 | CGF.Builder.CreateStore(Zero, ArrayIndexVar); |
| 534 | |
| 535 | // If we are copying an array of scalars or classes with trivial copy |
| 536 | // constructors, perform a single aggregate copy. |
| 537 | const RecordType *Record = BaseElementTy->getAs<RecordType>(); |
| 538 | if (!Record || |
| 539 | cast<CXXRecordDecl>(Record->getDecl())->hasTrivialCopyConstructor()) { |
| 540 | // Find the source pointer. We knows it's the last argument because |
| 541 | // we know we're in a copy constructor. |
| 542 | unsigned SrcArgIndex = Args.size() - 1; |
| 543 | llvm::Value *SrcPtr |
| 544 | = CGF.Builder.CreateLoad( |
| 545 | CGF.GetAddrOfLocalVar(Args[SrcArgIndex].first)); |
| 546 | LValue Src = CGF.EmitLValueForFieldInitialization(SrcPtr, Field, 0); |
| 547 | |
| 548 | // Copy the aggregate. |
| 549 | CGF.EmitAggregateCopy(LHS.getAddress(), Src.getAddress(), FieldType, |
| 550 | LHS.isVolatileQualified()); |
| 551 | return; |
| 552 | } |
| 553 | |
| 554 | // Emit the block variables for the array indices, if any. |
| 555 | for (unsigned I = 0, N = MemberInit->getNumArrayIndices(); I != N; ++I) |
| 556 | CGF.EmitLocalBlockVarDecl(*MemberInit->getArrayIndex(I)); |
| 557 | } |
| 558 | |
| 559 | EmitAggMemberInitializer(CGF, LHS, ArrayIndexVar, MemberInit, FieldType, 0); |
Anders Carlsson | 9405dcd | 2010-02-06 19:50:17 +0000 | [diff] [blame] | 560 | |
| 561 | if (!CGF.Exceptions) |
| 562 | return; |
| 563 | |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 564 | // FIXME: If we have an array of classes w/ non-trivial destructors, |
| 565 | // we need to destroy in reverse order of construction along the exception |
| 566 | // path. |
Anders Carlsson | 9405dcd | 2010-02-06 19:50:17 +0000 | [diff] [blame] | 567 | const RecordType *RT = FieldType->getAs<RecordType>(); |
| 568 | if (!RT) |
| 569 | return; |
| 570 | |
| 571 | CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); |
John McCall | 182ab51 | 2010-07-21 01:23:41 +0000 | [diff] [blame] | 572 | if (!RD->hasTrivialDestructor()) |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 573 | CGF.EHStack.pushCleanup<CallMemberDtor>(EHCleanup, Field, |
| 574 | RD->getDestructor()); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 575 | } |
| 576 | } |
| 577 | |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 578 | /// Checks whether the given constructor is a valid subject for the |
| 579 | /// complete-to-base constructor delegation optimization, i.e. |
| 580 | /// emitting the complete constructor as a simple call to the base |
| 581 | /// constructor. |
| 582 | static bool IsConstructorDelegationValid(const CXXConstructorDecl *Ctor) { |
| 583 | |
| 584 | // Currently we disable the optimization for classes with virtual |
| 585 | // bases because (1) the addresses of parameter variables need to be |
| 586 | // consistent across all initializers but (2) the delegate function |
| 587 | // call necessarily creates a second copy of the parameter variable. |
| 588 | // |
| 589 | // The limiting example (purely theoretical AFAIK): |
| 590 | // struct A { A(int &c) { c++; } }; |
| 591 | // struct B : virtual A { |
| 592 | // B(int count) : A(count) { printf("%d\n", count); } |
| 593 | // }; |
| 594 | // ...although even this example could in principle be emitted as a |
| 595 | // delegation since the address of the parameter doesn't escape. |
| 596 | if (Ctor->getParent()->getNumVBases()) { |
| 597 | // TODO: white-list trivial vbase initializers. This case wouldn't |
| 598 | // be subject to the restrictions below. |
| 599 | |
| 600 | // TODO: white-list cases where: |
| 601 | // - there are no non-reference parameters to the constructor |
| 602 | // - the initializers don't access any non-reference parameters |
| 603 | // - the initializers don't take the address of non-reference |
| 604 | // parameters |
| 605 | // - etc. |
| 606 | // If we ever add any of the above cases, remember that: |
| 607 | // - function-try-blocks will always blacklist this optimization |
| 608 | // - we need to perform the constructor prologue and cleanup in |
| 609 | // EmitConstructorBody. |
| 610 | |
| 611 | return false; |
| 612 | } |
| 613 | |
| 614 | // We also disable the optimization for variadic functions because |
| 615 | // it's impossible to "re-pass" varargs. |
| 616 | if (Ctor->getType()->getAs<FunctionProtoType>()->isVariadic()) |
| 617 | return false; |
| 618 | |
| 619 | return true; |
| 620 | } |
| 621 | |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 622 | /// EmitConstructorBody - Emits the body of the current constructor. |
| 623 | void CodeGenFunction::EmitConstructorBody(FunctionArgList &Args) { |
| 624 | const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(CurGD.getDecl()); |
| 625 | CXXCtorType CtorType = CurGD.getCtorType(); |
| 626 | |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 627 | // Before we go any further, try the complete->base constructor |
| 628 | // delegation optimization. |
| 629 | if (CtorType == Ctor_Complete && IsConstructorDelegationValid(Ctor)) { |
| 630 | EmitDelegateCXXConstructorCall(Ctor, Ctor_Base, Args); |
| 631 | return; |
| 632 | } |
| 633 | |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 634 | Stmt *Body = Ctor->getBody(); |
| 635 | |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 636 | // Enter the function-try-block before the constructor prologue if |
| 637 | // applicable. |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 638 | bool IsTryBody = (Body && isa<CXXTryStmt>(Body)); |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 639 | if (IsTryBody) |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 640 | EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 641 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 642 | EHScopeStack::stable_iterator CleanupDepth = EHStack.stable_begin(); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 643 | |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 644 | // Emit the constructor prologue, i.e. the base and member |
| 645 | // initializers. |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 646 | EmitCtorPrologue(Ctor, CtorType, Args); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 647 | |
| 648 | // Emit the body of the statement. |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 649 | if (IsTryBody) |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 650 | EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock()); |
| 651 | else if (Body) |
| 652 | EmitStmt(Body); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 653 | |
| 654 | // Emit any cleanup blocks associated with the member or base |
| 655 | // initializers, which includes (along the exceptional path) the |
| 656 | // destructors for those members and bases that were fully |
| 657 | // constructed. |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 658 | PopCleanupBlocks(CleanupDepth); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 659 | |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 660 | if (IsTryBody) |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 661 | ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 662 | } |
| 663 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 664 | /// EmitCtorPrologue - This routine generates necessary code to initialize |
| 665 | /// base classes and non-static data members belonging to this constructor. |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 666 | void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD, |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 667 | CXXCtorType CtorType, |
| 668 | FunctionArgList &Args) { |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 669 | const CXXRecordDecl *ClassDecl = CD->getParent(); |
Anders Carlsson | a78fa2c | 2010-02-02 19:58:43 +0000 | [diff] [blame] | 670 | |
| 671 | llvm::SmallVector<CXXBaseOrMemberInitializer *, 8> MemberInitializers; |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 672 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 673 | for (CXXConstructorDecl::init_const_iterator B = CD->init_begin(), |
| 674 | E = CD->init_end(); |
| 675 | B != E; ++B) { |
| 676 | CXXBaseOrMemberInitializer *Member = (*B); |
| 677 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 678 | if (Member->isBaseInitializer()) |
| 679 | EmitBaseInitializer(*this, ClassDecl, Member, CtorType); |
| 680 | else |
Anders Carlsson | a78fa2c | 2010-02-02 19:58:43 +0000 | [diff] [blame] | 681 | MemberInitializers.push_back(Member); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 682 | } |
| 683 | |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 684 | InitializeVTablePointers(ClassDecl); |
Anders Carlsson | a78fa2c | 2010-02-02 19:58:43 +0000 | [diff] [blame] | 685 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 686 | for (unsigned I = 0, E = MemberInitializers.size(); I != E; ++I) |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 687 | EmitMemberInitializer(*this, ClassDecl, MemberInitializers[I], CD, Args); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 688 | } |
| 689 | |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 690 | /// EmitDestructorBody - Emits the body of the current destructor. |
| 691 | void CodeGenFunction::EmitDestructorBody(FunctionArgList &Args) { |
| 692 | const CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(CurGD.getDecl()); |
| 693 | CXXDtorType DtorType = CurGD.getDtorType(); |
| 694 | |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 695 | // The call to operator delete in a deleting destructor happens |
| 696 | // outside of the function-try-block, which means it's always |
| 697 | // possible to delegate the destructor body to the complete |
| 698 | // destructor. Do so. |
| 699 | if (DtorType == Dtor_Deleting) { |
| 700 | EnterDtorCleanups(Dtor, Dtor_Deleting); |
| 701 | EmitCXXDestructorCall(Dtor, Dtor_Complete, /*ForVirtualBase=*/false, |
| 702 | LoadCXXThis()); |
| 703 | PopCleanupBlock(); |
| 704 | return; |
| 705 | } |
| 706 | |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 707 | Stmt *Body = Dtor->getBody(); |
| 708 | |
| 709 | // If the body is a function-try-block, enter the try before |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 710 | // anything else. |
| 711 | bool isTryBody = (Body && isa<CXXTryStmt>(Body)); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 712 | if (isTryBody) |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 713 | EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 714 | |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 715 | // Enter the epilogue cleanups. |
| 716 | RunCleanupsScope DtorEpilogue(*this); |
| 717 | |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 718 | // If this is the complete variant, just invoke the base variant; |
| 719 | // the epilogue will destruct the virtual bases. But we can't do |
| 720 | // this optimization if the body is a function-try-block, because |
| 721 | // we'd introduce *two* handler blocks. |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 722 | switch (DtorType) { |
| 723 | case Dtor_Deleting: llvm_unreachable("already handled deleting case"); |
| 724 | |
| 725 | case Dtor_Complete: |
| 726 | // Enter the cleanup scopes for virtual bases. |
| 727 | EnterDtorCleanups(Dtor, Dtor_Complete); |
| 728 | |
| 729 | if (!isTryBody) { |
| 730 | EmitCXXDestructorCall(Dtor, Dtor_Base, /*ForVirtualBase=*/false, |
| 731 | LoadCXXThis()); |
| 732 | break; |
| 733 | } |
| 734 | // Fallthrough: act like we're in the base variant. |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 735 | |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 736 | case Dtor_Base: |
| 737 | // Enter the cleanup scopes for fields and non-virtual bases. |
| 738 | EnterDtorCleanups(Dtor, Dtor_Base); |
| 739 | |
| 740 | // Initialize the vtable pointers before entering the body. |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 741 | InitializeVTablePointers(Dtor->getParent()); |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 742 | |
| 743 | if (isTryBody) |
| 744 | EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock()); |
| 745 | else if (Body) |
| 746 | EmitStmt(Body); |
| 747 | else { |
| 748 | assert(Dtor->isImplicit() && "bodyless dtor not implicit"); |
| 749 | // nothing to do besides what's in the epilogue |
| 750 | } |
| 751 | break; |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 752 | } |
| 753 | |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 754 | // Jump out through the epilogue cleanups. |
| 755 | DtorEpilogue.ForceCleanup(); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 756 | |
| 757 | // Exit the try if applicable. |
| 758 | if (isTryBody) |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 759 | ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 760 | } |
| 761 | |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 762 | namespace { |
| 763 | /// Call the operator delete associated with the current destructor. |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 764 | struct CallDtorDelete : EHScopeStack::Cleanup { |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 765 | CallDtorDelete() {} |
| 766 | |
| 767 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 768 | const CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(CGF.CurCodeDecl); |
| 769 | const CXXRecordDecl *ClassDecl = Dtor->getParent(); |
| 770 | CGF.EmitDeleteCall(Dtor->getOperatorDelete(), CGF.LoadCXXThis(), |
| 771 | CGF.getContext().getTagDeclType(ClassDecl)); |
| 772 | } |
| 773 | }; |
| 774 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 775 | struct CallArrayFieldDtor : EHScopeStack::Cleanup { |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 776 | const FieldDecl *Field; |
| 777 | CallArrayFieldDtor(const FieldDecl *Field) : Field(Field) {} |
| 778 | |
| 779 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 780 | QualType FieldType = Field->getType(); |
| 781 | const ConstantArrayType *Array = |
| 782 | CGF.getContext().getAsConstantArrayType(FieldType); |
| 783 | |
| 784 | QualType BaseType = |
| 785 | CGF.getContext().getBaseElementType(Array->getElementType()); |
| 786 | const CXXRecordDecl *FieldClassDecl = BaseType->getAsCXXRecordDecl(); |
| 787 | |
| 788 | llvm::Value *ThisPtr = CGF.LoadCXXThis(); |
| 789 | LValue LHS = CGF.EmitLValueForField(ThisPtr, Field, |
| 790 | // FIXME: Qualifiers? |
| 791 | /*CVRQualifiers=*/0); |
| 792 | |
| 793 | const llvm::Type *BasePtr = CGF.ConvertType(BaseType)->getPointerTo(); |
| 794 | llvm::Value *BaseAddrPtr = |
| 795 | CGF.Builder.CreateBitCast(LHS.getAddress(), BasePtr); |
| 796 | CGF.EmitCXXAggrDestructorCall(FieldClassDecl->getDestructor(), |
| 797 | Array, BaseAddrPtr); |
| 798 | } |
| 799 | }; |
| 800 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 801 | struct CallFieldDtor : EHScopeStack::Cleanup { |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 802 | const FieldDecl *Field; |
| 803 | CallFieldDtor(const FieldDecl *Field) : Field(Field) {} |
| 804 | |
| 805 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 806 | const CXXRecordDecl *FieldClassDecl = |
| 807 | Field->getType()->getAsCXXRecordDecl(); |
| 808 | |
| 809 | llvm::Value *ThisPtr = CGF.LoadCXXThis(); |
| 810 | LValue LHS = CGF.EmitLValueForField(ThisPtr, Field, |
| 811 | // FIXME: Qualifiers? |
| 812 | /*CVRQualifiers=*/0); |
| 813 | |
| 814 | CGF.EmitCXXDestructorCall(FieldClassDecl->getDestructor(), |
| 815 | Dtor_Complete, /*ForVirtualBase=*/false, |
| 816 | LHS.getAddress()); |
| 817 | } |
| 818 | }; |
| 819 | } |
| 820 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 821 | /// EmitDtorEpilogue - Emit all code that comes at the end of class's |
| 822 | /// destructor. This is to call destructors on members and base classes |
| 823 | /// in reverse order of their construction. |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 824 | void CodeGenFunction::EnterDtorCleanups(const CXXDestructorDecl *DD, |
| 825 | CXXDtorType DtorType) { |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 826 | assert(!DD->isTrivial() && |
| 827 | "Should not emit dtor epilogue for trivial dtor!"); |
| 828 | |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 829 | // The deleting-destructor phase just needs to call the appropriate |
| 830 | // operator delete that Sema picked up. |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 831 | if (DtorType == Dtor_Deleting) { |
| 832 | assert(DD->getOperatorDelete() && |
| 833 | "operator delete missing - EmitDtorEpilogue"); |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 834 | EHStack.pushCleanup<CallDtorDelete>(NormalAndEHCleanup); |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 835 | return; |
| 836 | } |
| 837 | |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 838 | const CXXRecordDecl *ClassDecl = DD->getParent(); |
| 839 | |
| 840 | // The complete-destructor phase just destructs all the virtual bases. |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 841 | if (DtorType == Dtor_Complete) { |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 842 | |
| 843 | // We push them in the forward order so that they'll be popped in |
| 844 | // the reverse order. |
| 845 | for (CXXRecordDecl::base_class_const_iterator I = |
| 846 | ClassDecl->vbases_begin(), E = ClassDecl->vbases_end(); |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 847 | I != E; ++I) { |
| 848 | const CXXBaseSpecifier &Base = *I; |
| 849 | CXXRecordDecl *BaseClassDecl |
| 850 | = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); |
| 851 | |
| 852 | // Ignore trivial destructors. |
| 853 | if (BaseClassDecl->hasTrivialDestructor()) |
| 854 | continue; |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 855 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 856 | EHStack.pushCleanup<CallBaseDtor>(NormalAndEHCleanup, |
| 857 | BaseClassDecl, |
| 858 | /*BaseIsVirtual*/ true); |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 859 | } |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 860 | |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 861 | return; |
| 862 | } |
| 863 | |
| 864 | assert(DtorType == Dtor_Base); |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 865 | |
| 866 | // Destroy non-virtual bases. |
| 867 | for (CXXRecordDecl::base_class_const_iterator I = |
| 868 | ClassDecl->bases_begin(), E = ClassDecl->bases_end(); I != E; ++I) { |
| 869 | const CXXBaseSpecifier &Base = *I; |
| 870 | |
| 871 | // Ignore virtual bases. |
| 872 | if (Base.isVirtual()) |
| 873 | continue; |
| 874 | |
| 875 | CXXRecordDecl *BaseClassDecl = Base.getType()->getAsCXXRecordDecl(); |
| 876 | |
| 877 | // Ignore trivial destructors. |
| 878 | if (BaseClassDecl->hasTrivialDestructor()) |
| 879 | continue; |
John McCall | 3b47733 | 2010-02-18 19:59:28 +0000 | [diff] [blame] | 880 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 881 | EHStack.pushCleanup<CallBaseDtor>(NormalAndEHCleanup, |
| 882 | BaseClassDecl, |
| 883 | /*BaseIsVirtual*/ false); |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | // Destroy direct fields. |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 887 | llvm::SmallVector<const FieldDecl *, 16> FieldDecls; |
| 888 | for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(), |
| 889 | E = ClassDecl->field_end(); I != E; ++I) { |
| 890 | const FieldDecl *Field = *I; |
| 891 | |
| 892 | QualType FieldType = getContext().getCanonicalType(Field->getType()); |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 893 | const ConstantArrayType *Array = |
| 894 | getContext().getAsConstantArrayType(FieldType); |
| 895 | if (Array) |
| 896 | FieldType = getContext().getBaseElementType(Array->getElementType()); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 897 | |
| 898 | const RecordType *RT = FieldType->getAs<RecordType>(); |
| 899 | if (!RT) |
| 900 | continue; |
| 901 | |
| 902 | CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); |
| 903 | if (FieldClassDecl->hasTrivialDestructor()) |
| 904 | continue; |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 905 | |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 906 | if (Array) |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 907 | EHStack.pushCleanup<CallArrayFieldDtor>(NormalAndEHCleanup, Field); |
John McCall | 50da2ca | 2010-07-21 05:30:47 +0000 | [diff] [blame] | 908 | else |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 909 | EHStack.pushCleanup<CallFieldDtor>(NormalAndEHCleanup, Field); |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 910 | } |
Anders Carlsson | 607d037 | 2009-12-24 22:46:43 +0000 | [diff] [blame] | 911 | } |
| 912 | |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 913 | /// EmitCXXAggrConstructorCall - This routine essentially creates a (nested) |
| 914 | /// for-loop to call the default constructor on individual members of the |
| 915 | /// array. |
| 916 | /// 'D' is the default constructor for elements of the array, 'ArrayTy' is the |
| 917 | /// array type and 'ArrayPtr' points to the beginning fo the array. |
| 918 | /// It is assumed that all relevant checks have been made by the caller. |
Douglas Gregor | 59174c0 | 2010-07-21 01:10:17 +0000 | [diff] [blame] | 919 | /// |
| 920 | /// \param ZeroInitialization True if each element should be zero-initialized |
| 921 | /// before it is constructed. |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 922 | void |
| 923 | CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *D, |
Douglas Gregor | 59174c0 | 2010-07-21 01:10:17 +0000 | [diff] [blame] | 924 | const ConstantArrayType *ArrayTy, |
| 925 | llvm::Value *ArrayPtr, |
| 926 | CallExpr::const_arg_iterator ArgBeg, |
| 927 | CallExpr::const_arg_iterator ArgEnd, |
| 928 | bool ZeroInitialization) { |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 929 | |
| 930 | const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); |
| 931 | llvm::Value * NumElements = |
| 932 | llvm::ConstantInt::get(SizeTy, |
| 933 | getContext().getConstantArrayElementCount(ArrayTy)); |
| 934 | |
Douglas Gregor | 59174c0 | 2010-07-21 01:10:17 +0000 | [diff] [blame] | 935 | EmitCXXAggrConstructorCall(D, NumElements, ArrayPtr, ArgBeg, ArgEnd, |
| 936 | ZeroInitialization); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 937 | } |
| 938 | |
| 939 | void |
| 940 | CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *D, |
| 941 | llvm::Value *NumElements, |
| 942 | llvm::Value *ArrayPtr, |
| 943 | CallExpr::const_arg_iterator ArgBeg, |
Douglas Gregor | 59174c0 | 2010-07-21 01:10:17 +0000 | [diff] [blame] | 944 | CallExpr::const_arg_iterator ArgEnd, |
| 945 | bool ZeroInitialization) { |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 946 | const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); |
| 947 | |
| 948 | // Create a temporary for the loop index and initialize it with 0. |
| 949 | llvm::Value *IndexPtr = CreateTempAlloca(SizeTy, "loop.index"); |
| 950 | llvm::Value *Zero = llvm::Constant::getNullValue(SizeTy); |
| 951 | Builder.CreateStore(Zero, IndexPtr); |
| 952 | |
| 953 | // Start the loop with a block that tests the condition. |
| 954 | llvm::BasicBlock *CondBlock = createBasicBlock("for.cond"); |
| 955 | llvm::BasicBlock *AfterFor = createBasicBlock("for.end"); |
| 956 | |
| 957 | EmitBlock(CondBlock); |
| 958 | |
| 959 | llvm::BasicBlock *ForBody = createBasicBlock("for.body"); |
| 960 | |
| 961 | // Generate: if (loop-index < number-of-elements fall to the loop body, |
| 962 | // otherwise, go to the block after the for-loop. |
| 963 | llvm::Value *Counter = Builder.CreateLoad(IndexPtr); |
| 964 | llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElements, "isless"); |
| 965 | // If the condition is true, execute the body. |
| 966 | Builder.CreateCondBr(IsLess, ForBody, AfterFor); |
| 967 | |
| 968 | EmitBlock(ForBody); |
| 969 | |
| 970 | llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc"); |
| 971 | // Inside the loop body, emit the constructor call on the array element. |
| 972 | Counter = Builder.CreateLoad(IndexPtr); |
| 973 | llvm::Value *Address = Builder.CreateInBoundsGEP(ArrayPtr, Counter, |
| 974 | "arrayidx"); |
| 975 | |
Douglas Gregor | 59174c0 | 2010-07-21 01:10:17 +0000 | [diff] [blame] | 976 | // Zero initialize the storage, if requested. |
| 977 | if (ZeroInitialization) |
| 978 | EmitNullInitialization(Address, |
| 979 | getContext().getTypeDeclType(D->getParent())); |
| 980 | |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 981 | // C++ [class.temporary]p4: |
| 982 | // There are two contexts in which temporaries are destroyed at a different |
| 983 | // point than the end of the full-expression. The first context is when a |
| 984 | // default constructor is called to initialize an element of an array. |
| 985 | // If the constructor has one or more default arguments, the destruction of |
| 986 | // every temporary created in a default argument expression is sequenced |
| 987 | // before the construction of the next array element, if any. |
| 988 | |
| 989 | // Keep track of the current number of live temporaries. |
Anders Carlsson | 44ec82b | 2010-03-30 03:14:41 +0000 | [diff] [blame] | 990 | { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 991 | RunCleanupsScope Scope(*this); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 992 | |
Anders Carlsson | 155ed4a | 2010-05-02 23:20:53 +0000 | [diff] [blame] | 993 | EmitCXXConstructorCall(D, Ctor_Complete, /*ForVirtualBase=*/false, Address, |
Anders Carlsson | 24eb78e | 2010-05-02 23:01:10 +0000 | [diff] [blame] | 994 | ArgBeg, ArgEnd); |
Anders Carlsson | 44ec82b | 2010-03-30 03:14:41 +0000 | [diff] [blame] | 995 | } |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 996 | |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 997 | EmitBlock(ContinueBlock); |
| 998 | |
| 999 | // Emit the increment of the loop counter. |
| 1000 | llvm::Value *NextVal = llvm::ConstantInt::get(SizeTy, 1); |
| 1001 | Counter = Builder.CreateLoad(IndexPtr); |
| 1002 | NextVal = Builder.CreateAdd(Counter, NextVal, "inc"); |
| 1003 | Builder.CreateStore(NextVal, IndexPtr); |
| 1004 | |
| 1005 | // Finally, branch back up to the condition for the next iteration. |
| 1006 | EmitBranch(CondBlock); |
| 1007 | |
| 1008 | // Emit the fall-through block. |
| 1009 | EmitBlock(AfterFor, true); |
| 1010 | } |
| 1011 | |
| 1012 | /// EmitCXXAggrDestructorCall - calls the default destructor on array |
| 1013 | /// elements in reverse order of construction. |
| 1014 | void |
| 1015 | CodeGenFunction::EmitCXXAggrDestructorCall(const CXXDestructorDecl *D, |
| 1016 | const ArrayType *Array, |
| 1017 | llvm::Value *This) { |
| 1018 | const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array); |
| 1019 | assert(CA && "Do we support VLA for destruction ?"); |
| 1020 | uint64_t ElementCount = getContext().getConstantArrayElementCount(CA); |
| 1021 | |
| 1022 | const llvm::Type *SizeLTy = ConvertType(getContext().getSizeType()); |
| 1023 | llvm::Value* ElementCountPtr = llvm::ConstantInt::get(SizeLTy, ElementCount); |
| 1024 | EmitCXXAggrDestructorCall(D, ElementCountPtr, This); |
| 1025 | } |
| 1026 | |
| 1027 | /// EmitCXXAggrDestructorCall - calls the default destructor on array |
| 1028 | /// elements in reverse order of construction. |
| 1029 | void |
| 1030 | CodeGenFunction::EmitCXXAggrDestructorCall(const CXXDestructorDecl *D, |
| 1031 | llvm::Value *UpperCount, |
| 1032 | llvm::Value *This) { |
| 1033 | const llvm::Type *SizeLTy = ConvertType(getContext().getSizeType()); |
| 1034 | llvm::Value *One = llvm::ConstantInt::get(SizeLTy, 1); |
| 1035 | |
| 1036 | // Create a temporary for the loop index and initialize it with count of |
| 1037 | // array elements. |
| 1038 | llvm::Value *IndexPtr = CreateTempAlloca(SizeLTy, "loop.index"); |
| 1039 | |
| 1040 | // Store the number of elements in the index pointer. |
| 1041 | Builder.CreateStore(UpperCount, IndexPtr); |
| 1042 | |
| 1043 | // Start the loop with a block that tests the condition. |
| 1044 | llvm::BasicBlock *CondBlock = createBasicBlock("for.cond"); |
| 1045 | llvm::BasicBlock *AfterFor = createBasicBlock("for.end"); |
| 1046 | |
| 1047 | EmitBlock(CondBlock); |
| 1048 | |
| 1049 | llvm::BasicBlock *ForBody = createBasicBlock("for.body"); |
| 1050 | |
| 1051 | // Generate: if (loop-index != 0 fall to the loop body, |
| 1052 | // otherwise, go to the block after the for-loop. |
| 1053 | llvm::Value* zeroConstant = |
| 1054 | llvm::Constant::getNullValue(SizeLTy); |
| 1055 | llvm::Value *Counter = Builder.CreateLoad(IndexPtr); |
| 1056 | llvm::Value *IsNE = Builder.CreateICmpNE(Counter, zeroConstant, |
| 1057 | "isne"); |
| 1058 | // If the condition is true, execute the body. |
| 1059 | Builder.CreateCondBr(IsNE, ForBody, AfterFor); |
| 1060 | |
| 1061 | EmitBlock(ForBody); |
| 1062 | |
| 1063 | llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc"); |
| 1064 | // Inside the loop body, emit the constructor call on the array element. |
| 1065 | Counter = Builder.CreateLoad(IndexPtr); |
| 1066 | Counter = Builder.CreateSub(Counter, One); |
| 1067 | llvm::Value *Address = Builder.CreateInBoundsGEP(This, Counter, "arrayidx"); |
Anders Carlsson | 8e6404c | 2010-05-02 23:29:11 +0000 | [diff] [blame] | 1068 | EmitCXXDestructorCall(D, Dtor_Complete, /*ForVirtualBase=*/false, Address); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1069 | |
| 1070 | EmitBlock(ContinueBlock); |
| 1071 | |
| 1072 | // Emit the decrement of the loop counter. |
| 1073 | Counter = Builder.CreateLoad(IndexPtr); |
| 1074 | Counter = Builder.CreateSub(Counter, One, "dec"); |
| 1075 | Builder.CreateStore(Counter, IndexPtr); |
| 1076 | |
| 1077 | // Finally, branch back up to the condition for the next iteration. |
| 1078 | EmitBranch(CondBlock); |
| 1079 | |
| 1080 | // Emit the fall-through block. |
| 1081 | EmitBlock(AfterFor, true); |
| 1082 | } |
| 1083 | |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1084 | void |
| 1085 | CodeGenFunction::EmitCXXConstructorCall(const CXXConstructorDecl *D, |
Anders Carlsson | 155ed4a | 2010-05-02 23:20:53 +0000 | [diff] [blame] | 1086 | CXXCtorType Type, bool ForVirtualBase, |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1087 | llvm::Value *This, |
| 1088 | CallExpr::const_arg_iterator ArgBeg, |
| 1089 | CallExpr::const_arg_iterator ArgEnd) { |
John McCall | 8b6bbeb | 2010-02-06 00:25:16 +0000 | [diff] [blame] | 1090 | if (D->isTrivial()) { |
| 1091 | if (ArgBeg == ArgEnd) { |
| 1092 | // Trivial default constructor, no codegen required. |
| 1093 | assert(D->isDefaultConstructor() && |
| 1094 | "trivial 0-arg ctor not a default ctor"); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1095 | return; |
| 1096 | } |
John McCall | 8b6bbeb | 2010-02-06 00:25:16 +0000 | [diff] [blame] | 1097 | |
| 1098 | assert(ArgBeg + 1 == ArgEnd && "unexpected argcount for trivial ctor"); |
| 1099 | assert(D->isCopyConstructor() && "trivial 1-arg ctor not a copy ctor"); |
| 1100 | |
John McCall | 8b6bbeb | 2010-02-06 00:25:16 +0000 | [diff] [blame] | 1101 | const Expr *E = (*ArgBeg); |
| 1102 | QualType Ty = E->getType(); |
| 1103 | llvm::Value *Src = EmitLValue(E).getAddress(); |
| 1104 | EmitAggregateCopy(This, Src, Ty); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1105 | return; |
| 1106 | } |
| 1107 | |
Anders Carlsson | 314e622 | 2010-05-02 23:33:10 +0000 | [diff] [blame] | 1108 | llvm::Value *VTT = GetVTTParameter(*this, GlobalDecl(D, Type), ForVirtualBase); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1109 | llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, Type); |
| 1110 | |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 1111 | EmitCXXMemberCall(D, Callee, ReturnValueSlot(), This, VTT, ArgBeg, ArgEnd); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1112 | } |
| 1113 | |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 1114 | void |
| 1115 | CodeGenFunction::EmitDelegateCXXConstructorCall(const CXXConstructorDecl *Ctor, |
| 1116 | CXXCtorType CtorType, |
| 1117 | const FunctionArgList &Args) { |
| 1118 | CallArgList DelegateArgs; |
| 1119 | |
| 1120 | FunctionArgList::const_iterator I = Args.begin(), E = Args.end(); |
| 1121 | assert(I != E && "no parameters to constructor"); |
| 1122 | |
| 1123 | // this |
| 1124 | DelegateArgs.push_back(std::make_pair(RValue::get(LoadCXXThis()), |
| 1125 | I->second)); |
| 1126 | ++I; |
| 1127 | |
| 1128 | // vtt |
Anders Carlsson | 314e622 | 2010-05-02 23:33:10 +0000 | [diff] [blame] | 1129 | if (llvm::Value *VTT = GetVTTParameter(*this, GlobalDecl(Ctor, CtorType), |
| 1130 | /*ForVirtualBase=*/false)) { |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 1131 | QualType VoidPP = getContext().getPointerType(getContext().VoidPtrTy); |
| 1132 | DelegateArgs.push_back(std::make_pair(RValue::get(VTT), VoidPP)); |
| 1133 | |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 1134 | if (CodeGenVTables::needsVTTParameter(CurGD)) { |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 1135 | assert(I != E && "cannot skip vtt parameter, already done with args"); |
| 1136 | assert(I->second == VoidPP && "skipping parameter not of vtt type"); |
| 1137 | ++I; |
| 1138 | } |
| 1139 | } |
| 1140 | |
| 1141 | // Explicit arguments. |
| 1142 | for (; I != E; ++I) { |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 1143 | const VarDecl *Param = I->first; |
| 1144 | QualType ArgType = Param->getType(); // because we're passing it to itself |
John McCall | 2736071 | 2010-05-26 22:34:26 +0000 | [diff] [blame] | 1145 | RValue Arg = EmitDelegateCallArg(Param); |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 1146 | |
| 1147 | DelegateArgs.push_back(std::make_pair(Arg, ArgType)); |
| 1148 | } |
| 1149 | |
| 1150 | EmitCall(CGM.getTypes().getFunctionInfo(Ctor, CtorType), |
| 1151 | CGM.GetAddrOfCXXConstructor(Ctor, CtorType), |
| 1152 | ReturnValueSlot(), DelegateArgs, Ctor); |
| 1153 | } |
| 1154 | |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1155 | void CodeGenFunction::EmitCXXDestructorCall(const CXXDestructorDecl *DD, |
| 1156 | CXXDtorType Type, |
Anders Carlsson | 8e6404c | 2010-05-02 23:29:11 +0000 | [diff] [blame] | 1157 | bool ForVirtualBase, |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1158 | llvm::Value *This) { |
Anders Carlsson | 314e622 | 2010-05-02 23:33:10 +0000 | [diff] [blame] | 1159 | llvm::Value *VTT = GetVTTParameter(*this, GlobalDecl(DD, Type), |
| 1160 | ForVirtualBase); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1161 | llvm::Value *Callee = CGM.GetAddrOfCXXDestructor(DD, Type); |
| 1162 | |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 1163 | EmitCXXMemberCall(DD, Callee, ReturnValueSlot(), This, VTT, 0, 0); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1164 | } |
| 1165 | |
John McCall | 291ae94 | 2010-07-21 01:41:18 +0000 | [diff] [blame] | 1166 | namespace { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1167 | struct CallLocalDtor : EHScopeStack::Cleanup { |
John McCall | 291ae94 | 2010-07-21 01:41:18 +0000 | [diff] [blame] | 1168 | const CXXDestructorDecl *Dtor; |
| 1169 | llvm::Value *Addr; |
| 1170 | |
| 1171 | CallLocalDtor(const CXXDestructorDecl *D, llvm::Value *Addr) |
| 1172 | : Dtor(D), Addr(Addr) {} |
| 1173 | |
| 1174 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 1175 | CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, |
| 1176 | /*ForVirtualBase=*/false, Addr); |
| 1177 | } |
| 1178 | }; |
| 1179 | } |
| 1180 | |
John McCall | 81407d4 | 2010-07-21 06:29:51 +0000 | [diff] [blame] | 1181 | void CodeGenFunction::PushDestructorCleanup(const CXXDestructorDecl *D, |
| 1182 | llvm::Value *Addr) { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1183 | EHStack.pushCleanup<CallLocalDtor>(NormalAndEHCleanup, D, Addr); |
John McCall | 81407d4 | 2010-07-21 06:29:51 +0000 | [diff] [blame] | 1184 | } |
| 1185 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1186 | void CodeGenFunction::PushDestructorCleanup(QualType T, llvm::Value *Addr) { |
| 1187 | CXXRecordDecl *ClassDecl = T->getAsCXXRecordDecl(); |
| 1188 | if (!ClassDecl) return; |
| 1189 | if (ClassDecl->hasTrivialDestructor()) return; |
| 1190 | |
| 1191 | const CXXDestructorDecl *D = ClassDecl->getDestructor(); |
John McCall | 81407d4 | 2010-07-21 06:29:51 +0000 | [diff] [blame] | 1192 | PushDestructorCleanup(D, Addr); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1193 | } |
| 1194 | |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1195 | llvm::Value * |
Anders Carlsson | bb7e17b | 2010-01-31 01:36:53 +0000 | [diff] [blame] | 1196 | CodeGenFunction::GetVirtualBaseClassOffset(llvm::Value *This, |
| 1197 | const CXXRecordDecl *ClassDecl, |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1198 | const CXXRecordDecl *BaseClassDecl) { |
| 1199 | const llvm::Type *Int8PtrTy = |
| 1200 | llvm::Type::getInt8Ty(VMContext)->getPointerTo(); |
| 1201 | |
| 1202 | llvm::Value *VTablePtr = Builder.CreateBitCast(This, |
| 1203 | Int8PtrTy->getPointerTo()); |
| 1204 | VTablePtr = Builder.CreateLoad(VTablePtr, "vtable"); |
| 1205 | |
Anders Carlsson | bba1607 | 2010-03-11 07:15:17 +0000 | [diff] [blame] | 1206 | int64_t VBaseOffsetOffset = |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 1207 | CGM.getVTables().getVirtualBaseOffsetOffset(ClassDecl, BaseClassDecl); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1208 | |
| 1209 | llvm::Value *VBaseOffsetPtr = |
Anders Carlsson | bba1607 | 2010-03-11 07:15:17 +0000 | [diff] [blame] | 1210 | Builder.CreateConstGEP1_64(VTablePtr, VBaseOffsetOffset, "vbase.offset.ptr"); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1211 | const llvm::Type *PtrDiffTy = |
| 1212 | ConvertType(getContext().getPointerDiffType()); |
| 1213 | |
| 1214 | VBaseOffsetPtr = Builder.CreateBitCast(VBaseOffsetPtr, |
| 1215 | PtrDiffTy->getPointerTo()); |
| 1216 | |
| 1217 | llvm::Value *VBaseOffset = Builder.CreateLoad(VBaseOffsetPtr, "vbase.offset"); |
| 1218 | |
| 1219 | return VBaseOffset; |
| 1220 | } |
| 1221 | |
Anders Carlsson | d103f9f | 2010-03-28 19:40:00 +0000 | [diff] [blame] | 1222 | void |
| 1223 | CodeGenFunction::InitializeVTablePointer(BaseSubobject Base, |
Anders Carlsson | b3b772e | 2010-04-20 05:22:15 +0000 | [diff] [blame] | 1224 | const CXXRecordDecl *NearestVBase, |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1225 | uint64_t OffsetFromNearestVBase, |
Anders Carlsson | d103f9f | 2010-03-28 19:40:00 +0000 | [diff] [blame] | 1226 | llvm::Constant *VTable, |
| 1227 | const CXXRecordDecl *VTableClass) { |
Anders Carlsson | c83f106 | 2010-03-29 01:08:49 +0000 | [diff] [blame] | 1228 | const CXXRecordDecl *RD = Base.getBase(); |
| 1229 | |
Anders Carlsson | d103f9f | 2010-03-28 19:40:00 +0000 | [diff] [blame] | 1230 | // Compute the address point. |
Anders Carlsson | c83f106 | 2010-03-29 01:08:49 +0000 | [diff] [blame] | 1231 | llvm::Value *VTableAddressPoint; |
Anders Carlsson | 851853d | 2010-03-29 02:38:51 +0000 | [diff] [blame] | 1232 | |
Anders Carlsson | c83f106 | 2010-03-29 01:08:49 +0000 | [diff] [blame] | 1233 | // Check if we need to use a vtable from the VTT. |
Anders Carlsson | 851853d | 2010-03-29 02:38:51 +0000 | [diff] [blame] | 1234 | if (CodeGenVTables::needsVTTParameter(CurGD) && |
Anders Carlsson | b3b772e | 2010-04-20 05:22:15 +0000 | [diff] [blame] | 1235 | (RD->getNumVBases() || NearestVBase)) { |
Anders Carlsson | c83f106 | 2010-03-29 01:08:49 +0000 | [diff] [blame] | 1236 | // Get the secondary vpointer index. |
| 1237 | uint64_t VirtualPointerIndex = |
| 1238 | CGM.getVTables().getSecondaryVirtualPointerIndex(VTableClass, Base); |
| 1239 | |
| 1240 | /// Load the VTT. |
| 1241 | llvm::Value *VTT = LoadCXXVTT(); |
| 1242 | if (VirtualPointerIndex) |
| 1243 | VTT = Builder.CreateConstInBoundsGEP1_64(VTT, VirtualPointerIndex); |
| 1244 | |
| 1245 | // And load the address point from the VTT. |
| 1246 | VTableAddressPoint = Builder.CreateLoad(VTT); |
| 1247 | } else { |
Anders Carlsson | 64c9eca | 2010-03-29 02:08:26 +0000 | [diff] [blame] | 1248 | uint64_t AddressPoint = CGM.getVTables().getAddressPoint(Base, VTableClass); |
Anders Carlsson | c83f106 | 2010-03-29 01:08:49 +0000 | [diff] [blame] | 1249 | VTableAddressPoint = |
Anders Carlsson | d103f9f | 2010-03-28 19:40:00 +0000 | [diff] [blame] | 1250 | Builder.CreateConstInBoundsGEP2_64(VTable, 0, AddressPoint); |
Anders Carlsson | c83f106 | 2010-03-29 01:08:49 +0000 | [diff] [blame] | 1251 | } |
Anders Carlsson | d103f9f | 2010-03-28 19:40:00 +0000 | [diff] [blame] | 1252 | |
Anders Carlsson | 36fd6be | 2010-04-20 16:22:16 +0000 | [diff] [blame] | 1253 | // Compute where to store the address point. |
Anders Carlsson | 8246cc7 | 2010-05-03 00:29:58 +0000 | [diff] [blame] | 1254 | llvm::Value *VirtualOffset = 0; |
| 1255 | uint64_t NonVirtualOffset = 0; |
Anders Carlsson | 3e79c30 | 2010-04-20 18:05:10 +0000 | [diff] [blame] | 1256 | |
| 1257 | if (CodeGenVTables::needsVTTParameter(CurGD) && NearestVBase) { |
| 1258 | // We need to use the virtual base offset offset because the virtual base |
| 1259 | // might have a different offset in the most derived class. |
Anders Carlsson | 8246cc7 | 2010-05-03 00:29:58 +0000 | [diff] [blame] | 1260 | VirtualOffset = GetVirtualBaseClassOffset(LoadCXXThis(), VTableClass, |
| 1261 | NearestVBase); |
| 1262 | NonVirtualOffset = OffsetFromNearestVBase / 8; |
Anders Carlsson | 3e79c30 | 2010-04-20 18:05:10 +0000 | [diff] [blame] | 1263 | } else { |
Anders Carlsson | 8246cc7 | 2010-05-03 00:29:58 +0000 | [diff] [blame] | 1264 | // We can just use the base offset in the complete class. |
| 1265 | NonVirtualOffset = Base.getBaseOffset() / 8; |
Anders Carlsson | 3e79c30 | 2010-04-20 18:05:10 +0000 | [diff] [blame] | 1266 | } |
Anders Carlsson | 8246cc7 | 2010-05-03 00:29:58 +0000 | [diff] [blame] | 1267 | |
| 1268 | // Apply the offsets. |
| 1269 | llvm::Value *VTableField = LoadCXXThis(); |
| 1270 | |
| 1271 | if (NonVirtualOffset || VirtualOffset) |
| 1272 | VTableField = ApplyNonVirtualAndVirtualOffset(*this, VTableField, |
| 1273 | NonVirtualOffset, |
| 1274 | VirtualOffset); |
Anders Carlsson | 36fd6be | 2010-04-20 16:22:16 +0000 | [diff] [blame] | 1275 | |
Anders Carlsson | d103f9f | 2010-03-28 19:40:00 +0000 | [diff] [blame] | 1276 | // Finally, store the address point. |
| 1277 | const llvm::Type *AddressPointPtrTy = |
| 1278 | VTableAddressPoint->getType()->getPointerTo(); |
| 1279 | VTableField = Builder.CreateBitCast(VTableField, AddressPointPtrTy); |
| 1280 | Builder.CreateStore(VTableAddressPoint, VTableField); |
| 1281 | } |
| 1282 | |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1283 | void |
| 1284 | CodeGenFunction::InitializeVTablePointers(BaseSubobject Base, |
Anders Carlsson | b3b772e | 2010-04-20 05:22:15 +0000 | [diff] [blame] | 1285 | const CXXRecordDecl *NearestVBase, |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1286 | uint64_t OffsetFromNearestVBase, |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1287 | bool BaseIsNonVirtualPrimaryBase, |
| 1288 | llvm::Constant *VTable, |
| 1289 | const CXXRecordDecl *VTableClass, |
| 1290 | VisitedVirtualBasesSetTy& VBases) { |
| 1291 | // If this base is a non-virtual primary base the address point has already |
| 1292 | // been set. |
| 1293 | if (!BaseIsNonVirtualPrimaryBase) { |
| 1294 | // Initialize the vtable pointer for this base. |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1295 | InitializeVTablePointer(Base, NearestVBase, OffsetFromNearestVBase, |
| 1296 | VTable, VTableClass); |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1297 | } |
| 1298 | |
| 1299 | const CXXRecordDecl *RD = Base.getBase(); |
| 1300 | |
| 1301 | // Traverse bases. |
| 1302 | for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(), |
| 1303 | E = RD->bases_end(); I != E; ++I) { |
| 1304 | CXXRecordDecl *BaseDecl |
| 1305 | = cast<CXXRecordDecl>(I->getType()->getAs<RecordType>()->getDecl()); |
| 1306 | |
| 1307 | // Ignore classes without a vtable. |
| 1308 | if (!BaseDecl->isDynamicClass()) |
| 1309 | continue; |
| 1310 | |
| 1311 | uint64_t BaseOffset; |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1312 | uint64_t BaseOffsetFromNearestVBase; |
Anders Carlsson | 14da9de | 2010-03-29 01:16:41 +0000 | [diff] [blame] | 1313 | bool BaseDeclIsNonVirtualPrimaryBase; |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1314 | |
| 1315 | if (I->isVirtual()) { |
| 1316 | // Check if we've visited this virtual base before. |
| 1317 | if (!VBases.insert(BaseDecl)) |
| 1318 | continue; |
| 1319 | |
| 1320 | const ASTRecordLayout &Layout = |
| 1321 | getContext().getASTRecordLayout(VTableClass); |
| 1322 | |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1323 | BaseOffset = Layout.getVBaseClassOffset(BaseDecl); |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1324 | BaseOffsetFromNearestVBase = 0; |
Anders Carlsson | 14da9de | 2010-03-29 01:16:41 +0000 | [diff] [blame] | 1325 | BaseDeclIsNonVirtualPrimaryBase = false; |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1326 | } else { |
| 1327 | const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD); |
| 1328 | |
| 1329 | BaseOffset = Base.getBaseOffset() + Layout.getBaseClassOffset(BaseDecl); |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1330 | BaseOffsetFromNearestVBase = |
Anders Carlsson | 8246cc7 | 2010-05-03 00:29:58 +0000 | [diff] [blame] | 1331 | OffsetFromNearestVBase + Layout.getBaseClassOffset(BaseDecl); |
Anders Carlsson | 14da9de | 2010-03-29 01:16:41 +0000 | [diff] [blame] | 1332 | BaseDeclIsNonVirtualPrimaryBase = Layout.getPrimaryBase() == BaseDecl; |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1333 | } |
| 1334 | |
| 1335 | InitializeVTablePointers(BaseSubobject(BaseDecl, BaseOffset), |
Anders Carlsson | b3b772e | 2010-04-20 05:22:15 +0000 | [diff] [blame] | 1336 | I->isVirtual() ? BaseDecl : NearestVBase, |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1337 | BaseOffsetFromNearestVBase, |
Anders Carlsson | 14da9de | 2010-03-29 01:16:41 +0000 | [diff] [blame] | 1338 | BaseDeclIsNonVirtualPrimaryBase, |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1339 | VTable, VTableClass, VBases); |
| 1340 | } |
| 1341 | } |
| 1342 | |
| 1343 | void CodeGenFunction::InitializeVTablePointers(const CXXRecordDecl *RD) { |
| 1344 | // Ignore classes without a vtable. |
Anders Carlsson | 0703690 | 2010-03-26 04:39:42 +0000 | [diff] [blame] | 1345 | if (!RD->isDynamicClass()) |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1346 | return; |
| 1347 | |
Anders Carlsson | 0703690 | 2010-03-26 04:39:42 +0000 | [diff] [blame] | 1348 | // Get the VTable. |
| 1349 | llvm::Constant *VTable = CGM.getVTables().GetAddrOfVTable(RD); |
Anders Carlsson | 5c6c1d9 | 2010-03-24 03:57:14 +0000 | [diff] [blame] | 1350 | |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1351 | // Initialize the vtable pointers for this class and all of its bases. |
| 1352 | VisitedVirtualBasesSetTy VBases; |
Anders Carlsson | b3b772e | 2010-04-20 05:22:15 +0000 | [diff] [blame] | 1353 | InitializeVTablePointers(BaseSubobject(RD, 0), /*NearestVBase=*/0, |
Anders Carlsson | 4235840 | 2010-05-03 00:07:07 +0000 | [diff] [blame] | 1354 | /*OffsetFromNearestVBase=*/0, |
Anders Carlsson | 603d6d1 | 2010-03-28 21:07:49 +0000 | [diff] [blame] | 1355 | /*BaseIsNonVirtualPrimaryBase=*/false, |
| 1356 | VTable, RD, VBases); |
Anders Carlsson | 3b5ad22 | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 1357 | } |