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 // Handle initialization of an array. 541 if (E->getType()->isArrayType()) { 542 const llvm::PointerType *APType = 543 cast<llvm::PointerType>(DestPtr->getType()); 544 const llvm::ArrayType *AType = 545 cast<llvm::ArrayType>(APType->getElementType()); 546 547 uint64_t NumInitElements = E->getNumInits(); 548 549 if (E->getNumInits() > 0) { 550 QualType T1 = E->getType(); 551 QualType T2 = E->getInit(0)->getType(); 552 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) { 553 EmitAggLoadOfLValue(E->getInit(0)); 554 return; 555 } 556 } 557 558 uint64_t NumArrayElements = AType->getNumElements(); 559 QualType ElementType = CGF.getContext().getCanonicalType(E->getType()); 560 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType(); 561 562 // FIXME: were we intentionally ignoring address spaces and GC attributes? 563 564 for (uint64_t i = 0; i != NumArrayElements; ++i) { 565 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array"); 566 LValue LV = CGF.MakeAddrLValue(NextVal, ElementType); 567 if (i < NumInitElements) 568 EmitInitializationToLValue(E->getInit(i), LV, ElementType); 569 570 else 571 EmitNullInitializationToLValue(LV, ElementType); 572 } 573 return; 574 } 575 576 assert(E->getType()->isRecordType() && "Only support structs/unions here!"); 577 578 // Do struct initialization; this code just sets each individual member 579 // to the approprate value. This makes bitfield support automatic; 580 // the disadvantage is that the generated code is more difficult for 581 // the optimizer, especially with bitfields. 582 unsigned NumInitElements = E->getNumInits(); 583 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl(); 584 unsigned CurInitVal = 0; 585 586 if (E->getType()->isUnionType()) { 587 // Only initialize one field of a union. The field itself is 588 // specified by the initializer list. 589 if (!E->getInitializedFieldInUnion()) { 590 // Empty union; we have nothing to do. 591 592 #ifndef NDEBUG 593 // Make sure that it's really an empty and not a failure of 594 // semantic analysis. 595 for (RecordDecl::field_iterator Field = SD->field_begin(), 596 FieldEnd = SD->field_end(); 597 Field != FieldEnd; ++Field) 598 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed"); 599 #endif 600 return; 601 } 602 603 // FIXME: volatility 604 FieldDecl *Field = E->getInitializedFieldInUnion(); 605 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0); 606 607 if (NumInitElements) { 608 // Store the initializer into the field 609 EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType()); 610 } else { 611 // Default-initialize to null 612 EmitNullInitializationToLValue(FieldLoc, Field->getType()); 613 } 614 615 return; 616 } 617 618 // If we're initializing the whole aggregate, just do it in place. 619 // FIXME: This is a hack around an AST bug (PR6537). 620 if (NumInitElements == 1 && E->getType() == E->getInit(0)->getType()) { 621 EmitInitializationToLValue(E->getInit(0), 622 CGF.MakeAddrLValue(DestPtr, E->getType()), 623 E->getType()); 624 return; 625 } 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 for (RecordDecl::field_iterator Field = SD->field_begin(), 631 FieldEnd = SD->field_end(); 632 Field != FieldEnd; ++Field) { 633 // We're done once we hit the flexible array member 634 if (Field->getType()->isIncompleteArrayType()) 635 break; 636 637 if (Field->isUnnamedBitfield()) 638 continue; 639 640 // FIXME: volatility 641 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0); 642 // We never generate write-barries for initialized fields. 643 FieldLoc.setNonGC(true); 644 if (CurInitVal < NumInitElements) { 645 // Store the initializer into the field. 646 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc, 647 Field->getType()); 648 } else { 649 // We're out of initalizers; default-initialize to null 650 EmitNullInitializationToLValue(FieldLoc, Field->getType()); 651 } 652 } 653 } 654 655 //===----------------------------------------------------------------------===// 656 // Entry Points into this File 657 //===----------------------------------------------------------------------===// 658 659 /// EmitAggExpr - Emit the computation of the specified expression of aggregate 660 /// type. The result is computed into DestPtr. Note that if DestPtr is null, 661 /// the value of the aggregate expression is not needed. If VolatileDest is 662 /// true, DestPtr cannot be 0. 663 // 664 // FIXME: Take Qualifiers object. 665 void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr, 666 bool VolatileDest, bool IgnoreResult, 667 bool IsInitializer, 668 bool RequiresGCollection) { 669 assert(E && hasAggregateLLVMType(E->getType()) && 670 "Invalid aggregate expression to emit"); 671 assert ((DestPtr != 0 || VolatileDest == false) 672 && "volatile aggregate can't be 0"); 673 674 AggExprEmitter(*this, DestPtr, VolatileDest, IgnoreResult, IsInitializer, 675 RequiresGCollection) 676 .Visit(const_cast<Expr*>(E)); 677 } 678 679 LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) { 680 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!"); 681 llvm::Value *Temp = CreateMemTemp(E->getType()); 682 LValue LV = MakeAddrLValue(Temp, E->getType()); 683 EmitAggExpr(E, Temp, LV.isVolatileQualified()); 684 return LV; 685 } 686 687 void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr, 688 llvm::Value *SrcPtr, QualType Ty, 689 bool isVolatile) { 690 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex"); 691 692 if (getContext().getLangOptions().CPlusPlus) { 693 if (const RecordType *RT = Ty->getAs<RecordType>()) { 694 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl()); 695 assert((Record->hasTrivialCopyConstructor() || 696 Record->hasTrivialCopyAssignment()) && 697 "Trying to aggregate-copy a type without a trivial copy " 698 "constructor or assignment operator"); 699 // Ignore empty classes in C++. 700 if (Record->isEmpty()) 701 return; 702 } 703 } 704 705 // Aggregate assignment turns into llvm.memcpy. This is almost valid per 706 // C99 6.5.16.1p3, which states "If the value being stored in an object is 707 // read from another object that overlaps in anyway the storage of the first 708 // object, then the overlap shall be exact and the two objects shall have 709 // qualified or unqualified versions of a compatible type." 710 // 711 // memcpy is not defined if the source and destination pointers are exactly 712 // equal, but other compilers do this optimization, and almost every memcpy 713 // implementation handles this case safely. If there is a libc that does not 714 // safely handle this, we can add a target hook. 715 716 // Get size and alignment info for this aggregate. 717 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty); 718 719 // FIXME: Handle variable sized types. 720 721 // FIXME: If we have a volatile struct, the optimizer can remove what might 722 // appear to be `extra' memory ops: 723 // 724 // volatile struct { int i; } a, b; 725 // 726 // int main() { 727 // a = b; 728 // a = b; 729 // } 730 // 731 // we need to use a different call here. We use isVolatile to indicate when 732 // either the source or the destination is volatile. 733 734 const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType()); 735 const llvm::Type *DBP = 736 llvm::Type::getInt8PtrTy(VMContext, DPT->getAddressSpace()); 737 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp"); 738 739 const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType()); 740 const llvm::Type *SBP = 741 llvm::Type::getInt8PtrTy(VMContext, SPT->getAddressSpace()); 742 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp"); 743 744 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) { 745 RecordDecl *Record = RecordTy->getDecl(); 746 if (Record->hasObjectMember()) { 747 unsigned long size = TypeInfo.first/8; 748 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); 749 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size); 750 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 751 SizeVal); 752 return; 753 } 754 } else if (getContext().getAsArrayType(Ty)) { 755 QualType BaseType = getContext().getBaseElementType(Ty); 756 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 757 if (RecordTy->getDecl()->hasObjectMember()) { 758 unsigned long size = TypeInfo.first/8; 759 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); 760 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size); 761 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 762 SizeVal); 763 return; 764 } 765 } 766 } 767 768 Builder.CreateCall5(CGM.getMemCpyFn(DestPtr->getType(), SrcPtr->getType(), 769 IntPtrTy), 770 DestPtr, SrcPtr, 771 // TypeInfo.first describes size in bits. 772 llvm::ConstantInt::get(IntPtrTy, TypeInfo.first/8), 773 Builder.getInt32(TypeInfo.second/8), 774 Builder.getInt1(isVolatile)); 775 } 776