1 //==- CGObjCRuntime.cpp - Interface to Shared Objective-C Runtime Features ==// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This abstract class defines the interface for Objective-C runtime-specific 10 // code generation. It provides some concrete helper methods for functionality 11 // shared between all (or most) of the Objective-C runtimes supported by clang. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "CGObjCRuntime.h" 16 #include "CGCXXABI.h" 17 #include "CGCleanup.h" 18 #include "CGRecordLayout.h" 19 #include "CodeGenFunction.h" 20 #include "CodeGenModule.h" 21 #include "clang/AST/RecordLayout.h" 22 #include "clang/AST/StmtObjC.h" 23 #include "clang/CodeGen/CGFunctionInfo.h" 24 #include "clang/CodeGen/CodeGenABITypes.h" 25 #include "llvm/IR/Instruction.h" 26 #include "llvm/Support/SaveAndRestore.h" 27 28 using namespace clang; 29 using namespace CodeGen; 30 31 uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM, 32 const ObjCInterfaceDecl *OID, 33 const ObjCIvarDecl *Ivar) { 34 return CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar) / 35 CGM.getContext().getCharWidth(); 36 } 37 38 uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM, 39 const ObjCImplementationDecl *OID, 40 const ObjCIvarDecl *Ivar) { 41 return CGM.getContext().lookupFieldBitOffset(OID->getClassInterface(), OID, 42 Ivar) / 43 CGM.getContext().getCharWidth(); 44 } 45 46 unsigned CGObjCRuntime::ComputeBitfieldBitOffset( 47 CodeGen::CodeGenModule &CGM, 48 const ObjCInterfaceDecl *ID, 49 const ObjCIvarDecl *Ivar) { 50 return CGM.getContext().lookupFieldBitOffset(ID, ID->getImplementation(), 51 Ivar); 52 } 53 54 LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF, 55 const ObjCInterfaceDecl *OID, 56 llvm::Value *BaseValue, 57 const ObjCIvarDecl *Ivar, 58 unsigned CVRQualifiers, 59 llvm::Value *Offset) { 60 // Compute (type*) ( (char *) BaseValue + Offset) 61 QualType InterfaceTy{OID->getTypeForDecl(), 0}; 62 QualType ObjectPtrTy = 63 CGF.CGM.getContext().getObjCObjectPointerType(InterfaceTy); 64 QualType IvarTy = 65 Ivar->getUsageType(ObjectPtrTy).withCVRQualifiers(CVRQualifiers); 66 llvm::Value *V = BaseValue; 67 V = CGF.Builder.CreateInBoundsGEP(CGF.Int8Ty, V, Offset, "add.ptr"); 68 69 if (!Ivar->isBitField()) { 70 LValue LV = CGF.MakeNaturalAlignRawAddrLValue(V, IvarTy); 71 return LV; 72 } 73 74 // We need to compute an access strategy for this bit-field. We are given the 75 // offset to the first byte in the bit-field, the sub-byte offset is taken 76 // from the original layout. We reuse the normal bit-field access strategy by 77 // treating this as an access to a struct where the bit-field is in byte 0, 78 // and adjust the containing type size as appropriate. 79 // 80 // FIXME: Note that currently we make a very conservative estimate of the 81 // alignment of the bit-field, because (a) it is not clear what guarantees the 82 // runtime makes us, and (b) we don't have a way to specify that the struct is 83 // at an alignment plus offset. 84 // 85 // Note, there is a subtle invariant here: we can only call this routine on 86 // non-synthesized ivars but we may be called for synthesized ivars. However, 87 // a synthesized ivar can never be a bit-field, so this is safe. 88 uint64_t FieldBitOffset = 89 CGF.CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar); 90 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth(); 91 uint64_t AlignmentBits = CGF.CGM.getTarget().getCharAlign(); 92 uint64_t BitFieldSize = Ivar->getBitWidthValue(); 93 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits( 94 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits)); 95 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits); 96 97 // Allocate a new CGBitFieldInfo object to describe this access. 98 // 99 // FIXME: This is incredibly wasteful, these should be uniqued or part of some 100 // layout object. However, this is blocked on other cleanups to the 101 // Objective-C code, so for now we just live with allocating a bunch of these 102 // objects. 103 CGBitFieldInfo *Info = new (CGF.CGM.getContext()) CGBitFieldInfo( 104 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize, 105 CGF.CGM.getContext().toBits(StorageSize), 106 CharUnits::fromQuantity(0))); 107 108 Address Addr = 109 Address(V, llvm::Type::getIntNTy(CGF.getLLVMContext(), Info->StorageSize), 110 Alignment); 111 112 return LValue::MakeBitfield(Addr, *Info, IvarTy, 113 LValueBaseInfo(AlignmentSource::Decl), 114 TBAAAccessInfo()); 115 } 116 117 namespace { 118 struct CatchHandler { 119 const VarDecl *Variable; 120 const Stmt *Body; 121 llvm::BasicBlock *Block; 122 llvm::Constant *TypeInfo; 123 /// Flags used to differentiate cleanups and catchalls in Windows SEH 124 unsigned Flags; 125 }; 126 127 struct CallObjCEndCatch final : EHScopeStack::Cleanup { 128 CallObjCEndCatch(bool MightThrow, llvm::FunctionCallee Fn) 129 : MightThrow(MightThrow), Fn(Fn) {} 130 bool MightThrow; 131 llvm::FunctionCallee Fn; 132 133 void Emit(CodeGenFunction &CGF, Flags flags) override { 134 if (MightThrow) 135 CGF.EmitRuntimeCallOrInvoke(Fn); 136 else 137 CGF.EmitNounwindRuntimeCall(Fn); 138 } 139 }; 140 } 141 142 void CGObjCRuntime::EmitTryCatchStmt(CodeGenFunction &CGF, 143 const ObjCAtTryStmt &S, 144 llvm::FunctionCallee beginCatchFn, 145 llvm::FunctionCallee endCatchFn, 146 llvm::FunctionCallee exceptionRethrowFn) { 147 // Jump destination for falling out of catch bodies. 148 CodeGenFunction::JumpDest Cont; 149 if (S.getNumCatchStmts()) 150 Cont = CGF.getJumpDestInCurrentScope("eh.cont"); 151 152 bool useFunclets = EHPersonality::get(CGF).usesFuncletPads(); 153 154 CodeGenFunction::FinallyInfo FinallyInfo; 155 if (!useFunclets) 156 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt()) 157 FinallyInfo.enter(CGF, Finally->getFinallyBody(), 158 beginCatchFn, endCatchFn, exceptionRethrowFn); 159 160 SmallVector<CatchHandler, 8> Handlers; 161 162 163 // Enter the catch, if there is one. 164 if (S.getNumCatchStmts()) { 165 for (const ObjCAtCatchStmt *CatchStmt : S.catch_stmts()) { 166 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl(); 167 168 Handlers.push_back(CatchHandler()); 169 CatchHandler &Handler = Handlers.back(); 170 Handler.Variable = CatchDecl; 171 Handler.Body = CatchStmt->getCatchBody(); 172 Handler.Block = CGF.createBasicBlock("catch"); 173 Handler.Flags = 0; 174 175 // @catch(...) always matches. 176 if (!CatchDecl) { 177 auto catchAll = getCatchAllTypeInfo(); 178 Handler.TypeInfo = catchAll.RTTI; 179 Handler.Flags = catchAll.Flags; 180 // Don't consider any other catches. 181 break; 182 } 183 184 Handler.TypeInfo = GetEHType(CatchDecl->getType()); 185 } 186 187 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size()); 188 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) 189 Catch->setHandler(I, { Handlers[I].TypeInfo, Handlers[I].Flags }, Handlers[I].Block); 190 } 191 192 if (useFunclets) 193 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt()) { 194 CodeGenFunction HelperCGF(CGM, /*suppressNewContext=*/true); 195 if (!CGF.CurSEHParent) 196 CGF.CurSEHParent = cast<NamedDecl>(CGF.CurFuncDecl); 197 // Outline the finally block. 198 const Stmt *FinallyBlock = Finally->getFinallyBody(); 199 HelperCGF.startOutlinedSEHHelper(CGF, /*isFilter*/false, FinallyBlock); 200 201 // Emit the original filter expression, convert to i32, and return. 202 HelperCGF.EmitStmt(FinallyBlock); 203 204 HelperCGF.FinishFunction(FinallyBlock->getEndLoc()); 205 206 llvm::Function *FinallyFunc = HelperCGF.CurFn; 207 208 209 // Push a cleanup for __finally blocks. 210 CGF.pushSEHCleanup(NormalAndEHCleanup, FinallyFunc); 211 } 212 213 214 // Emit the try body. 215 CGF.EmitStmt(S.getTryBody()); 216 217 // Leave the try. 218 if (S.getNumCatchStmts()) 219 CGF.popCatchScope(); 220 221 // Remember where we were. 222 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); 223 224 // Emit the handlers. 225 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) { 226 CatchHandler &Handler = Handlers[I]; 227 228 CGF.EmitBlock(Handler.Block); 229 230 CodeGenFunction::LexicalScope Cleanups(CGF, Handler.Body->getSourceRange()); 231 SaveAndRestore RevertAfterScope(CGF.CurrentFuncletPad); 232 if (useFunclets) { 233 llvm::BasicBlock::iterator CPICandidate = 234 Handler.Block->getFirstNonPHIIt(); 235 if (CPICandidate != Handler.Block->end()) { 236 if (auto *CPI = dyn_cast_or_null<llvm::CatchPadInst>(CPICandidate)) { 237 CGF.CurrentFuncletPad = CPI; 238 CPI->setOperand(2, CGF.getExceptionSlot().emitRawPointer(CGF)); 239 CGF.EHStack.pushCleanup<CatchRetScope>(NormalCleanup, CPI); 240 } 241 } 242 } 243 244 llvm::Value *RawExn = CGF.getExceptionFromSlot(); 245 246 // Enter the catch. 247 llvm::Value *Exn = RawExn; 248 if (beginCatchFn) 249 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted"); 250 251 if (endCatchFn) { 252 // Add a cleanup to leave the catch. 253 bool EndCatchMightThrow = (Handler.Variable == nullptr); 254 255 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup, 256 EndCatchMightThrow, 257 endCatchFn); 258 } 259 260 // Bind the catch parameter if it exists. 261 if (const VarDecl *CatchParam = Handler.Variable) { 262 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType()); 263 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType); 264 265 CGF.EmitAutoVarDecl(*CatchParam); 266 EmitInitOfCatchParam(CGF, CastExn, CatchParam); 267 } 268 269 CGF.ObjCEHValueStack.push_back(Exn); 270 CGF.EmitStmt(Handler.Body); 271 CGF.ObjCEHValueStack.pop_back(); 272 273 // Leave any cleanups associated with the catch. 274 Cleanups.ForceCleanup(); 275 276 CGF.EmitBranchThroughCleanup(Cont); 277 } 278 279 // Go back to the try-statement fallthrough. 280 CGF.Builder.restoreIP(SavedIP); 281 282 // Pop out of the finally. 283 if (!useFunclets && S.getFinallyStmt()) 284 FinallyInfo.exit(CGF); 285 286 if (Cont.isValid()) 287 CGF.EmitBlock(Cont.getBlock()); 288 } 289 290 void CGObjCRuntime::EmitInitOfCatchParam(CodeGenFunction &CGF, 291 llvm::Value *exn, 292 const VarDecl *paramDecl) { 293 294 Address paramAddr = CGF.GetAddrOfLocalVar(paramDecl); 295 296 switch (paramDecl->getType().getQualifiers().getObjCLifetime()) { 297 case Qualifiers::OCL_Strong: 298 exn = CGF.EmitARCRetainNonBlock(exn); 299 [[fallthrough]]; 300 301 case Qualifiers::OCL_None: 302 case Qualifiers::OCL_ExplicitNone: 303 case Qualifiers::OCL_Autoreleasing: 304 CGF.Builder.CreateStore(exn, paramAddr); 305 return; 306 307 case Qualifiers::OCL_Weak: 308 CGF.EmitARCInitWeak(paramAddr, exn); 309 return; 310 } 311 llvm_unreachable("invalid ownership qualifier"); 312 } 313 314 namespace { 315 struct CallSyncExit final : EHScopeStack::Cleanup { 316 llvm::FunctionCallee SyncExitFn; 317 llvm::Value *SyncArg; 318 CallSyncExit(llvm::FunctionCallee SyncExitFn, llvm::Value *SyncArg) 319 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {} 320 321 void Emit(CodeGenFunction &CGF, Flags flags) override { 322 CGF.EmitNounwindRuntimeCall(SyncExitFn, SyncArg); 323 } 324 }; 325 } 326 327 void CGObjCRuntime::EmitAtSynchronizedStmt(CodeGenFunction &CGF, 328 const ObjCAtSynchronizedStmt &S, 329 llvm::FunctionCallee syncEnterFn, 330 llvm::FunctionCallee syncExitFn) { 331 CodeGenFunction::RunCleanupsScope cleanups(CGF); 332 333 // Evaluate the lock operand. This is guaranteed to dominate the 334 // ARC release and lock-release cleanups. 335 const Expr *lockExpr = S.getSynchExpr(); 336 llvm::Value *lock; 337 if (CGF.getLangOpts().ObjCAutoRefCount) { 338 lock = CGF.EmitARCRetainScalarExpr(lockExpr); 339 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock); 340 } else { 341 lock = CGF.EmitScalarExpr(lockExpr); 342 } 343 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy); 344 345 // Acquire the lock. 346 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow(); 347 348 // Register an all-paths cleanup to release the lock. 349 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock); 350 351 // Emit the body of the statement. 352 CGF.EmitStmt(S.getSynchBody()); 353 } 354 355 /// Compute the pointer-to-function type to which a message send 356 /// should be casted in order to correctly call the given method 357 /// with the given arguments. 358 /// 359 /// \param method - may be null 360 /// \param resultType - the result type to use if there's no method 361 /// \param callArgs - the actual arguments, including implicit ones 362 CGObjCRuntime::MessageSendInfo 363 CGObjCRuntime::getMessageSendInfo(const ObjCMethodDecl *method, 364 QualType resultType, 365 CallArgList &callArgs) { 366 unsigned ProgramAS = CGM.getDataLayout().getProgramAddressSpace(); 367 368 llvm::PointerType *signatureType = 369 llvm::PointerType::get(CGM.getLLVMContext(), ProgramAS); 370 371 // If there's a method, use information from that. 372 if (method) { 373 const CGFunctionInfo &signature = 374 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty); 375 376 const CGFunctionInfo &signatureForCall = 377 CGM.getTypes().arrangeCall(signature, callArgs); 378 379 return MessageSendInfo(signatureForCall, signatureType); 380 } 381 382 // There's no method; just use a default CC. 383 const CGFunctionInfo &argsInfo = 384 CGM.getTypes().arrangeUnprototypedObjCMessageSend(resultType, callArgs); 385 386 return MessageSendInfo(argsInfo, signatureType); 387 } 388 389 bool CGObjCRuntime::canMessageReceiverBeNull(CodeGenFunction &CGF, 390 const ObjCMethodDecl *method, 391 bool isSuper, 392 const ObjCInterfaceDecl *classReceiver, 393 llvm::Value *receiver) { 394 // Super dispatch assumes that self is non-null; even the messenger 395 // doesn't have a null check internally. 396 if (isSuper) 397 return false; 398 399 // If this is a direct dispatch of a class method, check whether the class, 400 // or anything in its hierarchy, was weak-linked. 401 if (classReceiver && method && method->isClassMethod()) 402 return isWeakLinkedClass(classReceiver); 403 404 // If we're emitting a method, and self is const (meaning just ARC, for now), 405 // and the receiver is a load of self, then self is a valid object. 406 if (auto curMethod = 407 dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl)) { 408 auto self = curMethod->getSelfDecl(); 409 if (self->getType().isConstQualified()) { 410 if (auto LI = dyn_cast<llvm::LoadInst>(receiver->stripPointerCasts())) { 411 llvm::Value *selfAddr = CGF.GetAddrOfLocalVar(self).emitRawPointer(CGF); 412 if (selfAddr == LI->getPointerOperand()) { 413 return false; 414 } 415 } 416 } 417 } 418 419 // Otherwise, assume it can be null. 420 return true; 421 } 422 423 bool CGObjCRuntime::isWeakLinkedClass(const ObjCInterfaceDecl *ID) { 424 do { 425 if (ID->isWeakImported()) 426 return true; 427 } while ((ID = ID->getSuperClass())); 428 429 return false; 430 } 431 432 void CGObjCRuntime::destroyCalleeDestroyedArguments(CodeGenFunction &CGF, 433 const ObjCMethodDecl *method, 434 const CallArgList &callArgs) { 435 CallArgList::const_iterator I = callArgs.begin(); 436 for (auto i = method->param_begin(), e = method->param_end(); 437 i != e; ++i, ++I) { 438 const ParmVarDecl *param = (*i); 439 if (param->hasAttr<NSConsumedAttr>()) { 440 RValue RV = I->getRValue(CGF); 441 assert(RV.isScalar() && 442 "NullReturnState::complete - arg not on object"); 443 CGF.EmitARCRelease(RV.getScalarVal(), ARCImpreciseLifetime); 444 } else { 445 QualType QT = param->getType(); 446 auto *RT = QT->getAs<RecordType>(); 447 if (RT && RT->getDecl()->isParamDestroyedInCallee()) { 448 RValue RV = I->getRValue(CGF); 449 QualType::DestructionKind DtorKind = QT.isDestructedType(); 450 switch (DtorKind) { 451 case QualType::DK_cxx_destructor: 452 CGF.destroyCXXObject(CGF, RV.getAggregateAddress(), QT); 453 break; 454 case QualType::DK_nontrivial_c_struct: 455 CGF.destroyNonTrivialCStruct(CGF, RV.getAggregateAddress(), QT); 456 break; 457 default: 458 llvm_unreachable("unexpected dtor kind"); 459 break; 460 } 461 } 462 } 463 } 464 } 465 466 llvm::Constant * 467 clang::CodeGen::emitObjCProtocolObject(CodeGenModule &CGM, 468 const ObjCProtocolDecl *protocol) { 469 return CGM.getObjCRuntime().GetOrEmitProtocol(protocol); 470 } 471 472 std::string CGObjCRuntime::getSymbolNameForMethod(const ObjCMethodDecl *OMD, 473 bool includeCategoryName) { 474 std::string buffer; 475 llvm::raw_string_ostream out(buffer); 476 CGM.getCXXABI().getMangleContext().mangleObjCMethodName(OMD, out, 477 /*includePrefixByte=*/true, 478 includeCategoryName); 479 return buffer; 480 } 481