1 //===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===// 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 to emit Aggregate Expr nodes as LLVM code. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "CodeGenFunction.h" 15 #include "CodeGenModule.h" 16 #include "CGObjCRuntime.h" 17 #include "clang/AST/ASTContext.h" 18 #include "clang/AST/DeclCXX.h" 19 #include "clang/AST/StmtVisitor.h" 20 #include "llvm/Constants.h" 21 #include "llvm/Function.h" 22 #include "llvm/GlobalVariable.h" 23 #include "llvm/Intrinsics.h" 24 using namespace clang; 25 using namespace CodeGen; 26 27 //===----------------------------------------------------------------------===// 28 // Aggregate Expression Emitter 29 //===----------------------------------------------------------------------===// 30 31 namespace { 32 class AggExprEmitter : public StmtVisitor<AggExprEmitter> { 33 CodeGenFunction &CGF; 34 CGBuilderTy &Builder; 35 llvm::Value *DestPtr; 36 bool VolatileDest; 37 bool IgnoreResult; 38 bool IsInitializer; 39 bool RequiresGCollection; 40 41 ReturnValueSlot getReturnValueSlot() const { 42 // If the destination slot requires garbage collection, we can't 43 // use the real return value slot, because we have to use the GC 44 // API. 45 if (RequiresGCollection) return ReturnValueSlot(); 46 47 return ReturnValueSlot(DestPtr, VolatileDest); 48 } 49 50 public: 51 AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool v, 52 bool ignore, bool isinit, bool requiresGCollection) 53 : CGF(cgf), Builder(CGF.Builder), 54 DestPtr(destPtr), VolatileDest(v), IgnoreResult(ignore), 55 IsInitializer(isinit), RequiresGCollection(requiresGCollection) { 56 } 57 58 //===--------------------------------------------------------------------===// 59 // Utilities 60 //===--------------------------------------------------------------------===// 61 62 /// EmitAggLoadOfLValue - Given an expression with aggregate type that 63 /// represents a value lvalue, this method emits the address of the lvalue, 64 /// then loads the result into DestPtr. 65 void EmitAggLoadOfLValue(const Expr *E); 66 67 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 68 void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false); 69 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false); 70 71 void EmitGCMove(const Expr *E, RValue Src); 72 73 bool TypeRequiresGCollection(QualType T); 74 75 //===--------------------------------------------------------------------===// 76 // Visitor Methods 77 //===--------------------------------------------------------------------===// 78 79 void VisitStmt(Stmt *S) { 80 CGF.ErrorUnsupported(S, "aggregate expression"); 81 } 82 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); } 83 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); } 84 85 // l-values. 86 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); } 87 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); } 88 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); } 89 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); } 90 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E) { 91 EmitAggLoadOfLValue(E); 92 } 93 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) { 94 EmitAggLoadOfLValue(E); 95 } 96 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) { 97 EmitAggLoadOfLValue(E); 98 } 99 void VisitPredefinedExpr(const PredefinedExpr *E) { 100 EmitAggLoadOfLValue(E); 101 } 102 103 // Operators. 104 void VisitCastExpr(CastExpr *E); 105 void VisitCallExpr(const CallExpr *E); 106 void VisitStmtExpr(const StmtExpr *E); 107 void VisitBinaryOperator(const BinaryOperator *BO); 108 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO); 109 void VisitBinAssign(const BinaryOperator *E); 110 void VisitBinComma(const BinaryOperator *E); 111 112 void VisitObjCMessageExpr(ObjCMessageExpr *E); 113 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { 114 EmitAggLoadOfLValue(E); 115 } 116 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E); 117 void VisitObjCImplicitSetterGetterRefExpr(ObjCImplicitSetterGetterRefExpr *E); 118 119 void VisitConditionalOperator(const ConditionalOperator *CO); 120 void VisitChooseExpr(const ChooseExpr *CE); 121 void VisitInitListExpr(InitListExpr *E); 122 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E); 123 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) { 124 Visit(DAE->getExpr()); 125 } 126 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E); 127 void VisitCXXConstructExpr(const CXXConstructExpr *E); 128 void VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E); 129 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E); 130 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); } 131 132 void VisitVAArgExpr(VAArgExpr *E); 133 134 void EmitInitializationToLValue(Expr *E, LValue Address, QualType T); 135 void EmitNullInitializationToLValue(LValue Address, QualType T); 136 // case Expr::ChooseExprClass: 137 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } 138 }; 139 } // end anonymous namespace. 140 141 //===----------------------------------------------------------------------===// 142 // Utilities 143 //===----------------------------------------------------------------------===// 144 145 /// EmitAggLoadOfLValue - Given an expression with aggregate type that 146 /// represents a value lvalue, this method emits the address of the lvalue, 147 /// then loads the result into DestPtr. 148 void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) { 149 LValue LV = CGF.EmitLValue(E); 150 EmitFinalDestCopy(E, LV); 151 } 152 153 /// \brief True if the given aggregate type requires special GC API calls. 154 bool AggExprEmitter::TypeRequiresGCollection(QualType T) { 155 // Only record types have members that might require garbage collection. 156 const RecordType *RecordTy = T->getAs<RecordType>(); 157 if (!RecordTy) return false; 158 159 // Don't mess with non-trivial C++ types. 160 RecordDecl *Record = RecordTy->getDecl(); 161 if (isa<CXXRecordDecl>(Record) && 162 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() || 163 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor())) 164 return false; 165 166 // Check whether the type has an object member. 167 return Record->hasObjectMember(); 168 } 169 170 /// \brief Perform the final move to DestPtr if RequiresGCollection is set. 171 /// 172 /// The idea is that you do something like this: 173 /// RValue Result = EmitSomething(..., getReturnValueSlot()); 174 /// EmitGCMove(E, Result); 175 /// If GC doesn't interfere, this will cause the result to be emitted 176 /// directly into the return value slot. If GC does interfere, a final 177 /// move will be performed. 178 void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) { 179 if (RequiresGCollection) { 180 std::pair<uint64_t, unsigned> TypeInfo = 181 CGF.getContext().getTypeInfo(E->getType()); 182 unsigned long size = TypeInfo.first/8; 183 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType()); 184 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size); 185 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, DestPtr, 186 Src.getAggregateAddr(), 187 SizeVal); 188 } 189 } 190 191 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 192 void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) { 193 assert(Src.isAggregate() && "value must be aggregate value!"); 194 195 // If DestPtr is null, then we're evaluating an aggregate expression 196 // in a context (like an expression statement) that doesn't care 197 // about the result. C says that an lvalue-to-rvalue conversion is 198 // performed in these cases; C++ says that it is not. In either 199 // case, we don't actually need to do anything unless the value is 200 // volatile. 201 if (DestPtr == 0) { 202 if (!Src.isVolatileQualified() || 203 CGF.CGM.getLangOptions().CPlusPlus || 204 (IgnoreResult && Ignore)) 205 return; 206 207 // If the source is volatile, we must read from it; to do that, we need 208 // some place to put it. 209 DestPtr = CGF.CreateMemTemp(E->getType(), "agg.tmp"); 210 } 211 212 if (RequiresGCollection) { 213 std::pair<uint64_t, unsigned> TypeInfo = 214 CGF.getContext().getTypeInfo(E->getType()); 215 unsigned long size = TypeInfo.first/8; 216 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType()); 217 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size); 218 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, 219 DestPtr, Src.getAggregateAddr(), 220 SizeVal); 221 return; 222 } 223 // If the result of the assignment is used, copy the LHS there also. 224 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile 225 // from the source as well, as we can't eliminate it if either operand 226 // is volatile, unless copy has volatile for both source and destination.. 227 CGF.EmitAggregateCopy(DestPtr, Src.getAggregateAddr(), E->getType(), 228 VolatileDest|Src.isVolatileQualified()); 229 } 230 231 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 232 void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) { 233 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc"); 234 235 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(), 236 Src.isVolatileQualified()), 237 Ignore); 238 } 239 240 //===----------------------------------------------------------------------===// 241 // Visitor Methods 242 //===----------------------------------------------------------------------===// 243 244 void AggExprEmitter::VisitCastExpr(CastExpr *E) { 245 if (!DestPtr && E->getCastKind() != CK_Dynamic) { 246 Visit(E->getSubExpr()); 247 return; 248 } 249 250 switch (E->getCastKind()) { 251 default: assert(0 && "Unhandled cast kind!"); 252 253 case CK_Dynamic: { 254 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?"); 255 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr()); 256 // FIXME: Do we also need to handle property references here? 257 if (LV.isSimple()) 258 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E)); 259 else 260 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast"); 261 262 if (DestPtr) 263 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination"); 264 break; 265 } 266 267 case CK_ToUnion: { 268 // GCC union extension 269 QualType Ty = E->getSubExpr()->getType(); 270 QualType PtrTy = CGF.getContext().getPointerType(Ty); 271 llvm::Value *CastPtr = Builder.CreateBitCast(DestPtr, 272 CGF.ConvertType(PtrTy)); 273 EmitInitializationToLValue(E->getSubExpr(), CGF.MakeAddrLValue(CastPtr, Ty), 274 Ty); 275 break; 276 } 277 278 case CK_DerivedToBase: 279 case CK_BaseToDerived: 280 case CK_UncheckedDerivedToBase: { 281 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: " 282 "should have been unpacked before we got here"); 283 break; 284 } 285 286 // FIXME: Remove the CK_Unknown check here. 287 case CK_Unknown: 288 case CK_NoOp: 289 case CK_UserDefinedConversion: 290 case CK_ConstructorConversion: 291 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(), 292 E->getType()) && 293 "Implicit cast types must be compatible"); 294 Visit(E->getSubExpr()); 295 break; 296 297 case CK_LValueBitCast: 298 llvm_unreachable("there are no lvalue bit-casts on aggregates"); 299 break; 300 } 301 } 302 303 void AggExprEmitter::VisitCallExpr(const CallExpr *E) { 304 if (E->getCallReturnType()->isReferenceType()) { 305 EmitAggLoadOfLValue(E); 306 return; 307 } 308 309 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot()); 310 EmitGCMove(E, RV); 311 } 312 313 void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) { 314 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot()); 315 EmitGCMove(E, RV); 316 } 317 318 void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { 319 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot()); 320 EmitGCMove(E, RV); 321 } 322 323 void AggExprEmitter::VisitObjCImplicitSetterGetterRefExpr( 324 ObjCImplicitSetterGetterRefExpr *E) { 325 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot()); 326 EmitGCMove(E, RV); 327 } 328 329 void AggExprEmitter::VisitBinComma(const BinaryOperator *E) { 330 CGF.EmitAnyExpr(E->getLHS(), 0, false, true); 331 CGF.EmitAggExpr(E->getRHS(), DestPtr, VolatileDest, 332 /*IgnoreResult=*/false, IsInitializer); 333 } 334 335 void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) { 336 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest); 337 } 338 339 void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) { 340 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI) 341 VisitPointerToDataMemberBinaryOperator(E); 342 else 343 CGF.ErrorUnsupported(E, "aggregate binary expression"); 344 } 345 346 void AggExprEmitter::VisitPointerToDataMemberBinaryOperator( 347 const BinaryOperator *E) { 348 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); 349 EmitFinalDestCopy(E, LV); 350 } 351 352 void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) { 353 // For an assignment to work, the value on the right has 354 // to be compatible with the value on the left. 355 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(), 356 E->getRHS()->getType()) 357 && "Invalid assignment"); 358 LValue LHS = CGF.EmitLValue(E->getLHS()); 359 360 // We have to special case property setters, otherwise we must have 361 // a simple lvalue (no aggregates inside vectors, bitfields). 362 if (LHS.isPropertyRef()) { 363 llvm::Value *AggLoc = DestPtr; 364 if (!AggLoc) 365 AggLoc = CGF.CreateMemTemp(E->getRHS()->getType()); 366 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest); 367 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(), 368 RValue::getAggregate(AggLoc, VolatileDest)); 369 } else if (LHS.isKVCRef()) { 370 llvm::Value *AggLoc = DestPtr; 371 if (!AggLoc) 372 AggLoc = CGF.CreateMemTemp(E->getRHS()->getType()); 373 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest); 374 CGF.EmitObjCPropertySet(LHS.getKVCRefExpr(), 375 RValue::getAggregate(AggLoc, VolatileDest)); 376 } else { 377 bool RequiresGCollection = false; 378 if (CGF.getContext().getLangOptions().getGCMode()) 379 RequiresGCollection = TypeRequiresGCollection(E->getLHS()->getType()); 380 381 // Codegen the RHS so that it stores directly into the LHS. 382 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), LHS.isVolatileQualified(), 383 false, false, RequiresGCollection); 384 EmitFinalDestCopy(E, LHS, true); 385 } 386 } 387 388 void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) { 389 if (!E->getLHS()) { 390 CGF.ErrorUnsupported(E, "conditional operator with missing LHS"); 391 return; 392 } 393 394 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true"); 395 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false"); 396 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end"); 397 398 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock); 399 400 CGF.BeginConditionalBranch(); 401 CGF.EmitBlock(LHSBlock); 402 403 // Handle the GNU extension for missing LHS. 404 assert(E->getLHS() && "Must have LHS for aggregate value"); 405 406 Visit(E->getLHS()); 407 CGF.EndConditionalBranch(); 408 CGF.EmitBranch(ContBlock); 409 410 CGF.BeginConditionalBranch(); 411 CGF.EmitBlock(RHSBlock); 412 413 Visit(E->getRHS()); 414 CGF.EndConditionalBranch(); 415 CGF.EmitBranch(ContBlock); 416 417 CGF.EmitBlock(ContBlock); 418 } 419 420 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { 421 Visit(CE->getChosenSubExpr(CGF.getContext())); 422 } 423 424 void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) { 425 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr()); 426 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType()); 427 428 if (!ArgPtr) { 429 CGF.ErrorUnsupported(VE, "aggregate va_arg expression"); 430 return; 431 } 432 433 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType())); 434 } 435 436 void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 437 llvm::Value *Val = DestPtr; 438 439 if (!Val) { 440 // Create a temporary variable. 441 Val = CGF.CreateMemTemp(E->getType(), "tmp"); 442 443 // FIXME: volatile 444 CGF.EmitAggExpr(E->getSubExpr(), Val, false); 445 } else 446 Visit(E->getSubExpr()); 447 448 // Don't make this a live temporary if we're emitting an initializer expr. 449 if (!IsInitializer) 450 CGF.EmitCXXTemporary(E->getTemporary(), Val); 451 } 452 453 void 454 AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) { 455 llvm::Value *Val = DestPtr; 456 457 if (!Val) // Create a temporary variable. 458 Val = CGF.CreateMemTemp(E->getType(), "tmp"); 459 460 CGF.EmitCXXConstructExpr(Val, E); 461 } 462 463 void AggExprEmitter::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) { 464 llvm::Value *Val = DestPtr; 465 466 CGF.EmitCXXExprWithTemporaries(E, Val, VolatileDest, IsInitializer); 467 } 468 469 void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) { 470 llvm::Value *Val = DestPtr; 471 472 if (!Val) { 473 // Create a temporary variable. 474 Val = CGF.CreateMemTemp(E->getType(), "tmp"); 475 } 476 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Val, E->getType()), 477 E->getType()); 478 } 479 480 void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) { 481 llvm::Value *Val = DestPtr; 482 483 if (!Val) { 484 // Create a temporary variable. 485 Val = CGF.CreateMemTemp(E->getType(), "tmp"); 486 } 487 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Val, E->getType()), 488 E->getType()); 489 } 490 491 void 492 AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) { 493 // FIXME: Ignore result? 494 // FIXME: Are initializers affected by volatile? 495 if (isa<ImplicitValueInitExpr>(E)) { 496 EmitNullInitializationToLValue(LV, T); 497 } else if (T->isReferenceType()) { 498 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0); 499 CGF.EmitStoreThroughLValue(RV, LV, T); 500 } else if (T->isAnyComplexType()) { 501 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false); 502 } else if (CGF.hasAggregateLLVMType(T)) { 503 CGF.EmitAnyExpr(E, LV.getAddress(), false); 504 } else { 505 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, T); 506 } 507 } 508 509 void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) { 510 if (!CGF.hasAggregateLLVMType(T)) { 511 // For non-aggregates, we can store zero 512 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T)); 513 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T); 514 } else { 515 // There's a potential optimization opportunity in combining 516 // memsets; that would be easy for arrays, but relatively 517 // difficult for structures with the current code. 518 CGF.EmitNullInitialization(LV.getAddress(), T); 519 } 520 } 521 522 void AggExprEmitter::VisitInitListExpr(InitListExpr *E) { 523 #if 0 524 // FIXME: Assess perf here? Figure out what cases are worth optimizing here 525 // (Length of globals? Chunks of zeroed-out space?). 526 // 527 // If we can, prefer a copy from a global; this is a lot less code for long 528 // globals, and it's easier for the current optimizers to analyze. 529 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) { 530 llvm::GlobalVariable* GV = 531 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true, 532 llvm::GlobalValue::InternalLinkage, C, ""); 533 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType())); 534 return; 535 } 536 #endif 537 if (E->hadArrayRangeDesignator()) { 538 CGF.ErrorUnsupported(E, "GNU array range designator extension"); 539 } 540 541 // Handle initialization of an array. 542 if (E->getType()->isArrayType()) { 543 const llvm::PointerType *APType = 544 cast<llvm::PointerType>(DestPtr->getType()); 545 const llvm::ArrayType *AType = 546 cast<llvm::ArrayType>(APType->getElementType()); 547 548 uint64_t NumInitElements = E->getNumInits(); 549 550 if (E->getNumInits() > 0) { 551 QualType T1 = E->getType(); 552 QualType T2 = E->getInit(0)->getType(); 553 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) { 554 EmitAggLoadOfLValue(E->getInit(0)); 555 return; 556 } 557 } 558 559 uint64_t NumArrayElements = AType->getNumElements(); 560 QualType ElementType = CGF.getContext().getCanonicalType(E->getType()); 561 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType(); 562 563 // FIXME: were we intentionally ignoring address spaces and GC attributes? 564 565 for (uint64_t i = 0; i != NumArrayElements; ++i) { 566 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array"); 567 LValue LV = CGF.MakeAddrLValue(NextVal, ElementType); 568 if (i < NumInitElements) 569 EmitInitializationToLValue(E->getInit(i), LV, ElementType); 570 571 else 572 EmitNullInitializationToLValue(LV, ElementType); 573 } 574 return; 575 } 576 577 assert(E->getType()->isRecordType() && "Only support structs/unions here!"); 578 579 // Do struct initialization; this code just sets each individual member 580 // to the approprate value. This makes bitfield support automatic; 581 // the disadvantage is that the generated code is more difficult for 582 // the optimizer, especially with bitfields. 583 unsigned NumInitElements = E->getNumInits(); 584 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl(); 585 586 // If we're initializing the whole aggregate, just do it in place. 587 // FIXME: This is a hack around an AST bug (PR6537). 588 if (NumInitElements == 1 && E->getType() == E->getInit(0)->getType()) { 589 EmitInitializationToLValue(E->getInit(0), 590 CGF.MakeAddrLValue(DestPtr, E->getType()), 591 E->getType()); 592 return; 593 } 594 595 596 if (E->getType()->isUnionType()) { 597 // Only initialize one field of a union. The field itself is 598 // specified by the initializer list. 599 if (!E->getInitializedFieldInUnion()) { 600 // Empty union; we have nothing to do. 601 602 #ifndef NDEBUG 603 // Make sure that it's really an empty and not a failure of 604 // semantic analysis. 605 for (RecordDecl::field_iterator Field = SD->field_begin(), 606 FieldEnd = SD->field_end(); 607 Field != FieldEnd; ++Field) 608 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed"); 609 #endif 610 return; 611 } 612 613 // FIXME: volatility 614 FieldDecl *Field = E->getInitializedFieldInUnion(); 615 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0); 616 617 if (NumInitElements) { 618 // Store the initializer into the field 619 EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType()); 620 } else { 621 // Default-initialize to null 622 EmitNullInitializationToLValue(FieldLoc, Field->getType()); 623 } 624 625 return; 626 } 627 628 // Here we iterate over the fields; this makes it simpler to both 629 // default-initialize fields and skip over unnamed fields. 630 unsigned CurInitVal = 0; 631 for (RecordDecl::field_iterator Field = SD->field_begin(), 632 FieldEnd = SD->field_end(); 633 Field != FieldEnd; ++Field) { 634 // We're done once we hit the flexible array member 635 if (Field->getType()->isIncompleteArrayType()) 636 break; 637 638 if (Field->isUnnamedBitfield()) 639 continue; 640 641 // FIXME: volatility 642 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0); 643 // We never generate write-barries for initialized fields. 644 FieldLoc.setNonGC(true); 645 if (CurInitVal < NumInitElements) { 646 // Store the initializer into the field. 647 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc, 648 Field->getType()); 649 } else { 650 // We're out of initalizers; default-initialize to null 651 EmitNullInitializationToLValue(FieldLoc, Field->getType()); 652 } 653 } 654 } 655 656 //===----------------------------------------------------------------------===// 657 // Entry Points into this File 658 //===----------------------------------------------------------------------===// 659 660 /// EmitAggExpr - Emit the computation of the specified expression of aggregate 661 /// type. The result is computed into DestPtr. Note that if DestPtr is null, 662 /// the value of the aggregate expression is not needed. If VolatileDest is 663 /// true, DestPtr cannot be 0. 664 // 665 // FIXME: Take Qualifiers object. 666 void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr, 667 bool VolatileDest, bool IgnoreResult, 668 bool IsInitializer, 669 bool RequiresGCollection) { 670 assert(E && hasAggregateLLVMType(E->getType()) && 671 "Invalid aggregate expression to emit"); 672 assert ((DestPtr != 0 || VolatileDest == false) 673 && "volatile aggregate can't be 0"); 674 675 AggExprEmitter(*this, DestPtr, VolatileDest, IgnoreResult, IsInitializer, 676 RequiresGCollection) 677 .Visit(const_cast<Expr*>(E)); 678 } 679 680 LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) { 681 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!"); 682 llvm::Value *Temp = CreateMemTemp(E->getType()); 683 LValue LV = MakeAddrLValue(Temp, E->getType()); 684 EmitAggExpr(E, Temp, LV.isVolatileQualified()); 685 return LV; 686 } 687 688 void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr, 689 llvm::Value *SrcPtr, QualType Ty, 690 bool isVolatile) { 691 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex"); 692 693 if (getContext().getLangOptions().CPlusPlus) { 694 if (const RecordType *RT = Ty->getAs<RecordType>()) { 695 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl()); 696 assert((Record->hasTrivialCopyConstructor() || 697 Record->hasTrivialCopyAssignment()) && 698 "Trying to aggregate-copy a type without a trivial copy " 699 "constructor or assignment operator"); 700 // Ignore empty classes in C++. 701 if (Record->isEmpty()) 702 return; 703 } 704 } 705 706 // Aggregate assignment turns into llvm.memcpy. This is almost valid per 707 // C99 6.5.16.1p3, which states "If the value being stored in an object is 708 // read from another object that overlaps in anyway the storage of the first 709 // object, then the overlap shall be exact and the two objects shall have 710 // qualified or unqualified versions of a compatible type." 711 // 712 // memcpy is not defined if the source and destination pointers are exactly 713 // equal, but other compilers do this optimization, and almost every memcpy 714 // implementation handles this case safely. If there is a libc that does not 715 // safely handle this, we can add a target hook. 716 717 // Get size and alignment info for this aggregate. 718 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty); 719 720 // FIXME: Handle variable sized types. 721 722 // FIXME: If we have a volatile struct, the optimizer can remove what might 723 // appear to be `extra' memory ops: 724 // 725 // volatile struct { int i; } a, b; 726 // 727 // int main() { 728 // a = b; 729 // a = b; 730 // } 731 // 732 // we need to use a different call here. We use isVolatile to indicate when 733 // either the source or the destination is volatile. 734 735 const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType()); 736 const llvm::Type *DBP = 737 llvm::Type::getInt8PtrTy(VMContext, DPT->getAddressSpace()); 738 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp"); 739 740 const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType()); 741 const llvm::Type *SBP = 742 llvm::Type::getInt8PtrTy(VMContext, SPT->getAddressSpace()); 743 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp"); 744 745 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) { 746 RecordDecl *Record = RecordTy->getDecl(); 747 if (Record->hasObjectMember()) { 748 unsigned long size = TypeInfo.first/8; 749 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); 750 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size); 751 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 752 SizeVal); 753 return; 754 } 755 } else if (getContext().getAsArrayType(Ty)) { 756 QualType BaseType = getContext().getBaseElementType(Ty); 757 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 758 if (RecordTy->getDecl()->hasObjectMember()) { 759 unsigned long size = TypeInfo.first/8; 760 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); 761 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size); 762 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 763 SizeVal); 764 return; 765 } 766 } 767 } 768 769 Builder.CreateCall5(CGM.getMemCpyFn(DestPtr->getType(), SrcPtr->getType(), 770 IntPtrTy), 771 DestPtr, SrcPtr, 772 // TypeInfo.first describes size in bits. 773 llvm::ConstantInt::get(IntPtrTy, TypeInfo.first/8), 774 Builder.getInt32(TypeInfo.second/8), 775 Builder.getInt1(isVolatile)); 776 } 777