1 //===--- CGExpr.cpp - Emit LLVM Code from 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 Expr nodes as LLVM code. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "CodeGenFunction.h" 15 #include "CodeGenModule.h" 16 #include "CGCall.h" 17 #include "CGCXXABI.h" 18 #include "CGDebugInfo.h" 19 #include "CGRecordLayout.h" 20 #include "CGObjCRuntime.h" 21 #include "TargetInfo.h" 22 #include "clang/AST/ASTContext.h" 23 #include "clang/AST/DeclObjC.h" 24 #include "clang/Frontend/CodeGenOptions.h" 25 #include "llvm/Intrinsics.h" 26 #include "llvm/LLVMContext.h" 27 #include "llvm/Target/TargetData.h" 28 using namespace clang; 29 using namespace CodeGen; 30 31 //===--------------------------------------------------------------------===// 32 // Miscellaneous Helper Methods 33 //===--------------------------------------------------------------------===// 34 35 llvm::Value *CodeGenFunction::EmitCastToVoidPtr(llvm::Value *value) { 36 unsigned addressSpace = 37 cast<llvm::PointerType>(value->getType())->getAddressSpace(); 38 39 llvm::PointerType *destType = Int8PtrTy; 40 if (addressSpace) 41 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace); 42 43 if (value->getType() == destType) return value; 44 return Builder.CreateBitCast(value, destType); 45 } 46 47 /// CreateTempAlloca - This creates a alloca and inserts it into the entry 48 /// block. 49 llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(llvm::Type *Ty, 50 const Twine &Name) { 51 if (!Builder.isNamePreserving()) 52 return new llvm::AllocaInst(Ty, 0, "", AllocaInsertPt); 53 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt); 54 } 55 56 void CodeGenFunction::InitTempAlloca(llvm::AllocaInst *Var, 57 llvm::Value *Init) { 58 llvm::StoreInst *Store = new llvm::StoreInst(Init, Var); 59 llvm::BasicBlock *Block = AllocaInsertPt->getParent(); 60 Block->getInstList().insertAfter(&*AllocaInsertPt, Store); 61 } 62 63 llvm::AllocaInst *CodeGenFunction::CreateIRTemp(QualType Ty, 64 const Twine &Name) { 65 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertType(Ty), Name); 66 // FIXME: Should we prefer the preferred type alignment here? 67 CharUnits Align = getContext().getTypeAlignInChars(Ty); 68 Alloc->setAlignment(Align.getQuantity()); 69 return Alloc; 70 } 71 72 llvm::AllocaInst *CodeGenFunction::CreateMemTemp(QualType Ty, 73 const Twine &Name) { 74 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), Name); 75 // FIXME: Should we prefer the preferred type alignment here? 76 CharUnits Align = getContext().getTypeAlignInChars(Ty); 77 Alloc->setAlignment(Align.getQuantity()); 78 return Alloc; 79 } 80 81 /// EvaluateExprAsBool - Perform the usual unary conversions on the specified 82 /// expression and compare the result against zero, returning an Int1Ty value. 83 llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) { 84 if (const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>()) { 85 llvm::Value *MemPtr = EmitScalarExpr(E); 86 return CGM.getCXXABI().EmitMemberPointerIsNotNull(*this, MemPtr, MPT); 87 } 88 89 QualType BoolTy = getContext().BoolTy; 90 if (!E->getType()->isAnyComplexType()) 91 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy); 92 93 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy); 94 } 95 96 /// EmitIgnoredExpr - Emit code to compute the specified expression, 97 /// ignoring the result. 98 void CodeGenFunction::EmitIgnoredExpr(const Expr *E) { 99 if (E->isRValue()) 100 return (void) EmitAnyExpr(E, AggValueSlot::ignored(), true); 101 102 // Just emit it as an l-value and drop the result. 103 EmitLValue(E); 104 } 105 106 /// EmitAnyExpr - Emit code to compute the specified expression which 107 /// can have any type. The result is returned as an RValue struct. 108 /// If this is an aggregate expression, AggSlot indicates where the 109 /// result should be returned. 110 RValue CodeGenFunction::EmitAnyExpr(const Expr *E, AggValueSlot AggSlot, 111 bool IgnoreResult) { 112 if (!hasAggregateLLVMType(E->getType())) 113 return RValue::get(EmitScalarExpr(E, IgnoreResult)); 114 else if (E->getType()->isAnyComplexType()) 115 return RValue::getComplex(EmitComplexExpr(E, IgnoreResult, IgnoreResult)); 116 117 EmitAggExpr(E, AggSlot, IgnoreResult); 118 return AggSlot.asRValue(); 119 } 120 121 /// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will 122 /// always be accessible even if no aggregate location is provided. 123 RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E) { 124 AggValueSlot AggSlot = AggValueSlot::ignored(); 125 126 if (hasAggregateLLVMType(E->getType()) && 127 !E->getType()->isAnyComplexType()) 128 AggSlot = CreateAggTemp(E->getType(), "agg.tmp"); 129 return EmitAnyExpr(E, AggSlot); 130 } 131 132 /// EmitAnyExprToMem - Evaluate an expression into a given memory 133 /// location. 134 void CodeGenFunction::EmitAnyExprToMem(const Expr *E, 135 llvm::Value *Location, 136 Qualifiers Quals, 137 bool IsInit) { 138 // FIXME: This function should take an LValue as an argument. 139 if (E->getType()->isAnyComplexType()) { 140 EmitComplexExprIntoAddr(E, Location, Quals.hasVolatile()); 141 } else if (hasAggregateLLVMType(E->getType())) { 142 CharUnits Alignment = getContext().getTypeAlignInChars(E->getType()); 143 EmitAggExpr(E, AggValueSlot::forAddr(Location, Alignment, Quals, 144 AggValueSlot::IsDestructed_t(IsInit), 145 AggValueSlot::DoesNotNeedGCBarriers, 146 AggValueSlot::IsAliased_t(!IsInit))); 147 } else { 148 RValue RV = RValue::get(EmitScalarExpr(E, /*Ignore*/ false)); 149 LValue LV = MakeAddrLValue(Location, E->getType()); 150 EmitStoreThroughLValue(RV, LV); 151 } 152 } 153 154 namespace { 155 /// \brief An adjustment to be made to the temporary created when emitting a 156 /// reference binding, which accesses a particular subobject of that temporary. 157 struct SubobjectAdjustment { 158 enum { DerivedToBaseAdjustment, FieldAdjustment } Kind; 159 160 union { 161 struct { 162 const CastExpr *BasePath; 163 const CXXRecordDecl *DerivedClass; 164 } DerivedToBase; 165 166 FieldDecl *Field; 167 }; 168 169 SubobjectAdjustment(const CastExpr *BasePath, 170 const CXXRecordDecl *DerivedClass) 171 : Kind(DerivedToBaseAdjustment) { 172 DerivedToBase.BasePath = BasePath; 173 DerivedToBase.DerivedClass = DerivedClass; 174 } 175 176 SubobjectAdjustment(FieldDecl *Field) 177 : Kind(FieldAdjustment) { 178 this->Field = Field; 179 } 180 }; 181 } 182 183 static llvm::Value * 184 CreateReferenceTemporary(CodeGenFunction &CGF, QualType Type, 185 const NamedDecl *InitializedDecl) { 186 if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl)) { 187 if (VD->hasGlobalStorage()) { 188 llvm::SmallString<256> Name; 189 llvm::raw_svector_ostream Out(Name); 190 CGF.CGM.getCXXABI().getMangleContext().mangleReferenceTemporary(VD, Out); 191 Out.flush(); 192 193 llvm::Type *RefTempTy = CGF.ConvertTypeForMem(Type); 194 195 // Create the reference temporary. 196 llvm::GlobalValue *RefTemp = 197 new llvm::GlobalVariable(CGF.CGM.getModule(), 198 RefTempTy, /*isConstant=*/false, 199 llvm::GlobalValue::InternalLinkage, 200 llvm::Constant::getNullValue(RefTempTy), 201 Name.str()); 202 return RefTemp; 203 } 204 } 205 206 return CGF.CreateMemTemp(Type, "ref.tmp"); 207 } 208 209 static llvm::Value * 210 EmitExprForReferenceBinding(CodeGenFunction &CGF, const Expr *E, 211 llvm::Value *&ReferenceTemporary, 212 const CXXDestructorDecl *&ReferenceTemporaryDtor, 213 QualType &ObjCARCReferenceLifetimeType, 214 const NamedDecl *InitializedDecl) { 215 // Look through single-element init lists that claim to be lvalues. They're 216 // just syntactic wrappers in this case. 217 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E)) { 218 if (ILE->getNumInits() == 1 && ILE->isGLValue()) 219 E = ILE->getInit(0); 220 } 221 222 // Look through expressions for materialized temporaries (for now). 223 if (const MaterializeTemporaryExpr *M 224 = dyn_cast<MaterializeTemporaryExpr>(E)) { 225 // Objective-C++ ARC: 226 // If we are binding a reference to a temporary that has ownership, we 227 // need to perform retain/release operations on the temporary. 228 if (CGF.getContext().getLangOptions().ObjCAutoRefCount && 229 E->getType()->isObjCLifetimeType() && 230 (E->getType().getObjCLifetime() == Qualifiers::OCL_Strong || 231 E->getType().getObjCLifetime() == Qualifiers::OCL_Weak || 232 E->getType().getObjCLifetime() == Qualifiers::OCL_Autoreleasing)) 233 ObjCARCReferenceLifetimeType = E->getType(); 234 235 E = M->GetTemporaryExpr(); 236 } 237 238 if (const CXXDefaultArgExpr *DAE = dyn_cast<CXXDefaultArgExpr>(E)) 239 E = DAE->getExpr(); 240 241 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(E)) { 242 CGF.enterFullExpression(EWC); 243 CodeGenFunction::RunCleanupsScope Scope(CGF); 244 245 return EmitExprForReferenceBinding(CGF, EWC->getSubExpr(), 246 ReferenceTemporary, 247 ReferenceTemporaryDtor, 248 ObjCARCReferenceLifetimeType, 249 InitializedDecl); 250 } 251 252 RValue RV; 253 if (E->isGLValue()) { 254 // Emit the expression as an lvalue. 255 LValue LV = CGF.EmitLValue(E); 256 257 if (LV.isSimple()) 258 return LV.getAddress(); 259 260 // We have to load the lvalue. 261 RV = CGF.EmitLoadOfLValue(LV); 262 } else { 263 if (!ObjCARCReferenceLifetimeType.isNull()) { 264 ReferenceTemporary = CreateReferenceTemporary(CGF, 265 ObjCARCReferenceLifetimeType, 266 InitializedDecl); 267 268 269 LValue RefTempDst = CGF.MakeAddrLValue(ReferenceTemporary, 270 ObjCARCReferenceLifetimeType); 271 272 CGF.EmitScalarInit(E, dyn_cast_or_null<ValueDecl>(InitializedDecl), 273 RefTempDst, false); 274 275 bool ExtendsLifeOfTemporary = false; 276 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(InitializedDecl)) { 277 if (Var->extendsLifetimeOfTemporary()) 278 ExtendsLifeOfTemporary = true; 279 } else if (InitializedDecl && isa<FieldDecl>(InitializedDecl)) { 280 ExtendsLifeOfTemporary = true; 281 } 282 283 if (!ExtendsLifeOfTemporary) { 284 // Since the lifetime of this temporary isn't going to be extended, 285 // we need to clean it up ourselves at the end of the full expression. 286 switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) { 287 case Qualifiers::OCL_None: 288 case Qualifiers::OCL_ExplicitNone: 289 case Qualifiers::OCL_Autoreleasing: 290 break; 291 292 case Qualifiers::OCL_Strong: { 293 assert(!ObjCARCReferenceLifetimeType->isArrayType()); 294 CleanupKind cleanupKind = CGF.getARCCleanupKind(); 295 CGF.pushDestroy(cleanupKind, 296 ReferenceTemporary, 297 ObjCARCReferenceLifetimeType, 298 CodeGenFunction::destroyARCStrongImprecise, 299 cleanupKind & EHCleanup); 300 break; 301 } 302 303 case Qualifiers::OCL_Weak: 304 assert(!ObjCARCReferenceLifetimeType->isArrayType()); 305 CGF.pushDestroy(NormalAndEHCleanup, 306 ReferenceTemporary, 307 ObjCARCReferenceLifetimeType, 308 CodeGenFunction::destroyARCWeak, 309 /*useEHCleanupForArray*/ true); 310 break; 311 } 312 313 ObjCARCReferenceLifetimeType = QualType(); 314 } 315 316 return ReferenceTemporary; 317 } 318 319 SmallVector<SubobjectAdjustment, 2> Adjustments; 320 while (true) { 321 E = E->IgnoreParens(); 322 323 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) { 324 if ((CE->getCastKind() == CK_DerivedToBase || 325 CE->getCastKind() == CK_UncheckedDerivedToBase) && 326 E->getType()->isRecordType()) { 327 E = CE->getSubExpr(); 328 CXXRecordDecl *Derived 329 = cast<CXXRecordDecl>(E->getType()->getAs<RecordType>()->getDecl()); 330 Adjustments.push_back(SubobjectAdjustment(CE, Derived)); 331 continue; 332 } 333 334 if (CE->getCastKind() == CK_NoOp) { 335 E = CE->getSubExpr(); 336 continue; 337 } 338 } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 339 if (!ME->isArrow() && ME->getBase()->isRValue()) { 340 assert(ME->getBase()->getType()->isRecordType()); 341 if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) { 342 E = ME->getBase(); 343 Adjustments.push_back(SubobjectAdjustment(Field)); 344 continue; 345 } 346 } 347 } 348 349 if (const OpaqueValueExpr *opaque = dyn_cast<OpaqueValueExpr>(E)) 350 if (opaque->getType()->isRecordType()) 351 return CGF.EmitOpaqueValueLValue(opaque).getAddress(); 352 353 // Nothing changed. 354 break; 355 } 356 357 // Create a reference temporary if necessary. 358 AggValueSlot AggSlot = AggValueSlot::ignored(); 359 if (CGF.hasAggregateLLVMType(E->getType()) && 360 !E->getType()->isAnyComplexType()) { 361 ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(), 362 InitializedDecl); 363 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(E->getType()); 364 AggValueSlot::IsDestructed_t isDestructed 365 = AggValueSlot::IsDestructed_t(InitializedDecl != 0); 366 AggSlot = AggValueSlot::forAddr(ReferenceTemporary, Alignment, 367 Qualifiers(), isDestructed, 368 AggValueSlot::DoesNotNeedGCBarriers, 369 AggValueSlot::IsNotAliased); 370 } 371 372 if (InitializedDecl) { 373 // Get the destructor for the reference temporary. 374 if (const RecordType *RT = E->getType()->getAs<RecordType>()) { 375 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 376 if (!ClassDecl->hasTrivialDestructor()) 377 ReferenceTemporaryDtor = ClassDecl->getDestructor(); 378 } 379 } 380 381 RV = CGF.EmitAnyExpr(E, AggSlot); 382 383 // Check if need to perform derived-to-base casts and/or field accesses, to 384 // get from the temporary object we created (and, potentially, for which we 385 // extended the lifetime) to the subobject we're binding the reference to. 386 if (!Adjustments.empty()) { 387 llvm::Value *Object = RV.getAggregateAddr(); 388 for (unsigned I = Adjustments.size(); I != 0; --I) { 389 SubobjectAdjustment &Adjustment = Adjustments[I-1]; 390 switch (Adjustment.Kind) { 391 case SubobjectAdjustment::DerivedToBaseAdjustment: 392 Object = 393 CGF.GetAddressOfBaseClass(Object, 394 Adjustment.DerivedToBase.DerivedClass, 395 Adjustment.DerivedToBase.BasePath->path_begin(), 396 Adjustment.DerivedToBase.BasePath->path_end(), 397 /*NullCheckValue=*/false); 398 break; 399 400 case SubobjectAdjustment::FieldAdjustment: { 401 LValue LV = 402 CGF.EmitLValueForField(Object, Adjustment.Field, 0); 403 if (LV.isSimple()) { 404 Object = LV.getAddress(); 405 break; 406 } 407 408 // For non-simple lvalues, we actually have to create a copy of 409 // the object we're binding to. 410 QualType T = Adjustment.Field->getType().getNonReferenceType() 411 .getUnqualifiedType(); 412 Object = CreateReferenceTemporary(CGF, T, InitializedDecl); 413 LValue TempLV = CGF.MakeAddrLValue(Object, 414 Adjustment.Field->getType()); 415 CGF.EmitStoreThroughLValue(CGF.EmitLoadOfLValue(LV), TempLV); 416 break; 417 } 418 419 } 420 } 421 422 return Object; 423 } 424 } 425 426 if (RV.isAggregate()) 427 return RV.getAggregateAddr(); 428 429 // Create a temporary variable that we can bind the reference to. 430 ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(), 431 InitializedDecl); 432 433 434 unsigned Alignment = 435 CGF.getContext().getTypeAlignInChars(E->getType()).getQuantity(); 436 if (RV.isScalar()) 437 CGF.EmitStoreOfScalar(RV.getScalarVal(), ReferenceTemporary, 438 /*Volatile=*/false, Alignment, E->getType()); 439 else 440 CGF.StoreComplexToAddr(RV.getComplexVal(), ReferenceTemporary, 441 /*Volatile=*/false); 442 return ReferenceTemporary; 443 } 444 445 RValue 446 CodeGenFunction::EmitReferenceBindingToExpr(const Expr *E, 447 const NamedDecl *InitializedDecl) { 448 llvm::Value *ReferenceTemporary = 0; 449 const CXXDestructorDecl *ReferenceTemporaryDtor = 0; 450 QualType ObjCARCReferenceLifetimeType; 451 llvm::Value *Value = EmitExprForReferenceBinding(*this, E, ReferenceTemporary, 452 ReferenceTemporaryDtor, 453 ObjCARCReferenceLifetimeType, 454 InitializedDecl); 455 if (!ReferenceTemporaryDtor && ObjCARCReferenceLifetimeType.isNull()) 456 return RValue::get(Value); 457 458 // Make sure to call the destructor for the reference temporary. 459 const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl); 460 if (VD && VD->hasGlobalStorage()) { 461 if (ReferenceTemporaryDtor) { 462 llvm::Constant *DtorFn = 463 CGM.GetAddrOfCXXDestructor(ReferenceTemporaryDtor, Dtor_Complete); 464 EmitCXXGlobalDtorRegistration(DtorFn, 465 cast<llvm::Constant>(ReferenceTemporary)); 466 } else { 467 assert(!ObjCARCReferenceLifetimeType.isNull()); 468 // Note: We intentionally do not register a global "destructor" to 469 // release the object. 470 } 471 472 return RValue::get(Value); 473 } 474 475 if (ReferenceTemporaryDtor) 476 PushDestructorCleanup(ReferenceTemporaryDtor, ReferenceTemporary); 477 else { 478 switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) { 479 case Qualifiers::OCL_None: 480 llvm_unreachable( 481 "Not a reference temporary that needs to be deallocated"); 482 case Qualifiers::OCL_ExplicitNone: 483 case Qualifiers::OCL_Autoreleasing: 484 // Nothing to do. 485 break; 486 487 case Qualifiers::OCL_Strong: { 488 bool precise = VD && VD->hasAttr<ObjCPreciseLifetimeAttr>(); 489 CleanupKind cleanupKind = getARCCleanupKind(); 490 // This local is a GCC and MSVC compiler workaround. 491 Destroyer *destroyer = precise ? &destroyARCStrongPrecise : 492 &destroyARCStrongImprecise; 493 pushDestroy(cleanupKind, ReferenceTemporary, ObjCARCReferenceLifetimeType, 494 *destroyer, cleanupKind & EHCleanup); 495 break; 496 } 497 498 case Qualifiers::OCL_Weak: { 499 // This local is a GCC and MSVC compiler workaround. 500 Destroyer *destroyer = &destroyARCWeak; 501 // __weak objects always get EH cleanups; otherwise, exceptions 502 // could cause really nasty crashes instead of mere leaks. 503 pushDestroy(NormalAndEHCleanup, ReferenceTemporary, 504 ObjCARCReferenceLifetimeType, *destroyer, true); 505 break; 506 } 507 } 508 } 509 510 return RValue::get(Value); 511 } 512 513 514 /// getAccessedFieldNo - Given an encoded value and a result number, return the 515 /// input field number being accessed. 516 unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx, 517 const llvm::Constant *Elts) { 518 if (isa<llvm::ConstantAggregateZero>(Elts)) 519 return 0; 520 521 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue(); 522 } 523 524 void CodeGenFunction::EmitCheck(llvm::Value *Address, unsigned Size) { 525 if (!CatchUndefined) 526 return; 527 528 // This needs to be to the standard address space. 529 Address = Builder.CreateBitCast(Address, Int8PtrTy); 530 531 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::objectsize, IntPtrTy); 532 533 // In time, people may want to control this and use a 1 here. 534 llvm::Value *Arg = Builder.getFalse(); 535 llvm::Value *C = Builder.CreateCall2(F, Address, Arg); 536 llvm::BasicBlock *Cont = createBasicBlock(); 537 llvm::BasicBlock *Check = createBasicBlock(); 538 llvm::Value *NegativeOne = llvm::ConstantInt::get(IntPtrTy, -1ULL); 539 Builder.CreateCondBr(Builder.CreateICmpEQ(C, NegativeOne), Cont, Check); 540 541 EmitBlock(Check); 542 Builder.CreateCondBr(Builder.CreateICmpUGE(C, 543 llvm::ConstantInt::get(IntPtrTy, Size)), 544 Cont, getTrapBB()); 545 EmitBlock(Cont); 546 } 547 548 549 CodeGenFunction::ComplexPairTy CodeGenFunction:: 550 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV, 551 bool isInc, bool isPre) { 552 ComplexPairTy InVal = LoadComplexFromAddr(LV.getAddress(), 553 LV.isVolatileQualified()); 554 555 llvm::Value *NextVal; 556 if (isa<llvm::IntegerType>(InVal.first->getType())) { 557 uint64_t AmountVal = isInc ? 1 : -1; 558 NextVal = llvm::ConstantInt::get(InVal.first->getType(), AmountVal, true); 559 560 // Add the inc/dec to the real part. 561 NextVal = Builder.CreateAdd(InVal.first, NextVal, isInc ? "inc" : "dec"); 562 } else { 563 QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType(); 564 llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1); 565 if (!isInc) 566 FVal.changeSign(); 567 NextVal = llvm::ConstantFP::get(getLLVMContext(), FVal); 568 569 // Add the inc/dec to the real part. 570 NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec"); 571 } 572 573 ComplexPairTy IncVal(NextVal, InVal.second); 574 575 // Store the updated result through the lvalue. 576 StoreComplexToAddr(IncVal, LV.getAddress(), LV.isVolatileQualified()); 577 578 // If this is a postinc, return the value read from memory, otherwise use the 579 // updated value. 580 return isPre ? IncVal : InVal; 581 } 582 583 584 //===----------------------------------------------------------------------===// 585 // LValue Expression Emission 586 //===----------------------------------------------------------------------===// 587 588 RValue CodeGenFunction::GetUndefRValue(QualType Ty) { 589 if (Ty->isVoidType()) 590 return RValue::get(0); 591 592 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { 593 llvm::Type *EltTy = ConvertType(CTy->getElementType()); 594 llvm::Value *U = llvm::UndefValue::get(EltTy); 595 return RValue::getComplex(std::make_pair(U, U)); 596 } 597 598 // If this is a use of an undefined aggregate type, the aggregate must have an 599 // identifiable address. Just because the contents of the value are undefined 600 // doesn't mean that the address can't be taken and compared. 601 if (hasAggregateLLVMType(Ty)) { 602 llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp"); 603 return RValue::getAggregate(DestPtr); 604 } 605 606 return RValue::get(llvm::UndefValue::get(ConvertType(Ty))); 607 } 608 609 RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E, 610 const char *Name) { 611 ErrorUnsupported(E, Name); 612 return GetUndefRValue(E->getType()); 613 } 614 615 LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E, 616 const char *Name) { 617 ErrorUnsupported(E, Name); 618 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType())); 619 return MakeAddrLValue(llvm::UndefValue::get(Ty), E->getType()); 620 } 621 622 LValue CodeGenFunction::EmitCheckedLValue(const Expr *E) { 623 LValue LV = EmitLValue(E); 624 if (!isa<DeclRefExpr>(E) && !LV.isBitField() && LV.isSimple()) 625 EmitCheck(LV.getAddress(), 626 getContext().getTypeSizeInChars(E->getType()).getQuantity()); 627 return LV; 628 } 629 630 /// EmitLValue - Emit code to compute a designator that specifies the location 631 /// of the expression. 632 /// 633 /// This can return one of two things: a simple address or a bitfield reference. 634 /// In either case, the LLVM Value* in the LValue structure is guaranteed to be 635 /// an LLVM pointer type. 636 /// 637 /// If this returns a bitfield reference, nothing about the pointee type of the 638 /// LLVM value is known: For example, it may not be a pointer to an integer. 639 /// 640 /// If this returns a normal address, and if the lvalue's C type is fixed size, 641 /// this method guarantees that the returned pointer type will point to an LLVM 642 /// type of the same size of the lvalue's type. If the lvalue has a variable 643 /// length type, this is not possible. 644 /// 645 LValue CodeGenFunction::EmitLValue(const Expr *E) { 646 switch (E->getStmtClass()) { 647 default: return EmitUnsupportedLValue(E, "l-value expression"); 648 649 case Expr::ObjCPropertyRefExprClass: 650 llvm_unreachable("cannot emit a property reference directly"); 651 652 case Expr::ObjCSelectorExprClass: 653 return EmitObjCSelectorLValue(cast<ObjCSelectorExpr>(E)); 654 case Expr::ObjCIsaExprClass: 655 return EmitObjCIsaExpr(cast<ObjCIsaExpr>(E)); 656 case Expr::BinaryOperatorClass: 657 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E)); 658 case Expr::CompoundAssignOperatorClass: 659 if (!E->getType()->isAnyComplexType()) 660 return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E)); 661 return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E)); 662 case Expr::CallExprClass: 663 case Expr::CXXMemberCallExprClass: 664 case Expr::CXXOperatorCallExprClass: 665 return EmitCallExprLValue(cast<CallExpr>(E)); 666 case Expr::VAArgExprClass: 667 return EmitVAArgExprLValue(cast<VAArgExpr>(E)); 668 case Expr::DeclRefExprClass: 669 return EmitDeclRefLValue(cast<DeclRefExpr>(E)); 670 case Expr::ParenExprClass: 671 return EmitLValue(cast<ParenExpr>(E)->getSubExpr()); 672 case Expr::GenericSelectionExprClass: 673 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr()); 674 case Expr::PredefinedExprClass: 675 return EmitPredefinedLValue(cast<PredefinedExpr>(E)); 676 case Expr::StringLiteralClass: 677 return EmitStringLiteralLValue(cast<StringLiteral>(E)); 678 case Expr::ObjCEncodeExprClass: 679 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E)); 680 case Expr::PseudoObjectExprClass: 681 return EmitPseudoObjectLValue(cast<PseudoObjectExpr>(E)); 682 case Expr::InitListExprClass: 683 assert(cast<InitListExpr>(E)->getNumInits() == 1 && 684 "Only single-element init list can be lvalue."); 685 return EmitLValue(cast<InitListExpr>(E)->getInit(0)); 686 687 case Expr::BlockDeclRefExprClass: 688 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E)); 689 690 case Expr::CXXTemporaryObjectExprClass: 691 case Expr::CXXConstructExprClass: 692 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E)); 693 case Expr::CXXBindTemporaryExprClass: 694 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E)); 695 696 case Expr::ExprWithCleanupsClass: { 697 const ExprWithCleanups *cleanups = cast<ExprWithCleanups>(E); 698 enterFullExpression(cleanups); 699 RunCleanupsScope Scope(*this); 700 return EmitLValue(cleanups->getSubExpr()); 701 } 702 703 case Expr::CXXScalarValueInitExprClass: 704 return EmitNullInitializationLValue(cast<CXXScalarValueInitExpr>(E)); 705 case Expr::CXXDefaultArgExprClass: 706 return EmitLValue(cast<CXXDefaultArgExpr>(E)->getExpr()); 707 case Expr::CXXTypeidExprClass: 708 return EmitCXXTypeidLValue(cast<CXXTypeidExpr>(E)); 709 710 case Expr::ObjCMessageExprClass: 711 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E)); 712 case Expr::ObjCIvarRefExprClass: 713 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E)); 714 case Expr::StmtExprClass: 715 return EmitStmtExprLValue(cast<StmtExpr>(E)); 716 case Expr::UnaryOperatorClass: 717 return EmitUnaryOpLValue(cast<UnaryOperator>(E)); 718 case Expr::ArraySubscriptExprClass: 719 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E)); 720 case Expr::ExtVectorElementExprClass: 721 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E)); 722 case Expr::MemberExprClass: 723 return EmitMemberExpr(cast<MemberExpr>(E)); 724 case Expr::CompoundLiteralExprClass: 725 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E)); 726 case Expr::ConditionalOperatorClass: 727 return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E)); 728 case Expr::BinaryConditionalOperatorClass: 729 return EmitConditionalOperatorLValue(cast<BinaryConditionalOperator>(E)); 730 case Expr::ChooseExprClass: 731 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext())); 732 case Expr::OpaqueValueExprClass: 733 return EmitOpaqueValueLValue(cast<OpaqueValueExpr>(E)); 734 case Expr::SubstNonTypeTemplateParmExprClass: 735 return EmitLValue(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement()); 736 case Expr::ImplicitCastExprClass: 737 case Expr::CStyleCastExprClass: 738 case Expr::CXXFunctionalCastExprClass: 739 case Expr::CXXStaticCastExprClass: 740 case Expr::CXXDynamicCastExprClass: 741 case Expr::CXXReinterpretCastExprClass: 742 case Expr::CXXConstCastExprClass: 743 case Expr::ObjCBridgedCastExprClass: 744 return EmitCastLValue(cast<CastExpr>(E)); 745 746 case Expr::MaterializeTemporaryExprClass: 747 return EmitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(E)); 748 } 749 } 750 751 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue) { 752 return EmitLoadOfScalar(lvalue.getAddress(), lvalue.isVolatile(), 753 lvalue.getAlignment().getQuantity(), 754 lvalue.getType(), lvalue.getTBAAInfo()); 755 } 756 757 llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile, 758 unsigned Alignment, QualType Ty, 759 llvm::MDNode *TBAAInfo) { 760 llvm::LoadInst *Load = Builder.CreateLoad(Addr); 761 if (Volatile) 762 Load->setVolatile(true); 763 if (Alignment) 764 Load->setAlignment(Alignment); 765 if (TBAAInfo) 766 CGM.DecorateInstruction(Load, TBAAInfo); 767 // If this is an atomic type, all normal reads must be atomic 768 if (Ty->isAtomicType()) 769 Load->setAtomic(llvm::SequentiallyConsistent); 770 771 return EmitFromMemory(Load, Ty); 772 } 773 774 static bool isBooleanUnderlyingType(QualType Ty) { 775 if (const EnumType *ET = dyn_cast<EnumType>(Ty)) 776 return ET->getDecl()->getIntegerType()->isBooleanType(); 777 return false; 778 } 779 780 llvm::Value *CodeGenFunction::EmitToMemory(llvm::Value *Value, QualType Ty) { 781 // Bool has a different representation in memory than in registers. 782 if (Ty->isBooleanType() || isBooleanUnderlyingType(Ty)) { 783 // This should really always be an i1, but sometimes it's already 784 // an i8, and it's awkward to track those cases down. 785 if (Value->getType()->isIntegerTy(1)) 786 return Builder.CreateZExt(Value, Builder.getInt8Ty(), "frombool"); 787 assert(Value->getType()->isIntegerTy(8) && "value rep of bool not i1/i8"); 788 } 789 790 return Value; 791 } 792 793 llvm::Value *CodeGenFunction::EmitFromMemory(llvm::Value *Value, QualType Ty) { 794 // Bool has a different representation in memory than in registers. 795 if (Ty->isBooleanType() || isBooleanUnderlyingType(Ty)) { 796 assert(Value->getType()->isIntegerTy(8) && "memory rep of bool not i8"); 797 return Builder.CreateTrunc(Value, Builder.getInt1Ty(), "tobool"); 798 } 799 800 return Value; 801 } 802 803 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr, 804 bool Volatile, unsigned Alignment, 805 QualType Ty, 806 llvm::MDNode *TBAAInfo, 807 bool isInit) { 808 Value = EmitToMemory(Value, Ty); 809 810 llvm::StoreInst *Store = Builder.CreateStore(Value, Addr, Volatile); 811 if (Alignment) 812 Store->setAlignment(Alignment); 813 if (TBAAInfo) 814 CGM.DecorateInstruction(Store, TBAAInfo); 815 if (!isInit && Ty->isAtomicType()) 816 Store->setAtomic(llvm::SequentiallyConsistent); 817 } 818 819 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue, 820 bool isInit) { 821 EmitStoreOfScalar(value, lvalue.getAddress(), lvalue.isVolatile(), 822 lvalue.getAlignment().getQuantity(), lvalue.getType(), 823 lvalue.getTBAAInfo(), isInit); 824 } 825 826 /// EmitLoadOfLValue - Given an expression that represents a value lvalue, this 827 /// method emits the address of the lvalue, then loads the result as an rvalue, 828 /// returning the rvalue. 829 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV) { 830 if (LV.isObjCWeak()) { 831 // load of a __weak object. 832 llvm::Value *AddrWeakObj = LV.getAddress(); 833 return RValue::get(CGM.getObjCRuntime().EmitObjCWeakRead(*this, 834 AddrWeakObj)); 835 } 836 if (LV.getQuals().getObjCLifetime() == Qualifiers::OCL_Weak) 837 return RValue::get(EmitARCLoadWeak(LV.getAddress())); 838 839 if (LV.isSimple()) { 840 assert(!LV.getType()->isFunctionType()); 841 842 // Everything needs a load. 843 return RValue::get(EmitLoadOfScalar(LV)); 844 } 845 846 if (LV.isVectorElt()) { 847 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(), 848 LV.isVolatileQualified()); 849 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(), 850 "vecext")); 851 } 852 853 // If this is a reference to a subset of the elements of a vector, either 854 // shuffle the input or extract/insert them as appropriate. 855 if (LV.isExtVectorElt()) 856 return EmitLoadOfExtVectorElementLValue(LV); 857 858 assert(LV.isBitField() && "Unknown LValue type!"); 859 return EmitLoadOfBitfieldLValue(LV); 860 } 861 862 RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV) { 863 const CGBitFieldInfo &Info = LV.getBitFieldInfo(); 864 865 // Get the output type. 866 llvm::Type *ResLTy = ConvertType(LV.getType()); 867 unsigned ResSizeInBits = CGM.getTargetData().getTypeSizeInBits(ResLTy); 868 869 // Compute the result as an OR of all of the individual component accesses. 870 llvm::Value *Res = 0; 871 for (unsigned i = 0, e = Info.getNumComponents(); i != e; ++i) { 872 const CGBitFieldInfo::AccessInfo &AI = Info.getComponent(i); 873 874 // Get the field pointer. 875 llvm::Value *Ptr = LV.getBitFieldBaseAddr(); 876 877 // Only offset by the field index if used, so that incoming values are not 878 // required to be structures. 879 if (AI.FieldIndex) 880 Ptr = Builder.CreateStructGEP(Ptr, AI.FieldIndex, "bf.field"); 881 882 // Offset by the byte offset, if used. 883 if (!AI.FieldByteOffset.isZero()) { 884 Ptr = EmitCastToVoidPtr(Ptr); 885 Ptr = Builder.CreateConstGEP1_32(Ptr, AI.FieldByteOffset.getQuantity(), 886 "bf.field.offs"); 887 } 888 889 // Cast to the access type. 890 llvm::Type *PTy = llvm::Type::getIntNPtrTy(getLLVMContext(), 891 AI.AccessWidth, 892 CGM.getContext().getTargetAddressSpace(LV.getType())); 893 Ptr = Builder.CreateBitCast(Ptr, PTy); 894 895 // Perform the load. 896 llvm::LoadInst *Load = Builder.CreateLoad(Ptr, LV.isVolatileQualified()); 897 if (!AI.AccessAlignment.isZero()) 898 Load->setAlignment(AI.AccessAlignment.getQuantity()); 899 900 // Shift out unused low bits and mask out unused high bits. 901 llvm::Value *Val = Load; 902 if (AI.FieldBitStart) 903 Val = Builder.CreateLShr(Load, AI.FieldBitStart); 904 Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(AI.AccessWidth, 905 AI.TargetBitWidth), 906 "bf.clear"); 907 908 // Extend or truncate to the target size. 909 if (AI.AccessWidth < ResSizeInBits) 910 Val = Builder.CreateZExt(Val, ResLTy); 911 else if (AI.AccessWidth > ResSizeInBits) 912 Val = Builder.CreateTrunc(Val, ResLTy); 913 914 // Shift into place, and OR into the result. 915 if (AI.TargetBitOffset) 916 Val = Builder.CreateShl(Val, AI.TargetBitOffset); 917 Res = Res ? Builder.CreateOr(Res, Val) : Val; 918 } 919 920 // If the bit-field is signed, perform the sign-extension. 921 // 922 // FIXME: This can easily be folded into the load of the high bits, which 923 // could also eliminate the mask of high bits in some situations. 924 if (Info.isSigned()) { 925 unsigned ExtraBits = ResSizeInBits - Info.getSize(); 926 if (ExtraBits) 927 Res = Builder.CreateAShr(Builder.CreateShl(Res, ExtraBits), 928 ExtraBits, "bf.val.sext"); 929 } 930 931 return RValue::get(Res); 932 } 933 934 // If this is a reference to a subset of the elements of a vector, create an 935 // appropriate shufflevector. 936 RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV) { 937 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(), 938 LV.isVolatileQualified()); 939 940 const llvm::Constant *Elts = LV.getExtVectorElts(); 941 942 // If the result of the expression is a non-vector type, we must be extracting 943 // a single element. Just codegen as an extractelement. 944 const VectorType *ExprVT = LV.getType()->getAs<VectorType>(); 945 if (!ExprVT) { 946 unsigned InIdx = getAccessedFieldNo(0, Elts); 947 llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx); 948 return RValue::get(Builder.CreateExtractElement(Vec, Elt)); 949 } 950 951 // Always use shuffle vector to try to retain the original program structure 952 unsigned NumResultElts = ExprVT->getNumElements(); 953 954 SmallVector<llvm::Constant*, 4> Mask; 955 for (unsigned i = 0; i != NumResultElts; ++i) 956 Mask.push_back(Builder.getInt32(getAccessedFieldNo(i, Elts))); 957 958 llvm::Value *MaskV = llvm::ConstantVector::get(Mask); 959 Vec = Builder.CreateShuffleVector(Vec, llvm::UndefValue::get(Vec->getType()), 960 MaskV); 961 return RValue::get(Vec); 962 } 963 964 965 966 /// EmitStoreThroughLValue - Store the specified rvalue into the specified 967 /// lvalue, where both are guaranteed to the have the same type, and that type 968 /// is 'Ty'. 969 void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit) { 970 if (!Dst.isSimple()) { 971 if (Dst.isVectorElt()) { 972 // Read/modify/write the vector, inserting the new element. 973 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(), 974 Dst.isVolatileQualified()); 975 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(), 976 Dst.getVectorIdx(), "vecins"); 977 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified()); 978 return; 979 } 980 981 // If this is an update of extended vector elements, insert them as 982 // appropriate. 983 if (Dst.isExtVectorElt()) 984 return EmitStoreThroughExtVectorComponentLValue(Src, Dst); 985 986 assert(Dst.isBitField() && "Unknown LValue type"); 987 return EmitStoreThroughBitfieldLValue(Src, Dst); 988 } 989 990 // There's special magic for assigning into an ARC-qualified l-value. 991 if (Qualifiers::ObjCLifetime Lifetime = Dst.getQuals().getObjCLifetime()) { 992 switch (Lifetime) { 993 case Qualifiers::OCL_None: 994 llvm_unreachable("present but none"); 995 996 case Qualifiers::OCL_ExplicitNone: 997 // nothing special 998 break; 999 1000 case Qualifiers::OCL_Strong: 1001 EmitARCStoreStrong(Dst, Src.getScalarVal(), /*ignore*/ true); 1002 return; 1003 1004 case Qualifiers::OCL_Weak: 1005 EmitARCStoreWeak(Dst.getAddress(), Src.getScalarVal(), /*ignore*/ true); 1006 return; 1007 1008 case Qualifiers::OCL_Autoreleasing: 1009 Src = RValue::get(EmitObjCExtendObjectLifetime(Dst.getType(), 1010 Src.getScalarVal())); 1011 // fall into the normal path 1012 break; 1013 } 1014 } 1015 1016 if (Dst.isObjCWeak() && !Dst.isNonGC()) { 1017 // load of a __weak object. 1018 llvm::Value *LvalueDst = Dst.getAddress(); 1019 llvm::Value *src = Src.getScalarVal(); 1020 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst); 1021 return; 1022 } 1023 1024 if (Dst.isObjCStrong() && !Dst.isNonGC()) { 1025 // load of a __strong object. 1026 llvm::Value *LvalueDst = Dst.getAddress(); 1027 llvm::Value *src = Src.getScalarVal(); 1028 if (Dst.isObjCIvar()) { 1029 assert(Dst.getBaseIvarExp() && "BaseIvarExp is NULL"); 1030 llvm::Type *ResultType = ConvertType(getContext().LongTy); 1031 llvm::Value *RHS = EmitScalarExpr(Dst.getBaseIvarExp()); 1032 llvm::Value *dst = RHS; 1033 RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast"); 1034 llvm::Value *LHS = 1035 Builder.CreatePtrToInt(LvalueDst, ResultType, "sub.ptr.lhs.cast"); 1036 llvm::Value *BytesBetween = Builder.CreateSub(LHS, RHS, "ivar.offset"); 1037 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, dst, 1038 BytesBetween); 1039 } else if (Dst.isGlobalObjCRef()) { 1040 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst, 1041 Dst.isThreadLocalRef()); 1042 } 1043 else 1044 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst); 1045 return; 1046 } 1047 1048 assert(Src.isScalar() && "Can't emit an agg store with this method"); 1049 EmitStoreOfScalar(Src.getScalarVal(), Dst, isInit); 1050 } 1051 1052 void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst, 1053 llvm::Value **Result) { 1054 const CGBitFieldInfo &Info = Dst.getBitFieldInfo(); 1055 1056 // Get the output type. 1057 llvm::Type *ResLTy = ConvertTypeForMem(Dst.getType()); 1058 unsigned ResSizeInBits = CGM.getTargetData().getTypeSizeInBits(ResLTy); 1059 1060 // Get the source value, truncated to the width of the bit-field. 1061 llvm::Value *SrcVal = Src.getScalarVal(); 1062 1063 if (Dst.getType()->isBooleanType()) 1064 SrcVal = Builder.CreateIntCast(SrcVal, ResLTy, /*IsSigned=*/false); 1065 1066 SrcVal = Builder.CreateAnd(SrcVal, llvm::APInt::getLowBitsSet(ResSizeInBits, 1067 Info.getSize()), 1068 "bf.value"); 1069 1070 // Return the new value of the bit-field, if requested. 1071 if (Result) { 1072 // Cast back to the proper type for result. 1073 llvm::Type *SrcTy = Src.getScalarVal()->getType(); 1074 llvm::Value *ReloadVal = Builder.CreateIntCast(SrcVal, SrcTy, false, 1075 "bf.reload.val"); 1076 1077 // Sign extend if necessary. 1078 if (Info.isSigned()) { 1079 unsigned ExtraBits = ResSizeInBits - Info.getSize(); 1080 if (ExtraBits) 1081 ReloadVal = Builder.CreateAShr(Builder.CreateShl(ReloadVal, ExtraBits), 1082 ExtraBits, "bf.reload.sext"); 1083 } 1084 1085 *Result = ReloadVal; 1086 } 1087 1088 // Iterate over the components, writing each piece to memory. 1089 for (unsigned i = 0, e = Info.getNumComponents(); i != e; ++i) { 1090 const CGBitFieldInfo::AccessInfo &AI = Info.getComponent(i); 1091 1092 // Get the field pointer. 1093 llvm::Value *Ptr = Dst.getBitFieldBaseAddr(); 1094 unsigned addressSpace = 1095 cast<llvm::PointerType>(Ptr->getType())->getAddressSpace(); 1096 1097 // Only offset by the field index if used, so that incoming values are not 1098 // required to be structures. 1099 if (AI.FieldIndex) 1100 Ptr = Builder.CreateStructGEP(Ptr, AI.FieldIndex, "bf.field"); 1101 1102 // Offset by the byte offset, if used. 1103 if (!AI.FieldByteOffset.isZero()) { 1104 Ptr = EmitCastToVoidPtr(Ptr); 1105 Ptr = Builder.CreateConstGEP1_32(Ptr, AI.FieldByteOffset.getQuantity(), 1106 "bf.field.offs"); 1107 } 1108 1109 // Cast to the access type. 1110 llvm::Type *AccessLTy = 1111 llvm::Type::getIntNTy(getLLVMContext(), AI.AccessWidth); 1112 1113 llvm::Type *PTy = AccessLTy->getPointerTo(addressSpace); 1114 Ptr = Builder.CreateBitCast(Ptr, PTy); 1115 1116 // Extract the piece of the bit-field value to write in this access, limited 1117 // to the values that are part of this access. 1118 llvm::Value *Val = SrcVal; 1119 if (AI.TargetBitOffset) 1120 Val = Builder.CreateLShr(Val, AI.TargetBitOffset); 1121 Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(ResSizeInBits, 1122 AI.TargetBitWidth)); 1123 1124 // Extend or truncate to the access size. 1125 if (ResSizeInBits < AI.AccessWidth) 1126 Val = Builder.CreateZExt(Val, AccessLTy); 1127 else if (ResSizeInBits > AI.AccessWidth) 1128 Val = Builder.CreateTrunc(Val, AccessLTy); 1129 1130 // Shift into the position in memory. 1131 if (AI.FieldBitStart) 1132 Val = Builder.CreateShl(Val, AI.FieldBitStart); 1133 1134 // If necessary, load and OR in bits that are outside of the bit-field. 1135 if (AI.TargetBitWidth != AI.AccessWidth) { 1136 llvm::LoadInst *Load = Builder.CreateLoad(Ptr, Dst.isVolatileQualified()); 1137 if (!AI.AccessAlignment.isZero()) 1138 Load->setAlignment(AI.AccessAlignment.getQuantity()); 1139 1140 // Compute the mask for zeroing the bits that are part of the bit-field. 1141 llvm::APInt InvMask = 1142 ~llvm::APInt::getBitsSet(AI.AccessWidth, AI.FieldBitStart, 1143 AI.FieldBitStart + AI.TargetBitWidth); 1144 1145 // Apply the mask and OR in to the value to write. 1146 Val = Builder.CreateOr(Builder.CreateAnd(Load, InvMask), Val); 1147 } 1148 1149 // Write the value. 1150 llvm::StoreInst *Store = Builder.CreateStore(Val, Ptr, 1151 Dst.isVolatileQualified()); 1152 if (!AI.AccessAlignment.isZero()) 1153 Store->setAlignment(AI.AccessAlignment.getQuantity()); 1154 } 1155 } 1156 1157 void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src, 1158 LValue Dst) { 1159 // This access turns into a read/modify/write of the vector. Load the input 1160 // value now. 1161 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(), 1162 Dst.isVolatileQualified()); 1163 const llvm::Constant *Elts = Dst.getExtVectorElts(); 1164 1165 llvm::Value *SrcVal = Src.getScalarVal(); 1166 1167 if (const VectorType *VTy = Dst.getType()->getAs<VectorType>()) { 1168 unsigned NumSrcElts = VTy->getNumElements(); 1169 unsigned NumDstElts = 1170 cast<llvm::VectorType>(Vec->getType())->getNumElements(); 1171 if (NumDstElts == NumSrcElts) { 1172 // Use shuffle vector is the src and destination are the same number of 1173 // elements and restore the vector mask since it is on the side it will be 1174 // stored. 1175 SmallVector<llvm::Constant*, 4> Mask(NumDstElts); 1176 for (unsigned i = 0; i != NumSrcElts; ++i) 1177 Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i); 1178 1179 llvm::Value *MaskV = llvm::ConstantVector::get(Mask); 1180 Vec = Builder.CreateShuffleVector(SrcVal, 1181 llvm::UndefValue::get(Vec->getType()), 1182 MaskV); 1183 } else if (NumDstElts > NumSrcElts) { 1184 // Extended the source vector to the same length and then shuffle it 1185 // into the destination. 1186 // FIXME: since we're shuffling with undef, can we just use the indices 1187 // into that? This could be simpler. 1188 SmallVector<llvm::Constant*, 4> ExtMask; 1189 unsigned i; 1190 for (i = 0; i != NumSrcElts; ++i) 1191 ExtMask.push_back(Builder.getInt32(i)); 1192 for (; i != NumDstElts; ++i) 1193 ExtMask.push_back(llvm::UndefValue::get(Int32Ty)); 1194 llvm::Value *ExtMaskV = llvm::ConstantVector::get(ExtMask); 1195 llvm::Value *ExtSrcVal = 1196 Builder.CreateShuffleVector(SrcVal, 1197 llvm::UndefValue::get(SrcVal->getType()), 1198 ExtMaskV); 1199 // build identity 1200 SmallVector<llvm::Constant*, 4> Mask; 1201 for (unsigned i = 0; i != NumDstElts; ++i) 1202 Mask.push_back(Builder.getInt32(i)); 1203 1204 // modify when what gets shuffled in 1205 for (unsigned i = 0; i != NumSrcElts; ++i) 1206 Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i+NumDstElts); 1207 llvm::Value *MaskV = llvm::ConstantVector::get(Mask); 1208 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV); 1209 } else { 1210 // We should never shorten the vector 1211 llvm_unreachable("unexpected shorten vector length"); 1212 } 1213 } else { 1214 // If the Src is a scalar (not a vector) it must be updating one element. 1215 unsigned InIdx = getAccessedFieldNo(0, Elts); 1216 llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx); 1217 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt); 1218 } 1219 1220 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified()); 1221 } 1222 1223 // setObjCGCLValueClass - sets class of he lvalue for the purpose of 1224 // generating write-barries API. It is currently a global, ivar, 1225 // or neither. 1226 static void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E, 1227 LValue &LV, 1228 bool IsMemberAccess=false) { 1229 if (Ctx.getLangOptions().getGC() == LangOptions::NonGC) 1230 return; 1231 1232 if (isa<ObjCIvarRefExpr>(E)) { 1233 QualType ExpTy = E->getType(); 1234 if (IsMemberAccess && ExpTy->isPointerType()) { 1235 // If ivar is a structure pointer, assigning to field of 1236 // this struct follows gcc's behavior and makes it a non-ivar 1237 // writer-barrier conservatively. 1238 ExpTy = ExpTy->getAs<PointerType>()->getPointeeType(); 1239 if (ExpTy->isRecordType()) { 1240 LV.setObjCIvar(false); 1241 return; 1242 } 1243 } 1244 LV.setObjCIvar(true); 1245 ObjCIvarRefExpr *Exp = cast<ObjCIvarRefExpr>(const_cast<Expr*>(E)); 1246 LV.setBaseIvarExp(Exp->getBase()); 1247 LV.setObjCArray(E->getType()->isArrayType()); 1248 return; 1249 } 1250 1251 if (const DeclRefExpr *Exp = dyn_cast<DeclRefExpr>(E)) { 1252 if (const VarDecl *VD = dyn_cast<VarDecl>(Exp->getDecl())) { 1253 if (VD->hasGlobalStorage()) { 1254 LV.setGlobalObjCRef(true); 1255 LV.setThreadLocalRef(VD->isThreadSpecified()); 1256 } 1257 } 1258 LV.setObjCArray(E->getType()->isArrayType()); 1259 return; 1260 } 1261 1262 if (const UnaryOperator *Exp = dyn_cast<UnaryOperator>(E)) { 1263 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess); 1264 return; 1265 } 1266 1267 if (const ParenExpr *Exp = dyn_cast<ParenExpr>(E)) { 1268 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess); 1269 if (LV.isObjCIvar()) { 1270 // If cast is to a structure pointer, follow gcc's behavior and make it 1271 // a non-ivar write-barrier. 1272 QualType ExpTy = E->getType(); 1273 if (ExpTy->isPointerType()) 1274 ExpTy = ExpTy->getAs<PointerType>()->getPointeeType(); 1275 if (ExpTy->isRecordType()) 1276 LV.setObjCIvar(false); 1277 } 1278 return; 1279 } 1280 1281 if (const GenericSelectionExpr *Exp = dyn_cast<GenericSelectionExpr>(E)) { 1282 setObjCGCLValueClass(Ctx, Exp->getResultExpr(), LV); 1283 return; 1284 } 1285 1286 if (const ImplicitCastExpr *Exp = dyn_cast<ImplicitCastExpr>(E)) { 1287 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess); 1288 return; 1289 } 1290 1291 if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E)) { 1292 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess); 1293 return; 1294 } 1295 1296 if (const ObjCBridgedCastExpr *Exp = dyn_cast<ObjCBridgedCastExpr>(E)) { 1297 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess); 1298 return; 1299 } 1300 1301 if (const ArraySubscriptExpr *Exp = dyn_cast<ArraySubscriptExpr>(E)) { 1302 setObjCGCLValueClass(Ctx, Exp->getBase(), LV); 1303 if (LV.isObjCIvar() && !LV.isObjCArray()) 1304 // Using array syntax to assigning to what an ivar points to is not 1305 // same as assigning to the ivar itself. {id *Names;} Names[i] = 0; 1306 LV.setObjCIvar(false); 1307 else if (LV.isGlobalObjCRef() && !LV.isObjCArray()) 1308 // Using array syntax to assigning to what global points to is not 1309 // same as assigning to the global itself. {id *G;} G[i] = 0; 1310 LV.setGlobalObjCRef(false); 1311 return; 1312 } 1313 1314 if (const MemberExpr *Exp = dyn_cast<MemberExpr>(E)) { 1315 setObjCGCLValueClass(Ctx, Exp->getBase(), LV, true); 1316 // We don't know if member is an 'ivar', but this flag is looked at 1317 // only in the context of LV.isObjCIvar(). 1318 LV.setObjCArray(E->getType()->isArrayType()); 1319 return; 1320 } 1321 } 1322 1323 static llvm::Value * 1324 EmitBitCastOfLValueToProperType(CodeGenFunction &CGF, 1325 llvm::Value *V, llvm::Type *IRType, 1326 StringRef Name = StringRef()) { 1327 unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace(); 1328 return CGF.Builder.CreateBitCast(V, IRType->getPointerTo(AS), Name); 1329 } 1330 1331 static LValue EmitGlobalVarDeclLValue(CodeGenFunction &CGF, 1332 const Expr *E, const VarDecl *VD) { 1333 assert((VD->hasExternalStorage() || VD->isFileVarDecl()) && 1334 "Var decl must have external storage or be a file var decl!"); 1335 1336 llvm::Value *V = CGF.CGM.GetAddrOfGlobalVar(VD); 1337 llvm::Type *RealVarTy = CGF.getTypes().ConvertTypeForMem(VD->getType()); 1338 V = EmitBitCastOfLValueToProperType(CGF, V, RealVarTy); 1339 CharUnits Alignment = CGF.getContext().getDeclAlign(VD); 1340 QualType T = E->getType(); 1341 LValue LV; 1342 if (VD->getType()->isReferenceType()) { 1343 llvm::LoadInst *LI = CGF.Builder.CreateLoad(V); 1344 LI->setAlignment(Alignment.getQuantity()); 1345 V = LI; 1346 LV = CGF.MakeNaturalAlignAddrLValue(V, T); 1347 } else { 1348 LV = CGF.MakeAddrLValue(V, E->getType(), Alignment); 1349 } 1350 setObjCGCLValueClass(CGF.getContext(), E, LV); 1351 return LV; 1352 } 1353 1354 static LValue EmitFunctionDeclLValue(CodeGenFunction &CGF, 1355 const Expr *E, const FunctionDecl *FD) { 1356 llvm::Value *V = CGF.CGM.GetAddrOfFunction(FD); 1357 if (!FD->hasPrototype()) { 1358 if (const FunctionProtoType *Proto = 1359 FD->getType()->getAs<FunctionProtoType>()) { 1360 // Ugly case: for a K&R-style definition, the type of the definition 1361 // isn't the same as the type of a use. Correct for this with a 1362 // bitcast. 1363 QualType NoProtoType = 1364 CGF.getContext().getFunctionNoProtoType(Proto->getResultType()); 1365 NoProtoType = CGF.getContext().getPointerType(NoProtoType); 1366 V = CGF.Builder.CreateBitCast(V, CGF.ConvertType(NoProtoType)); 1367 } 1368 } 1369 CharUnits Alignment = CGF.getContext().getDeclAlign(FD); 1370 return CGF.MakeAddrLValue(V, E->getType(), Alignment); 1371 } 1372 1373 LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) { 1374 const NamedDecl *ND = E->getDecl(); 1375 CharUnits Alignment = getContext().getDeclAlign(ND); 1376 QualType T = E->getType(); 1377 1378 // FIXME: We should be able to assert this for FunctionDecls as well! 1379 // FIXME: We should be able to assert this for all DeclRefExprs, not just 1380 // those with a valid source location. 1381 assert((ND->isUsed(false) || !isa<VarDecl>(ND) || 1382 !E->getLocation().isValid()) && 1383 "Should not use decl without marking it used!"); 1384 1385 if (ND->hasAttr<WeakRefAttr>()) { 1386 const ValueDecl *VD = cast<ValueDecl>(ND); 1387 llvm::Constant *Aliasee = CGM.GetWeakRefReference(VD); 1388 return MakeAddrLValue(Aliasee, E->getType(), Alignment); 1389 } 1390 1391 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) { 1392 1393 // Check if this is a global variable. 1394 if (VD->hasExternalStorage() || VD->isFileVarDecl()) 1395 return EmitGlobalVarDeclLValue(*this, E, VD); 1396 1397 bool NonGCable = VD->hasLocalStorage() && 1398 !VD->getType()->isReferenceType() && 1399 !VD->hasAttr<BlocksAttr>(); 1400 1401 llvm::Value *V = LocalDeclMap[VD]; 1402 if (!V && VD->isStaticLocal()) 1403 V = CGM.getStaticLocalDeclAddress(VD); 1404 assert(V && "DeclRefExpr not entered in LocalDeclMap?"); 1405 1406 if (VD->hasAttr<BlocksAttr>()) 1407 V = BuildBlockByrefAddress(V, VD); 1408 1409 LValue LV; 1410 if (VD->getType()->isReferenceType()) { 1411 llvm::LoadInst *LI = Builder.CreateLoad(V); 1412 LI->setAlignment(Alignment.getQuantity()); 1413 V = LI; 1414 LV = MakeNaturalAlignAddrLValue(V, T); 1415 } else { 1416 LV = MakeAddrLValue(V, T, Alignment); 1417 } 1418 1419 if (NonGCable) { 1420 LV.getQuals().removeObjCGCAttr(); 1421 LV.setNonGC(true); 1422 } 1423 setObjCGCLValueClass(getContext(), E, LV); 1424 return LV; 1425 } 1426 1427 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(ND)) 1428 return EmitFunctionDeclLValue(*this, E, fn); 1429 1430 llvm_unreachable("Unhandled DeclRefExpr"); 1431 } 1432 1433 LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) { 1434 CharUnits Alignment = getContext().getDeclAlign(E->getDecl()); 1435 return MakeAddrLValue(GetAddrOfBlockDecl(E), E->getType(), Alignment); 1436 } 1437 1438 LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) { 1439 // __extension__ doesn't affect lvalue-ness. 1440 if (E->getOpcode() == UO_Extension) 1441 return EmitLValue(E->getSubExpr()); 1442 1443 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType()); 1444 switch (E->getOpcode()) { 1445 default: llvm_unreachable("Unknown unary operator lvalue!"); 1446 case UO_Deref: { 1447 QualType T = E->getSubExpr()->getType()->getPointeeType(); 1448 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type"); 1449 1450 LValue LV = MakeNaturalAlignAddrLValue(EmitScalarExpr(E->getSubExpr()), T); 1451 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace()); 1452 1453 // We should not generate __weak write barrier on indirect reference 1454 // of a pointer to object; as in void foo (__weak id *param); *param = 0; 1455 // But, we continue to generate __strong write barrier on indirect write 1456 // into a pointer to object. 1457 if (getContext().getLangOptions().ObjC1 && 1458 getContext().getLangOptions().getGC() != LangOptions::NonGC && 1459 LV.isObjCWeak()) 1460 LV.setNonGC(!E->isOBJCGCCandidate(getContext())); 1461 return LV; 1462 } 1463 case UO_Real: 1464 case UO_Imag: { 1465 LValue LV = EmitLValue(E->getSubExpr()); 1466 assert(LV.isSimple() && "real/imag on non-ordinary l-value"); 1467 llvm::Value *Addr = LV.getAddress(); 1468 1469 // real and imag are valid on scalars. This is a faster way of 1470 // testing that. 1471 if (!cast<llvm::PointerType>(Addr->getType()) 1472 ->getElementType()->isStructTy()) { 1473 assert(E->getSubExpr()->getType()->isArithmeticType()); 1474 return LV; 1475 } 1476 1477 assert(E->getSubExpr()->getType()->isAnyComplexType()); 1478 1479 unsigned Idx = E->getOpcode() == UO_Imag; 1480 return MakeAddrLValue(Builder.CreateStructGEP(LV.getAddress(), 1481 Idx, "idx"), 1482 ExprTy); 1483 } 1484 case UO_PreInc: 1485 case UO_PreDec: { 1486 LValue LV = EmitLValue(E->getSubExpr()); 1487 bool isInc = E->getOpcode() == UO_PreInc; 1488 1489 if (E->getType()->isAnyComplexType()) 1490 EmitComplexPrePostIncDec(E, LV, isInc, true/*isPre*/); 1491 else 1492 EmitScalarPrePostIncDec(E, LV, isInc, true/*isPre*/); 1493 return LV; 1494 } 1495 } 1496 } 1497 1498 LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) { 1499 return MakeAddrLValue(CGM.GetAddrOfConstantStringFromLiteral(E), 1500 E->getType()); 1501 } 1502 1503 LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) { 1504 return MakeAddrLValue(CGM.GetAddrOfConstantStringFromObjCEncode(E), 1505 E->getType()); 1506 } 1507 1508 1509 LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) { 1510 switch (E->getIdentType()) { 1511 default: 1512 return EmitUnsupportedLValue(E, "predefined expression"); 1513 1514 case PredefinedExpr::Func: 1515 case PredefinedExpr::Function: 1516 case PredefinedExpr::PrettyFunction: { 1517 unsigned Type = E->getIdentType(); 1518 std::string GlobalVarName; 1519 1520 switch (Type) { 1521 default: llvm_unreachable("Invalid type"); 1522 case PredefinedExpr::Func: 1523 GlobalVarName = "__func__."; 1524 break; 1525 case PredefinedExpr::Function: 1526 GlobalVarName = "__FUNCTION__."; 1527 break; 1528 case PredefinedExpr::PrettyFunction: 1529 GlobalVarName = "__PRETTY_FUNCTION__."; 1530 break; 1531 } 1532 1533 StringRef FnName = CurFn->getName(); 1534 if (FnName.startswith("\01")) 1535 FnName = FnName.substr(1); 1536 GlobalVarName += FnName; 1537 1538 const Decl *CurDecl = CurCodeDecl; 1539 if (CurDecl == 0) 1540 CurDecl = getContext().getTranslationUnitDecl(); 1541 1542 std::string FunctionName = 1543 (isa<BlockDecl>(CurDecl) 1544 ? FnName.str() 1545 : PredefinedExpr::ComputeName((PredefinedExpr::IdentType)Type, CurDecl)); 1546 1547 llvm::Constant *C = 1548 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str()); 1549 return MakeAddrLValue(C, E->getType()); 1550 } 1551 } 1552 } 1553 1554 llvm::BasicBlock *CodeGenFunction::getTrapBB() { 1555 const CodeGenOptions &GCO = CGM.getCodeGenOpts(); 1556 1557 // If we are not optimzing, don't collapse all calls to trap in the function 1558 // to the same call, that way, in the debugger they can see which operation 1559 // did in fact fail. If we are optimizing, we collapse all calls to trap down 1560 // to just one per function to save on codesize. 1561 if (GCO.OptimizationLevel && TrapBB) 1562 return TrapBB; 1563 1564 llvm::BasicBlock *Cont = 0; 1565 if (HaveInsertPoint()) { 1566 Cont = createBasicBlock("cont"); 1567 EmitBranch(Cont); 1568 } 1569 TrapBB = createBasicBlock("trap"); 1570 EmitBlock(TrapBB); 1571 1572 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::trap); 1573 llvm::CallInst *TrapCall = Builder.CreateCall(F); 1574 TrapCall->setDoesNotReturn(); 1575 TrapCall->setDoesNotThrow(); 1576 Builder.CreateUnreachable(); 1577 1578 if (Cont) 1579 EmitBlock(Cont); 1580 return TrapBB; 1581 } 1582 1583 /// isSimpleArrayDecayOperand - If the specified expr is a simple decay from an 1584 /// array to pointer, return the array subexpression. 1585 static const Expr *isSimpleArrayDecayOperand(const Expr *E) { 1586 // If this isn't just an array->pointer decay, bail out. 1587 const CastExpr *CE = dyn_cast<CastExpr>(E); 1588 if (CE == 0 || CE->getCastKind() != CK_ArrayToPointerDecay) 1589 return 0; 1590 1591 // If this is a decay from variable width array, bail out. 1592 const Expr *SubExpr = CE->getSubExpr(); 1593 if (SubExpr->getType()->isVariableArrayType()) 1594 return 0; 1595 1596 return SubExpr; 1597 } 1598 1599 LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) { 1600 // The index must always be an integer, which is not an aggregate. Emit it. 1601 llvm::Value *Idx = EmitScalarExpr(E->getIdx()); 1602 QualType IdxTy = E->getIdx()->getType(); 1603 bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType(); 1604 1605 // If the base is a vector type, then we are forming a vector element lvalue 1606 // with this subscript. 1607 if (E->getBase()->getType()->isVectorType()) { 1608 // Emit the vector as an lvalue to get its address. 1609 LValue LHS = EmitLValue(E->getBase()); 1610 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!"); 1611 Idx = Builder.CreateIntCast(Idx, Int32Ty, IdxSigned, "vidx"); 1612 return LValue::MakeVectorElt(LHS.getAddress(), Idx, 1613 E->getBase()->getType()); 1614 } 1615 1616 // Extend or truncate the index type to 32 or 64-bits. 1617 if (Idx->getType() != IntPtrTy) 1618 Idx = Builder.CreateIntCast(Idx, IntPtrTy, IdxSigned, "idxprom"); 1619 1620 // FIXME: As llvm implements the object size checking, this can come out. 1621 if (CatchUndefined) { 1622 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E->getBase())){ 1623 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) { 1624 if (ICE->getCastKind() == CK_ArrayToPointerDecay) { 1625 if (const ConstantArrayType *CAT 1626 = getContext().getAsConstantArrayType(DRE->getType())) { 1627 llvm::APInt Size = CAT->getSize(); 1628 llvm::BasicBlock *Cont = createBasicBlock("cont"); 1629 Builder.CreateCondBr(Builder.CreateICmpULE(Idx, 1630 llvm::ConstantInt::get(Idx->getType(), Size)), 1631 Cont, getTrapBB()); 1632 EmitBlock(Cont); 1633 } 1634 } 1635 } 1636 } 1637 } 1638 1639 // We know that the pointer points to a type of the correct size, unless the 1640 // size is a VLA or Objective-C interface. 1641 llvm::Value *Address = 0; 1642 CharUnits ArrayAlignment; 1643 if (const VariableArrayType *vla = 1644 getContext().getAsVariableArrayType(E->getType())) { 1645 // The base must be a pointer, which is not an aggregate. Emit 1646 // it. It needs to be emitted first in case it's what captures 1647 // the VLA bounds. 1648 Address = EmitScalarExpr(E->getBase()); 1649 1650 // The element count here is the total number of non-VLA elements. 1651 llvm::Value *numElements = getVLASize(vla).first; 1652 1653 // Effectively, the multiply by the VLA size is part of the GEP. 1654 // GEP indexes are signed, and scaling an index isn't permitted to 1655 // signed-overflow, so we use the same semantics for our explicit 1656 // multiply. We suppress this if overflow is not undefined behavior. 1657 if (getLangOptions().isSignedOverflowDefined()) { 1658 Idx = Builder.CreateMul(Idx, numElements); 1659 Address = Builder.CreateGEP(Address, Idx, "arrayidx"); 1660 } else { 1661 Idx = Builder.CreateNSWMul(Idx, numElements); 1662 Address = Builder.CreateInBoundsGEP(Address, Idx, "arrayidx"); 1663 } 1664 } else if (const ObjCObjectType *OIT = E->getType()->getAs<ObjCObjectType>()){ 1665 // Indexing over an interface, as in "NSString *P; P[4];" 1666 llvm::Value *InterfaceSize = 1667 llvm::ConstantInt::get(Idx->getType(), 1668 getContext().getTypeSizeInChars(OIT).getQuantity()); 1669 1670 Idx = Builder.CreateMul(Idx, InterfaceSize); 1671 1672 // The base must be a pointer, which is not an aggregate. Emit it. 1673 llvm::Value *Base = EmitScalarExpr(E->getBase()); 1674 Address = EmitCastToVoidPtr(Base); 1675 Address = Builder.CreateGEP(Address, Idx, "arrayidx"); 1676 Address = Builder.CreateBitCast(Address, Base->getType()); 1677 } else if (const Expr *Array = isSimpleArrayDecayOperand(E->getBase())) { 1678 // If this is A[i] where A is an array, the frontend will have decayed the 1679 // base to be a ArrayToPointerDecay implicit cast. While correct, it is 1680 // inefficient at -O0 to emit a "gep A, 0, 0" when codegen'ing it, then a 1681 // "gep x, i" here. Emit one "gep A, 0, i". 1682 assert(Array->getType()->isArrayType() && 1683 "Array to pointer decay must have array source type!"); 1684 LValue ArrayLV = EmitLValue(Array); 1685 llvm::Value *ArrayPtr = ArrayLV.getAddress(); 1686 llvm::Value *Zero = llvm::ConstantInt::get(Int32Ty, 0); 1687 llvm::Value *Args[] = { Zero, Idx }; 1688 1689 // Propagate the alignment from the array itself to the result. 1690 ArrayAlignment = ArrayLV.getAlignment(); 1691 1692 if (getContext().getLangOptions().isSignedOverflowDefined()) 1693 Address = Builder.CreateGEP(ArrayPtr, Args, "arrayidx"); 1694 else 1695 Address = Builder.CreateInBoundsGEP(ArrayPtr, Args, "arrayidx"); 1696 } else { 1697 // The base must be a pointer, which is not an aggregate. Emit it. 1698 llvm::Value *Base = EmitScalarExpr(E->getBase()); 1699 if (getContext().getLangOptions().isSignedOverflowDefined()) 1700 Address = Builder.CreateGEP(Base, Idx, "arrayidx"); 1701 else 1702 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx"); 1703 } 1704 1705 QualType T = E->getBase()->getType()->getPointeeType(); 1706 assert(!T.isNull() && 1707 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type"); 1708 1709 1710 // Limit the alignment to that of the result type. 1711 LValue LV; 1712 if (!ArrayAlignment.isZero()) { 1713 CharUnits Align = getContext().getTypeAlignInChars(T); 1714 ArrayAlignment = std::min(Align, ArrayAlignment); 1715 LV = MakeAddrLValue(Address, T, ArrayAlignment); 1716 } else { 1717 LV = MakeNaturalAlignAddrLValue(Address, T); 1718 } 1719 1720 LV.getQuals().setAddressSpace(E->getBase()->getType().getAddressSpace()); 1721 1722 if (getContext().getLangOptions().ObjC1 && 1723 getContext().getLangOptions().getGC() != LangOptions::NonGC) { 1724 LV.setNonGC(!E->isOBJCGCCandidate(getContext())); 1725 setObjCGCLValueClass(getContext(), E, LV); 1726 } 1727 return LV; 1728 } 1729 1730 static 1731 llvm::Constant *GenerateConstantVector(CGBuilderTy &Builder, 1732 SmallVector<unsigned, 4> &Elts) { 1733 SmallVector<llvm::Constant*, 4> CElts; 1734 for (unsigned i = 0, e = Elts.size(); i != e; ++i) 1735 CElts.push_back(Builder.getInt32(Elts[i])); 1736 1737 return llvm::ConstantVector::get(CElts); 1738 } 1739 1740 LValue CodeGenFunction:: 1741 EmitExtVectorElementExpr(const ExtVectorElementExpr *E) { 1742 // Emit the base vector as an l-value. 1743 LValue Base; 1744 1745 // ExtVectorElementExpr's base can either be a vector or pointer to vector. 1746 if (E->isArrow()) { 1747 // If it is a pointer to a vector, emit the address and form an lvalue with 1748 // it. 1749 llvm::Value *Ptr = EmitScalarExpr(E->getBase()); 1750 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>(); 1751 Base = MakeAddrLValue(Ptr, PT->getPointeeType()); 1752 Base.getQuals().removeObjCGCAttr(); 1753 } else if (E->getBase()->isGLValue()) { 1754 // Otherwise, if the base is an lvalue ( as in the case of foo.x.x), 1755 // emit the base as an lvalue. 1756 assert(E->getBase()->getType()->isVectorType()); 1757 Base = EmitLValue(E->getBase()); 1758 } else { 1759 // Otherwise, the base is a normal rvalue (as in (V+V).x), emit it as such. 1760 assert(E->getBase()->getType()->isVectorType() && 1761 "Result must be a vector"); 1762 llvm::Value *Vec = EmitScalarExpr(E->getBase()); 1763 1764 // Store the vector to memory (because LValue wants an address). 1765 llvm::Value *VecMem = CreateMemTemp(E->getBase()->getType()); 1766 Builder.CreateStore(Vec, VecMem); 1767 Base = MakeAddrLValue(VecMem, E->getBase()->getType()); 1768 } 1769 1770 QualType type = 1771 E->getType().withCVRQualifiers(Base.getQuals().getCVRQualifiers()); 1772 1773 // Encode the element access list into a vector of unsigned indices. 1774 SmallVector<unsigned, 4> Indices; 1775 E->getEncodedElementAccess(Indices); 1776 1777 if (Base.isSimple()) { 1778 llvm::Constant *CV = GenerateConstantVector(Builder, Indices); 1779 return LValue::MakeExtVectorElt(Base.getAddress(), CV, type); 1780 } 1781 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!"); 1782 1783 llvm::Constant *BaseElts = Base.getExtVectorElts(); 1784 SmallVector<llvm::Constant *, 4> CElts; 1785 1786 for (unsigned i = 0, e = Indices.size(); i != e; ++i) { 1787 if (isa<llvm::ConstantAggregateZero>(BaseElts)) 1788 CElts.push_back(llvm::ConstantInt::get(Int32Ty, 0)); 1789 else 1790 CElts.push_back(cast<llvm::Constant>(BaseElts->getOperand(Indices[i]))); 1791 } 1792 llvm::Constant *CV = llvm::ConstantVector::get(CElts); 1793 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV, type); 1794 } 1795 1796 LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) { 1797 bool isNonGC = false; 1798 Expr *BaseExpr = E->getBase(); 1799 llvm::Value *BaseValue = NULL; 1800 Qualifiers BaseQuals; 1801 1802 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar. 1803 if (E->isArrow()) { 1804 BaseValue = EmitScalarExpr(BaseExpr); 1805 const PointerType *PTy = 1806 BaseExpr->getType()->getAs<PointerType>(); 1807 BaseQuals = PTy->getPointeeType().getQualifiers(); 1808 } else { 1809 LValue BaseLV = EmitLValue(BaseExpr); 1810 if (BaseLV.isNonGC()) 1811 isNonGC = true; 1812 // FIXME: this isn't right for bitfields. 1813 BaseValue = BaseLV.getAddress(); 1814 QualType BaseTy = BaseExpr->getType(); 1815 BaseQuals = BaseTy.getQualifiers(); 1816 } 1817 1818 NamedDecl *ND = E->getMemberDecl(); 1819 if (FieldDecl *Field = dyn_cast<FieldDecl>(ND)) { 1820 LValue LV = EmitLValueForField(BaseValue, Field, 1821 BaseQuals.getCVRQualifiers()); 1822 LV.setNonGC(isNonGC); 1823 setObjCGCLValueClass(getContext(), E, LV); 1824 return LV; 1825 } 1826 1827 if (VarDecl *VD = dyn_cast<VarDecl>(ND)) 1828 return EmitGlobalVarDeclLValue(*this, E, VD); 1829 1830 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) 1831 return EmitFunctionDeclLValue(*this, E, FD); 1832 1833 llvm_unreachable("Unhandled member declaration!"); 1834 } 1835 1836 LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value *BaseValue, 1837 const FieldDecl *Field, 1838 unsigned CVRQualifiers) { 1839 const CGRecordLayout &RL = 1840 CGM.getTypes().getCGRecordLayout(Field->getParent()); 1841 const CGBitFieldInfo &Info = RL.getBitFieldInfo(Field); 1842 return LValue::MakeBitfield(BaseValue, Info, 1843 Field->getType().withCVRQualifiers(CVRQualifiers)); 1844 } 1845 1846 /// EmitLValueForAnonRecordField - Given that the field is a member of 1847 /// an anonymous struct or union buried inside a record, and given 1848 /// that the base value is a pointer to the enclosing record, derive 1849 /// an lvalue for the ultimate field. 1850 LValue CodeGenFunction::EmitLValueForAnonRecordField(llvm::Value *BaseValue, 1851 const IndirectFieldDecl *Field, 1852 unsigned CVRQualifiers) { 1853 IndirectFieldDecl::chain_iterator I = Field->chain_begin(), 1854 IEnd = Field->chain_end(); 1855 while (true) { 1856 LValue LV = EmitLValueForField(BaseValue, cast<FieldDecl>(*I), 1857 CVRQualifiers); 1858 if (++I == IEnd) return LV; 1859 1860 assert(LV.isSimple()); 1861 BaseValue = LV.getAddress(); 1862 CVRQualifiers |= LV.getVRQualifiers(); 1863 } 1864 } 1865 1866 LValue CodeGenFunction::EmitLValueForField(llvm::Value *baseAddr, 1867 const FieldDecl *field, 1868 unsigned cvr) { 1869 if (field->isBitField()) 1870 return EmitLValueForBitfield(baseAddr, field, cvr); 1871 1872 const RecordDecl *rec = field->getParent(); 1873 QualType type = field->getType(); 1874 CharUnits alignment = getContext().getDeclAlign(field); 1875 1876 bool mayAlias = rec->hasAttr<MayAliasAttr>(); 1877 1878 llvm::Value *addr = baseAddr; 1879 if (rec->isUnion()) { 1880 // For unions, there is no pointer adjustment. 1881 assert(!type->isReferenceType() && "union has reference member"); 1882 } else { 1883 // For structs, we GEP to the field that the record layout suggests. 1884 unsigned idx = CGM.getTypes().getCGRecordLayout(rec).getLLVMFieldNo(field); 1885 addr = Builder.CreateStructGEP(addr, idx, field->getName()); 1886 1887 // If this is a reference field, load the reference right now. 1888 if (const ReferenceType *refType = type->getAs<ReferenceType>()) { 1889 llvm::LoadInst *load = Builder.CreateLoad(addr, "ref"); 1890 if (cvr & Qualifiers::Volatile) load->setVolatile(true); 1891 load->setAlignment(alignment.getQuantity()); 1892 1893 if (CGM.shouldUseTBAA()) { 1894 llvm::MDNode *tbaa; 1895 if (mayAlias) 1896 tbaa = CGM.getTBAAInfo(getContext().CharTy); 1897 else 1898 tbaa = CGM.getTBAAInfo(type); 1899 CGM.DecorateInstruction(load, tbaa); 1900 } 1901 1902 addr = load; 1903 mayAlias = false; 1904 type = refType->getPointeeType(); 1905 if (type->isIncompleteType()) 1906 alignment = CharUnits(); 1907 else 1908 alignment = getContext().getTypeAlignInChars(type); 1909 cvr = 0; // qualifiers don't recursively apply to referencee 1910 } 1911 } 1912 1913 // Make sure that the address is pointing to the right type. This is critical 1914 // for both unions and structs. A union needs a bitcast, a struct element 1915 // will need a bitcast if the LLVM type laid out doesn't match the desired 1916 // type. 1917 addr = EmitBitCastOfLValueToProperType(*this, addr, 1918 CGM.getTypes().ConvertTypeForMem(type), 1919 field->getName()); 1920 1921 if (field->hasAttr<AnnotateAttr>()) 1922 addr = EmitFieldAnnotations(field, addr); 1923 1924 LValue LV = MakeAddrLValue(addr, type, alignment); 1925 LV.getQuals().addCVRQualifiers(cvr); 1926 1927 // __weak attribute on a field is ignored. 1928 if (LV.getQuals().getObjCGCAttr() == Qualifiers::Weak) 1929 LV.getQuals().removeObjCGCAttr(); 1930 1931 // Fields of may_alias structs act like 'char' for TBAA purposes. 1932 // FIXME: this should get propagated down through anonymous structs 1933 // and unions. 1934 if (mayAlias && LV.getTBAAInfo()) 1935 LV.setTBAAInfo(CGM.getTBAAInfo(getContext().CharTy)); 1936 1937 return LV; 1938 } 1939 1940 LValue 1941 CodeGenFunction::EmitLValueForFieldInitialization(llvm::Value *BaseValue, 1942 const FieldDecl *Field, 1943 unsigned CVRQualifiers) { 1944 QualType FieldType = Field->getType(); 1945 1946 if (!FieldType->isReferenceType()) 1947 return EmitLValueForField(BaseValue, Field, CVRQualifiers); 1948 1949 const CGRecordLayout &RL = 1950 CGM.getTypes().getCGRecordLayout(Field->getParent()); 1951 unsigned idx = RL.getLLVMFieldNo(Field); 1952 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx); 1953 assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs"); 1954 1955 1956 // Make sure that the address is pointing to the right type. This is critical 1957 // for both unions and structs. A union needs a bitcast, a struct element 1958 // will need a bitcast if the LLVM type laid out doesn't match the desired 1959 // type. 1960 llvm::Type *llvmType = ConvertTypeForMem(FieldType); 1961 unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace(); 1962 V = Builder.CreateBitCast(V, llvmType->getPointerTo(AS)); 1963 1964 CharUnits Alignment = getContext().getDeclAlign(Field); 1965 return MakeAddrLValue(V, FieldType, Alignment); 1966 } 1967 1968 LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr *E){ 1969 if (E->isFileScope()) { 1970 llvm::Value *GlobalPtr = CGM.GetAddrOfConstantCompoundLiteral(E); 1971 return MakeAddrLValue(GlobalPtr, E->getType()); 1972 } 1973 1974 llvm::Value *DeclPtr = CreateMemTemp(E->getType(), ".compoundliteral"); 1975 const Expr *InitExpr = E->getInitializer(); 1976 LValue Result = MakeAddrLValue(DeclPtr, E->getType()); 1977 1978 EmitAnyExprToMem(InitExpr, DeclPtr, E->getType().getQualifiers(), 1979 /*Init*/ true); 1980 1981 return Result; 1982 } 1983 1984 LValue CodeGenFunction:: 1985 EmitConditionalOperatorLValue(const AbstractConditionalOperator *expr) { 1986 if (!expr->isGLValue()) { 1987 // ?: here should be an aggregate. 1988 assert((hasAggregateLLVMType(expr->getType()) && 1989 !expr->getType()->isAnyComplexType()) && 1990 "Unexpected conditional operator!"); 1991 return EmitAggExprToLValue(expr); 1992 } 1993 1994 OpaqueValueMapping binding(*this, expr); 1995 1996 const Expr *condExpr = expr->getCond(); 1997 bool CondExprBool; 1998 if (ConstantFoldsToSimpleInteger(condExpr, CondExprBool)) { 1999 const Expr *live = expr->getTrueExpr(), *dead = expr->getFalseExpr(); 2000 if (!CondExprBool) std::swap(live, dead); 2001 2002 if (!ContainsLabel(dead)) 2003 return EmitLValue(live); 2004 } 2005 2006 llvm::BasicBlock *lhsBlock = createBasicBlock("cond.true"); 2007 llvm::BasicBlock *rhsBlock = createBasicBlock("cond.false"); 2008 llvm::BasicBlock *contBlock = createBasicBlock("cond.end"); 2009 2010 ConditionalEvaluation eval(*this); 2011 EmitBranchOnBoolExpr(condExpr, lhsBlock, rhsBlock); 2012 2013 // Any temporaries created here are conditional. 2014 EmitBlock(lhsBlock); 2015 eval.begin(*this); 2016 LValue lhs = EmitLValue(expr->getTrueExpr()); 2017 eval.end(*this); 2018 2019 if (!lhs.isSimple()) 2020 return EmitUnsupportedLValue(expr, "conditional operator"); 2021 2022 lhsBlock = Builder.GetInsertBlock(); 2023 Builder.CreateBr(contBlock); 2024 2025 // Any temporaries created here are conditional. 2026 EmitBlock(rhsBlock); 2027 eval.begin(*this); 2028 LValue rhs = EmitLValue(expr->getFalseExpr()); 2029 eval.end(*this); 2030 if (!rhs.isSimple()) 2031 return EmitUnsupportedLValue(expr, "conditional operator"); 2032 rhsBlock = Builder.GetInsertBlock(); 2033 2034 EmitBlock(contBlock); 2035 2036 llvm::PHINode *phi = Builder.CreatePHI(lhs.getAddress()->getType(), 2, 2037 "cond-lvalue"); 2038 phi->addIncoming(lhs.getAddress(), lhsBlock); 2039 phi->addIncoming(rhs.getAddress(), rhsBlock); 2040 return MakeAddrLValue(phi, expr->getType()); 2041 } 2042 2043 /// EmitCastLValue - Casts are never lvalues unless that cast is a dynamic_cast. 2044 /// If the cast is a dynamic_cast, we can have the usual lvalue result, 2045 /// otherwise if a cast is needed by the code generator in an lvalue context, 2046 /// then it must mean that we need the address of an aggregate in order to 2047 /// access one of its fields. This can happen for all the reasons that casts 2048 /// are permitted with aggregate result, including noop aggregate casts, and 2049 /// cast from scalar to union. 2050 LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) { 2051 switch (E->getCastKind()) { 2052 case CK_ToVoid: 2053 return EmitUnsupportedLValue(E, "unexpected cast lvalue"); 2054 2055 case CK_Dependent: 2056 llvm_unreachable("dependent cast kind in IR gen!"); 2057 2058 // These two casts are currently treated as no-ops, although they could 2059 // potentially be real operations depending on the target's ABI. 2060 case CK_NonAtomicToAtomic: 2061 case CK_AtomicToNonAtomic: 2062 2063 case CK_NoOp: 2064 case CK_LValueToRValue: 2065 if (!E->getSubExpr()->Classify(getContext()).isPRValue() 2066 || E->getType()->isRecordType()) 2067 return EmitLValue(E->getSubExpr()); 2068 // Fall through to synthesize a temporary. 2069 2070 case CK_BitCast: 2071 case CK_ArrayToPointerDecay: 2072 case CK_FunctionToPointerDecay: 2073 case CK_NullToMemberPointer: 2074 case CK_NullToPointer: 2075 case CK_IntegralToPointer: 2076 case CK_PointerToIntegral: 2077 case CK_PointerToBoolean: 2078 case CK_VectorSplat: 2079 case CK_IntegralCast: 2080 case CK_IntegralToBoolean: 2081 case CK_IntegralToFloating: 2082 case CK_FloatingToIntegral: 2083 case CK_FloatingToBoolean: 2084 case CK_FloatingCast: 2085 case CK_FloatingRealToComplex: 2086 case CK_FloatingComplexToReal: 2087 case CK_FloatingComplexToBoolean: 2088 case CK_FloatingComplexCast: 2089 case CK_FloatingComplexToIntegralComplex: 2090 case CK_IntegralRealToComplex: 2091 case CK_IntegralComplexToReal: 2092 case CK_IntegralComplexToBoolean: 2093 case CK_IntegralComplexCast: 2094 case CK_IntegralComplexToFloatingComplex: 2095 case CK_DerivedToBaseMemberPointer: 2096 case CK_BaseToDerivedMemberPointer: 2097 case CK_MemberPointerToBoolean: 2098 case CK_AnyPointerToBlockPointerCast: 2099 case CK_ARCProduceObject: 2100 case CK_ARCConsumeObject: 2101 case CK_ARCReclaimReturnedObject: 2102 case CK_ARCExtendBlockObject: { 2103 // These casts only produce lvalues when we're binding a reference to a 2104 // temporary realized from a (converted) pure rvalue. Emit the expression 2105 // as a value, copy it into a temporary, and return an lvalue referring to 2106 // that temporary. 2107 llvm::Value *V = CreateMemTemp(E->getType(), "ref.temp"); 2108 EmitAnyExprToMem(E, V, E->getType().getQualifiers(), false); 2109 return MakeAddrLValue(V, E->getType()); 2110 } 2111 2112 case CK_Dynamic: { 2113 LValue LV = EmitLValue(E->getSubExpr()); 2114 llvm::Value *V = LV.getAddress(); 2115 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E); 2116 return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType()); 2117 } 2118 2119 case CK_ConstructorConversion: 2120 case CK_UserDefinedConversion: 2121 case CK_CPointerToObjCPointerCast: 2122 case CK_BlockPointerToObjCPointerCast: 2123 return EmitLValue(E->getSubExpr()); 2124 2125 case CK_UncheckedDerivedToBase: 2126 case CK_DerivedToBase: { 2127 const RecordType *DerivedClassTy = 2128 E->getSubExpr()->getType()->getAs<RecordType>(); 2129 CXXRecordDecl *DerivedClassDecl = 2130 cast<CXXRecordDecl>(DerivedClassTy->getDecl()); 2131 2132 LValue LV = EmitLValue(E->getSubExpr()); 2133 llvm::Value *This = LV.getAddress(); 2134 2135 // Perform the derived-to-base conversion 2136 llvm::Value *Base = 2137 GetAddressOfBaseClass(This, DerivedClassDecl, 2138 E->path_begin(), E->path_end(), 2139 /*NullCheckValue=*/false); 2140 2141 return MakeAddrLValue(Base, E->getType()); 2142 } 2143 case CK_ToUnion: 2144 return EmitAggExprToLValue(E); 2145 case CK_BaseToDerived: { 2146 const RecordType *DerivedClassTy = E->getType()->getAs<RecordType>(); 2147 CXXRecordDecl *DerivedClassDecl = 2148 cast<CXXRecordDecl>(DerivedClassTy->getDecl()); 2149 2150 LValue LV = EmitLValue(E->getSubExpr()); 2151 2152 // Perform the base-to-derived conversion 2153 llvm::Value *Derived = 2154 GetAddressOfDerivedClass(LV.getAddress(), DerivedClassDecl, 2155 E->path_begin(), E->path_end(), 2156 /*NullCheckValue=*/false); 2157 2158 return MakeAddrLValue(Derived, E->getType()); 2159 } 2160 case CK_LValueBitCast: { 2161 // This must be a reinterpret_cast (or c-style equivalent). 2162 const ExplicitCastExpr *CE = cast<ExplicitCastExpr>(E); 2163 2164 LValue LV = EmitLValue(E->getSubExpr()); 2165 llvm::Value *V = Builder.CreateBitCast(LV.getAddress(), 2166 ConvertType(CE->getTypeAsWritten())); 2167 return MakeAddrLValue(V, E->getType()); 2168 } 2169 case CK_ObjCObjectLValueCast: { 2170 LValue LV = EmitLValue(E->getSubExpr()); 2171 QualType ToType = getContext().getLValueReferenceType(E->getType()); 2172 llvm::Value *V = Builder.CreateBitCast(LV.getAddress(), 2173 ConvertType(ToType)); 2174 return MakeAddrLValue(V, E->getType()); 2175 } 2176 } 2177 2178 llvm_unreachable("Unhandled lvalue cast kind?"); 2179 } 2180 2181 LValue CodeGenFunction::EmitNullInitializationLValue( 2182 const CXXScalarValueInitExpr *E) { 2183 QualType Ty = E->getType(); 2184 LValue LV = MakeAddrLValue(CreateMemTemp(Ty), Ty); 2185 EmitNullInitialization(LV.getAddress(), Ty); 2186 return LV; 2187 } 2188 2189 LValue CodeGenFunction::EmitOpaqueValueLValue(const OpaqueValueExpr *e) { 2190 assert(OpaqueValueMappingData::shouldBindAsLValue(e)); 2191 return getOpaqueLValueMapping(e); 2192 } 2193 2194 LValue CodeGenFunction::EmitMaterializeTemporaryExpr( 2195 const MaterializeTemporaryExpr *E) { 2196 RValue RV = EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0); 2197 return MakeAddrLValue(RV.getScalarVal(), E->getType()); 2198 } 2199 2200 2201 //===--------------------------------------------------------------------===// 2202 // Expression Emission 2203 //===--------------------------------------------------------------------===// 2204 2205 RValue CodeGenFunction::EmitCallExpr(const CallExpr *E, 2206 ReturnValueSlot ReturnValue) { 2207 if (CGDebugInfo *DI = getDebugInfo()) 2208 DI->EmitLocation(Builder, E->getLocStart()); 2209 2210 // Builtins never have block type. 2211 if (E->getCallee()->getType()->isBlockPointerType()) 2212 return EmitBlockCallExpr(E, ReturnValue); 2213 2214 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E)) 2215 return EmitCXXMemberCallExpr(CE, ReturnValue); 2216 2217 if (const CUDAKernelCallExpr *CE = dyn_cast<CUDAKernelCallExpr>(E)) 2218 return EmitCUDAKernelCallExpr(CE, ReturnValue); 2219 2220 const Decl *TargetDecl = E->getCalleeDecl(); 2221 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl)) { 2222 if (unsigned builtinID = FD->getBuiltinID()) 2223 return EmitBuiltinExpr(FD, builtinID, E); 2224 } 2225 2226 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E)) 2227 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl)) 2228 return EmitCXXOperatorMemberCallExpr(CE, MD, ReturnValue); 2229 2230 if (const CXXPseudoDestructorExpr *PseudoDtor 2231 = dyn_cast<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) { 2232 QualType DestroyedType = PseudoDtor->getDestroyedType(); 2233 if (getContext().getLangOptions().ObjCAutoRefCount && 2234 DestroyedType->isObjCLifetimeType() && 2235 (DestroyedType.getObjCLifetime() == Qualifiers::OCL_Strong || 2236 DestroyedType.getObjCLifetime() == Qualifiers::OCL_Weak)) { 2237 // Automatic Reference Counting: 2238 // If the pseudo-expression names a retainable object with weak or 2239 // strong lifetime, the object shall be released. 2240 Expr *BaseExpr = PseudoDtor->getBase(); 2241 llvm::Value *BaseValue = NULL; 2242 Qualifiers BaseQuals; 2243 2244 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar. 2245 if (PseudoDtor->isArrow()) { 2246 BaseValue = EmitScalarExpr(BaseExpr); 2247 const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>(); 2248 BaseQuals = PTy->getPointeeType().getQualifiers(); 2249 } else { 2250 LValue BaseLV = EmitLValue(BaseExpr); 2251 BaseValue = BaseLV.getAddress(); 2252 QualType BaseTy = BaseExpr->getType(); 2253 BaseQuals = BaseTy.getQualifiers(); 2254 } 2255 2256 switch (PseudoDtor->getDestroyedType().getObjCLifetime()) { 2257 case Qualifiers::OCL_None: 2258 case Qualifiers::OCL_ExplicitNone: 2259 case Qualifiers::OCL_Autoreleasing: 2260 break; 2261 2262 case Qualifiers::OCL_Strong: 2263 EmitARCRelease(Builder.CreateLoad(BaseValue, 2264 PseudoDtor->getDestroyedType().isVolatileQualified()), 2265 /*precise*/ true); 2266 break; 2267 2268 case Qualifiers::OCL_Weak: 2269 EmitARCDestroyWeak(BaseValue); 2270 break; 2271 } 2272 } else { 2273 // C++ [expr.pseudo]p1: 2274 // The result shall only be used as the operand for the function call 2275 // operator (), and the result of such a call has type void. The only 2276 // effect is the evaluation of the postfix-expression before the dot or 2277 // arrow. 2278 EmitScalarExpr(E->getCallee()); 2279 } 2280 2281 return RValue::get(0); 2282 } 2283 2284 llvm::Value *Callee = EmitScalarExpr(E->getCallee()); 2285 return EmitCall(E->getCallee()->getType(), Callee, ReturnValue, 2286 E->arg_begin(), E->arg_end(), TargetDecl); 2287 } 2288 2289 LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) { 2290 // Comma expressions just emit their LHS then their RHS as an l-value. 2291 if (E->getOpcode() == BO_Comma) { 2292 EmitIgnoredExpr(E->getLHS()); 2293 EnsureInsertPoint(); 2294 return EmitLValue(E->getRHS()); 2295 } 2296 2297 if (E->getOpcode() == BO_PtrMemD || 2298 E->getOpcode() == BO_PtrMemI) 2299 return EmitPointerToDataMemberBinaryExpr(E); 2300 2301 assert(E->getOpcode() == BO_Assign && "unexpected binary l-value"); 2302 2303 // Note that in all of these cases, __block variables need the RHS 2304 // evaluated first just in case the variable gets moved by the RHS. 2305 2306 if (!hasAggregateLLVMType(E->getType())) { 2307 switch (E->getLHS()->getType().getObjCLifetime()) { 2308 case Qualifiers::OCL_Strong: 2309 return EmitARCStoreStrong(E, /*ignored*/ false).first; 2310 2311 case Qualifiers::OCL_Autoreleasing: 2312 return EmitARCStoreAutoreleasing(E).first; 2313 2314 // No reason to do any of these differently. 2315 case Qualifiers::OCL_None: 2316 case Qualifiers::OCL_ExplicitNone: 2317 case Qualifiers::OCL_Weak: 2318 break; 2319 } 2320 2321 RValue RV = EmitAnyExpr(E->getRHS()); 2322 LValue LV = EmitLValue(E->getLHS()); 2323 EmitStoreThroughLValue(RV, LV); 2324 return LV; 2325 } 2326 2327 if (E->getType()->isAnyComplexType()) 2328 return EmitComplexAssignmentLValue(E); 2329 2330 return EmitAggExprToLValue(E); 2331 } 2332 2333 LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) { 2334 RValue RV = EmitCallExpr(E); 2335 2336 if (!RV.isScalar()) 2337 return MakeAddrLValue(RV.getAggregateAddr(), E->getType()); 2338 2339 assert(E->getCallReturnType()->isReferenceType() && 2340 "Can't have a scalar return unless the return type is a " 2341 "reference type!"); 2342 2343 return MakeAddrLValue(RV.getScalarVal(), E->getType()); 2344 } 2345 2346 LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) { 2347 // FIXME: This shouldn't require another copy. 2348 return EmitAggExprToLValue(E); 2349 } 2350 2351 LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) { 2352 assert(E->getType()->getAsCXXRecordDecl()->hasTrivialDestructor() 2353 && "binding l-value to type which needs a temporary"); 2354 AggValueSlot Slot = CreateAggTemp(E->getType()); 2355 EmitCXXConstructExpr(E, Slot); 2356 return MakeAddrLValue(Slot.getAddr(), E->getType()); 2357 } 2358 2359 LValue 2360 CodeGenFunction::EmitCXXTypeidLValue(const CXXTypeidExpr *E) { 2361 return MakeAddrLValue(EmitCXXTypeidExpr(E), E->getType()); 2362 } 2363 2364 LValue 2365 CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) { 2366 AggValueSlot Slot = CreateAggTemp(E->getType(), "temp.lvalue"); 2367 Slot.setExternallyDestructed(); 2368 EmitAggExpr(E->getSubExpr(), Slot); 2369 EmitCXXTemporary(E->getTemporary(), E->getType(), Slot.getAddr()); 2370 return MakeAddrLValue(Slot.getAddr(), E->getType()); 2371 } 2372 2373 LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) { 2374 RValue RV = EmitObjCMessageExpr(E); 2375 2376 if (!RV.isScalar()) 2377 return MakeAddrLValue(RV.getAggregateAddr(), E->getType()); 2378 2379 assert(E->getMethodDecl()->getResultType()->isReferenceType() && 2380 "Can't have a scalar return unless the return type is a " 2381 "reference type!"); 2382 2383 return MakeAddrLValue(RV.getScalarVal(), E->getType()); 2384 } 2385 2386 LValue CodeGenFunction::EmitObjCSelectorLValue(const ObjCSelectorExpr *E) { 2387 llvm::Value *V = 2388 CGM.getObjCRuntime().GetSelector(Builder, E->getSelector(), true); 2389 return MakeAddrLValue(V, E->getType()); 2390 } 2391 2392 llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface, 2393 const ObjCIvarDecl *Ivar) { 2394 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar); 2395 } 2396 2397 LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy, 2398 llvm::Value *BaseValue, 2399 const ObjCIvarDecl *Ivar, 2400 unsigned CVRQualifiers) { 2401 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue, 2402 Ivar, CVRQualifiers); 2403 } 2404 2405 LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) { 2406 // FIXME: A lot of the code below could be shared with EmitMemberExpr. 2407 llvm::Value *BaseValue = 0; 2408 const Expr *BaseExpr = E->getBase(); 2409 Qualifiers BaseQuals; 2410 QualType ObjectTy; 2411 if (E->isArrow()) { 2412 BaseValue = EmitScalarExpr(BaseExpr); 2413 ObjectTy = BaseExpr->getType()->getPointeeType(); 2414 BaseQuals = ObjectTy.getQualifiers(); 2415 } else { 2416 LValue BaseLV = EmitLValue(BaseExpr); 2417 // FIXME: this isn't right for bitfields. 2418 BaseValue = BaseLV.getAddress(); 2419 ObjectTy = BaseExpr->getType(); 2420 BaseQuals = ObjectTy.getQualifiers(); 2421 } 2422 2423 LValue LV = 2424 EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), 2425 BaseQuals.getCVRQualifiers()); 2426 setObjCGCLValueClass(getContext(), E, LV); 2427 return LV; 2428 } 2429 2430 LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) { 2431 // Can only get l-value for message expression returning aggregate type 2432 RValue RV = EmitAnyExprToTemp(E); 2433 return MakeAddrLValue(RV.getAggregateAddr(), E->getType()); 2434 } 2435 2436 RValue CodeGenFunction::EmitCall(QualType CalleeType, llvm::Value *Callee, 2437 ReturnValueSlot ReturnValue, 2438 CallExpr::const_arg_iterator ArgBeg, 2439 CallExpr::const_arg_iterator ArgEnd, 2440 const Decl *TargetDecl) { 2441 // Get the actual function type. The callee type will always be a pointer to 2442 // function type or a block pointer type. 2443 assert(CalleeType->isFunctionPointerType() && 2444 "Call must have function pointer type!"); 2445 2446 CalleeType = getContext().getCanonicalType(CalleeType); 2447 2448 const FunctionType *FnType 2449 = cast<FunctionType>(cast<PointerType>(CalleeType)->getPointeeType()); 2450 2451 CallArgList Args; 2452 EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), ArgBeg, ArgEnd); 2453 2454 const CGFunctionInfo &FnInfo = CGM.getTypes().getFunctionInfo(Args, FnType); 2455 2456 // C99 6.5.2.2p6: 2457 // If the expression that denotes the called function has a type 2458 // that does not include a prototype, [the default argument 2459 // promotions are performed]. If the number of arguments does not 2460 // equal the number of parameters, the behavior is undefined. If 2461 // the function is defined with a type that includes a prototype, 2462 // and either the prototype ends with an ellipsis (, ...) or the 2463 // types of the arguments after promotion are not compatible with 2464 // the types of the parameters, the behavior is undefined. If the 2465 // function is defined with a type that does not include a 2466 // prototype, and the types of the arguments after promotion are 2467 // not compatible with those of the parameters after promotion, 2468 // the behavior is undefined [except in some trivial cases]. 2469 // That is, in the general case, we should assume that a call 2470 // through an unprototyped function type works like a *non-variadic* 2471 // call. The way we make this work is to cast to the exact type 2472 // of the promoted arguments. 2473 if (isa<FunctionNoProtoType>(FnType) && 2474 !getTargetHooks().isNoProtoCallVariadic(FnInfo)) { 2475 assert(cast<llvm::FunctionType>(Callee->getType()->getContainedType(0)) 2476 ->isVarArg()); 2477 llvm::Type *CalleeTy = getTypes().GetFunctionType(FnInfo, false); 2478 CalleeTy = CalleeTy->getPointerTo(); 2479 Callee = Builder.CreateBitCast(Callee, CalleeTy, "callee.knr.cast"); 2480 } 2481 2482 return EmitCall(FnInfo, Callee, ReturnValue, Args, TargetDecl); 2483 } 2484 2485 LValue CodeGenFunction:: 2486 EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E) { 2487 llvm::Value *BaseV; 2488 if (E->getOpcode() == BO_PtrMemI) 2489 BaseV = EmitScalarExpr(E->getLHS()); 2490 else 2491 BaseV = EmitLValue(E->getLHS()).getAddress(); 2492 2493 llvm::Value *OffsetV = EmitScalarExpr(E->getRHS()); 2494 2495 const MemberPointerType *MPT 2496 = E->getRHS()->getType()->getAs<MemberPointerType>(); 2497 2498 llvm::Value *AddV = 2499 CGM.getCXXABI().EmitMemberDataPointerAddress(*this, BaseV, OffsetV, MPT); 2500 2501 return MakeAddrLValue(AddV, MPT->getPointeeType()); 2502 } 2503 2504 static void 2505 EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, llvm::Value *Dest, 2506 llvm::Value *Ptr, llvm::Value *Val1, llvm::Value *Val2, 2507 uint64_t Size, unsigned Align, llvm::AtomicOrdering Order) { 2508 if (E->isCmpXChg()) { 2509 // Note that cmpxchg only supports specifying one ordering and 2510 // doesn't support weak cmpxchg, at least at the moment. 2511 llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1); 2512 LoadVal1->setAlignment(Align); 2513 llvm::LoadInst *LoadVal2 = CGF.Builder.CreateLoad(Val2); 2514 LoadVal2->setAlignment(Align); 2515 llvm::AtomicCmpXchgInst *CXI = 2516 CGF.Builder.CreateAtomicCmpXchg(Ptr, LoadVal1, LoadVal2, Order); 2517 CXI->setVolatile(E->isVolatile()); 2518 llvm::StoreInst *StoreVal1 = CGF.Builder.CreateStore(CXI, Val1); 2519 StoreVal1->setAlignment(Align); 2520 llvm::Value *Cmp = CGF.Builder.CreateICmpEQ(CXI, LoadVal1); 2521 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType())); 2522 return; 2523 } 2524 2525 if (E->getOp() == AtomicExpr::Load) { 2526 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Ptr); 2527 Load->setAtomic(Order); 2528 Load->setAlignment(Size); 2529 Load->setVolatile(E->isVolatile()); 2530 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Load, Dest); 2531 StoreDest->setAlignment(Align); 2532 return; 2533 } 2534 2535 if (E->getOp() == AtomicExpr::Store) { 2536 assert(!Dest && "Store does not return a value"); 2537 llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1); 2538 LoadVal1->setAlignment(Align); 2539 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr); 2540 Store->setAtomic(Order); 2541 Store->setAlignment(Size); 2542 Store->setVolatile(E->isVolatile()); 2543 return; 2544 } 2545 2546 llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add; 2547 switch (E->getOp()) { 2548 case AtomicExpr::CmpXchgWeak: 2549 case AtomicExpr::CmpXchgStrong: 2550 case AtomicExpr::Store: 2551 case AtomicExpr::Init: 2552 case AtomicExpr::Load: assert(0 && "Already handled!"); 2553 case AtomicExpr::Add: Op = llvm::AtomicRMWInst::Add; break; 2554 case AtomicExpr::Sub: Op = llvm::AtomicRMWInst::Sub; break; 2555 case AtomicExpr::And: Op = llvm::AtomicRMWInst::And; break; 2556 case AtomicExpr::Or: Op = llvm::AtomicRMWInst::Or; break; 2557 case AtomicExpr::Xor: Op = llvm::AtomicRMWInst::Xor; break; 2558 case AtomicExpr::Xchg: Op = llvm::AtomicRMWInst::Xchg; break; 2559 } 2560 llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1); 2561 LoadVal1->setAlignment(Align); 2562 llvm::AtomicRMWInst *RMWI = 2563 CGF.Builder.CreateAtomicRMW(Op, Ptr, LoadVal1, Order); 2564 RMWI->setVolatile(E->isVolatile()); 2565 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(RMWI, Dest); 2566 StoreDest->setAlignment(Align); 2567 } 2568 2569 // This function emits any expression (scalar, complex, or aggregate) 2570 // into a temporary alloca. 2571 static llvm::Value * 2572 EmitValToTemp(CodeGenFunction &CGF, Expr *E) { 2573 llvm::Value *DeclPtr = CGF.CreateMemTemp(E->getType(), ".atomictmp"); 2574 CGF.EmitAnyExprToMem(E, DeclPtr, E->getType().getQualifiers(), 2575 /*Init*/ true); 2576 return DeclPtr; 2577 } 2578 2579 static RValue ConvertTempToRValue(CodeGenFunction &CGF, QualType Ty, 2580 llvm::Value *Dest) { 2581 if (Ty->isAnyComplexType()) 2582 return RValue::getComplex(CGF.LoadComplexFromAddr(Dest, false)); 2583 if (CGF.hasAggregateLLVMType(Ty)) 2584 return RValue::getAggregate(Dest); 2585 return RValue::get(CGF.EmitLoadOfScalar(CGF.MakeAddrLValue(Dest, Ty))); 2586 } 2587 2588 RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest) { 2589 QualType AtomicTy = E->getPtr()->getType()->getPointeeType(); 2590 QualType MemTy = AtomicTy->getAs<AtomicType>()->getValueType(); 2591 CharUnits sizeChars = getContext().getTypeSizeInChars(AtomicTy); 2592 uint64_t Size = sizeChars.getQuantity(); 2593 CharUnits alignChars = getContext().getTypeAlignInChars(AtomicTy); 2594 unsigned Align = alignChars.getQuantity(); 2595 unsigned MaxInlineWidth = 2596 getContext().getTargetInfo().getMaxAtomicInlineWidth(); 2597 bool UseLibcall = (Size != Align || Size > MaxInlineWidth); 2598 2599 2600 2601 llvm::Value *Ptr, *Order, *OrderFail = 0, *Val1 = 0, *Val2 = 0; 2602 Ptr = EmitScalarExpr(E->getPtr()); 2603 2604 if (E->getOp() == AtomicExpr::Init) { 2605 assert(!Dest && "Init does not return a value"); 2606 Val1 = EmitScalarExpr(E->getVal1()); 2607 llvm::StoreInst *Store = Builder.CreateStore(Val1, Ptr); 2608 Store->setAlignment(Size); 2609 Store->setVolatile(E->isVolatile()); 2610 return RValue::get(0); 2611 } 2612 2613 Order = EmitScalarExpr(E->getOrder()); 2614 if (E->isCmpXChg()) { 2615 Val1 = EmitScalarExpr(E->getVal1()); 2616 Val2 = EmitValToTemp(*this, E->getVal2()); 2617 OrderFail = EmitScalarExpr(E->getOrderFail()); 2618 (void)OrderFail; // OrderFail is unused at the moment 2619 } else if ((E->getOp() == AtomicExpr::Add || E->getOp() == AtomicExpr::Sub) && 2620 MemTy->isPointerType()) { 2621 // For pointers, we're required to do a bit of math: adding 1 to an int* 2622 // is not the same as adding 1 to a uintptr_t. 2623 QualType Val1Ty = E->getVal1()->getType(); 2624 llvm::Value *Val1Scalar = EmitScalarExpr(E->getVal1()); 2625 CharUnits PointeeIncAmt = 2626 getContext().getTypeSizeInChars(MemTy->getPointeeType()); 2627 Val1Scalar = Builder.CreateMul(Val1Scalar, CGM.getSize(PointeeIncAmt)); 2628 Val1 = CreateMemTemp(Val1Ty, ".atomictmp"); 2629 EmitStoreOfScalar(Val1Scalar, MakeAddrLValue(Val1, Val1Ty)); 2630 } else if (E->getOp() != AtomicExpr::Load) { 2631 Val1 = EmitValToTemp(*this, E->getVal1()); 2632 } 2633 2634 if (E->getOp() != AtomicExpr::Store && !Dest) 2635 Dest = CreateMemTemp(E->getType(), ".atomicdst"); 2636 2637 if (UseLibcall) { 2638 // FIXME: Finalize what the libcalls are actually supposed to look like. 2639 // See also http://gcc.gnu.org/wiki/Atomic/GCCMM/LIbrary . 2640 return EmitUnsupportedRValue(E, "atomic library call"); 2641 } 2642 #if 0 2643 if (UseLibcall) { 2644 const char* LibCallName; 2645 switch (E->getOp()) { 2646 case AtomicExpr::CmpXchgWeak: 2647 LibCallName = "__atomic_compare_exchange_generic"; break; 2648 case AtomicExpr::CmpXchgStrong: 2649 LibCallName = "__atomic_compare_exchange_generic"; break; 2650 case AtomicExpr::Add: LibCallName = "__atomic_fetch_add_generic"; break; 2651 case AtomicExpr::Sub: LibCallName = "__atomic_fetch_sub_generic"; break; 2652 case AtomicExpr::And: LibCallName = "__atomic_fetch_and_generic"; break; 2653 case AtomicExpr::Or: LibCallName = "__atomic_fetch_or_generic"; break; 2654 case AtomicExpr::Xor: LibCallName = "__atomic_fetch_xor_generic"; break; 2655 case AtomicExpr::Xchg: LibCallName = "__atomic_exchange_generic"; break; 2656 case AtomicExpr::Store: LibCallName = "__atomic_store_generic"; break; 2657 case AtomicExpr::Load: LibCallName = "__atomic_load_generic"; break; 2658 } 2659 llvm::SmallVector<QualType, 4> Params; 2660 CallArgList Args; 2661 QualType RetTy = getContext().VoidTy; 2662 if (E->getOp() != AtomicExpr::Store && !E->isCmpXChg()) 2663 Args.add(RValue::get(EmitCastToVoidPtr(Dest)), 2664 getContext().VoidPtrTy); 2665 Args.add(RValue::get(EmitCastToVoidPtr(Ptr)), 2666 getContext().VoidPtrTy); 2667 if (E->getOp() != AtomicExpr::Load) 2668 Args.add(RValue::get(EmitCastToVoidPtr(Val1)), 2669 getContext().VoidPtrTy); 2670 if (E->isCmpXChg()) { 2671 Args.add(RValue::get(EmitCastToVoidPtr(Val2)), 2672 getContext().VoidPtrTy); 2673 RetTy = getContext().IntTy; 2674 } 2675 Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)), 2676 getContext().getSizeType()); 2677 const CGFunctionInfo &FuncInfo = 2678 CGM.getTypes().getFunctionInfo(RetTy, Args, FunctionType::ExtInfo()); 2679 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FuncInfo, false); 2680 llvm::Constant *Func = CGM.CreateRuntimeFunction(FTy, LibCallName); 2681 RValue Res = EmitCall(FuncInfo, Func, ReturnValueSlot(), Args); 2682 if (E->isCmpXChg()) 2683 return Res; 2684 if (E->getOp() == AtomicExpr::Store) 2685 return RValue::get(0); 2686 return ConvertTempToRValue(*this, E->getType(), Dest); 2687 } 2688 #endif 2689 llvm::Type *IPtrTy = 2690 llvm::IntegerType::get(getLLVMContext(), Size * 8)->getPointerTo(); 2691 llvm::Value *OrigDest = Dest; 2692 Ptr = Builder.CreateBitCast(Ptr, IPtrTy); 2693 if (Val1) Val1 = Builder.CreateBitCast(Val1, IPtrTy); 2694 if (Val2) Val2 = Builder.CreateBitCast(Val2, IPtrTy); 2695 if (Dest && !E->isCmpXChg()) Dest = Builder.CreateBitCast(Dest, IPtrTy); 2696 2697 if (isa<llvm::ConstantInt>(Order)) { 2698 int ord = cast<llvm::ConstantInt>(Order)->getZExtValue(); 2699 switch (ord) { 2700 case 0: // memory_order_relaxed 2701 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2702 llvm::Monotonic); 2703 break; 2704 case 1: // memory_order_consume 2705 case 2: // memory_order_acquire 2706 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2707 llvm::Acquire); 2708 break; 2709 case 3: // memory_order_release 2710 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2711 llvm::Release); 2712 break; 2713 case 4: // memory_order_acq_rel 2714 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2715 llvm::AcquireRelease); 2716 break; 2717 case 5: // memory_order_seq_cst 2718 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2719 llvm::SequentiallyConsistent); 2720 break; 2721 default: // invalid order 2722 // We should not ever get here normally, but it's hard to 2723 // enforce that in general. 2724 break; 2725 } 2726 if (E->getOp() == AtomicExpr::Store || E->getOp() == AtomicExpr::Init) 2727 return RValue::get(0); 2728 return ConvertTempToRValue(*this, E->getType(), OrigDest); 2729 } 2730 2731 // Long case, when Order isn't obviously constant. 2732 2733 // Create all the relevant BB's 2734 llvm::BasicBlock *MonotonicBB = 0, *AcquireBB = 0, *ReleaseBB = 0, 2735 *AcqRelBB = 0, *SeqCstBB = 0; 2736 MonotonicBB = createBasicBlock("monotonic", CurFn); 2737 if (E->getOp() != AtomicExpr::Store) 2738 AcquireBB = createBasicBlock("acquire", CurFn); 2739 if (E->getOp() != AtomicExpr::Load) 2740 ReleaseBB = createBasicBlock("release", CurFn); 2741 if (E->getOp() != AtomicExpr::Load && E->getOp() != AtomicExpr::Store) 2742 AcqRelBB = createBasicBlock("acqrel", CurFn); 2743 SeqCstBB = createBasicBlock("seqcst", CurFn); 2744 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn); 2745 2746 // Create the switch for the split 2747 // MonotonicBB is arbitrarily chosen as the default case; in practice, this 2748 // doesn't matter unless someone is crazy enough to use something that 2749 // doesn't fold to a constant for the ordering. 2750 Order = Builder.CreateIntCast(Order, Builder.getInt32Ty(), false); 2751 llvm::SwitchInst *SI = Builder.CreateSwitch(Order, MonotonicBB); 2752 2753 // Emit all the different atomics 2754 Builder.SetInsertPoint(MonotonicBB); 2755 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2756 llvm::Monotonic); 2757 Builder.CreateBr(ContBB); 2758 if (E->getOp() != AtomicExpr::Store) { 2759 Builder.SetInsertPoint(AcquireBB); 2760 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2761 llvm::Acquire); 2762 Builder.CreateBr(ContBB); 2763 SI->addCase(Builder.getInt32(1), AcquireBB); 2764 SI->addCase(Builder.getInt32(2), AcquireBB); 2765 } 2766 if (E->getOp() != AtomicExpr::Load) { 2767 Builder.SetInsertPoint(ReleaseBB); 2768 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2769 llvm::Release); 2770 Builder.CreateBr(ContBB); 2771 SI->addCase(Builder.getInt32(3), ReleaseBB); 2772 } 2773 if (E->getOp() != AtomicExpr::Load && E->getOp() != AtomicExpr::Store) { 2774 Builder.SetInsertPoint(AcqRelBB); 2775 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2776 llvm::AcquireRelease); 2777 Builder.CreateBr(ContBB); 2778 SI->addCase(Builder.getInt32(4), AcqRelBB); 2779 } 2780 Builder.SetInsertPoint(SeqCstBB); 2781 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align, 2782 llvm::SequentiallyConsistent); 2783 Builder.CreateBr(ContBB); 2784 SI->addCase(Builder.getInt32(5), SeqCstBB); 2785 2786 // Cleanup and return 2787 Builder.SetInsertPoint(ContBB); 2788 if (E->getOp() == AtomicExpr::Store) 2789 return RValue::get(0); 2790 return ConvertTempToRValue(*this, E->getType(), OrigDest); 2791 } 2792 2793 void CodeGenFunction::SetFPAccuracy(llvm::Value *Val, unsigned AccuracyN, 2794 unsigned AccuracyD) { 2795 assert(Val->getType()->isFPOrFPVectorTy()); 2796 if (!AccuracyN || !isa<llvm::Instruction>(Val)) 2797 return; 2798 2799 llvm::Value *Vals[2]; 2800 Vals[0] = llvm::ConstantInt::get(Int32Ty, AccuracyN); 2801 Vals[1] = llvm::ConstantInt::get(Int32Ty, AccuracyD); 2802 llvm::MDNode *Node = llvm::MDNode::get(getLLVMContext(), Vals); 2803 2804 cast<llvm::Instruction>(Val)->setMetadata(llvm::LLVMContext::MD_fpaccuracy, 2805 Node); 2806 } 2807 2808 namespace { 2809 struct LValueOrRValue { 2810 LValue LV; 2811 RValue RV; 2812 }; 2813 } 2814 2815 static LValueOrRValue emitPseudoObjectExpr(CodeGenFunction &CGF, 2816 const PseudoObjectExpr *E, 2817 bool forLValue, 2818 AggValueSlot slot) { 2819 llvm::SmallVector<CodeGenFunction::OpaqueValueMappingData, 4> opaques; 2820 2821 // Find the result expression, if any. 2822 const Expr *resultExpr = E->getResultExpr(); 2823 LValueOrRValue result; 2824 2825 for (PseudoObjectExpr::const_semantics_iterator 2826 i = E->semantics_begin(), e = E->semantics_end(); i != e; ++i) { 2827 const Expr *semantic = *i; 2828 2829 // If this semantic expression is an opaque value, bind it 2830 // to the result of its source expression. 2831 if (const OpaqueValueExpr *ov = dyn_cast<OpaqueValueExpr>(semantic)) { 2832 2833 // If this is the result expression, we may need to evaluate 2834 // directly into the slot. 2835 typedef CodeGenFunction::OpaqueValueMappingData OVMA; 2836 OVMA opaqueData; 2837 if (ov == resultExpr && ov->isRValue() && !forLValue && 2838 CodeGenFunction::hasAggregateLLVMType(ov->getType()) && 2839 !ov->getType()->isAnyComplexType()) { 2840 CGF.EmitAggExpr(ov->getSourceExpr(), slot); 2841 2842 LValue LV = CGF.MakeAddrLValue(slot.getAddr(), ov->getType()); 2843 opaqueData = OVMA::bind(CGF, ov, LV); 2844 result.RV = slot.asRValue(); 2845 2846 // Otherwise, emit as normal. 2847 } else { 2848 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr()); 2849 2850 // If this is the result, also evaluate the result now. 2851 if (ov == resultExpr) { 2852 if (forLValue) 2853 result.LV = CGF.EmitLValue(ov); 2854 else 2855 result.RV = CGF.EmitAnyExpr(ov, slot); 2856 } 2857 } 2858 2859 opaques.push_back(opaqueData); 2860 2861 // Otherwise, if the expression is the result, evaluate it 2862 // and remember the result. 2863 } else if (semantic == resultExpr) { 2864 if (forLValue) 2865 result.LV = CGF.EmitLValue(semantic); 2866 else 2867 result.RV = CGF.EmitAnyExpr(semantic, slot); 2868 2869 // Otherwise, evaluate the expression in an ignored context. 2870 } else { 2871 CGF.EmitIgnoredExpr(semantic); 2872 } 2873 } 2874 2875 // Unbind all the opaques now. 2876 for (unsigned i = 0, e = opaques.size(); i != e; ++i) 2877 opaques[i].unbind(CGF); 2878 2879 return result; 2880 } 2881 2882 RValue CodeGenFunction::EmitPseudoObjectRValue(const PseudoObjectExpr *E, 2883 AggValueSlot slot) { 2884 return emitPseudoObjectExpr(*this, E, false, slot).RV; 2885 } 2886 2887 LValue CodeGenFunction::EmitPseudoObjectLValue(const PseudoObjectExpr *E) { 2888 return emitPseudoObjectExpr(*this, E, true, AggValueSlot::ignored()).LV; 2889 } 2890