clang 24.0.0git
CGObjCRuntime.cpp
Go to the documentation of this file.
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 "Address.h"
17#include "CGCXXABI.h"
18#include "CGCleanup.h"
19#include "CGRecordLayout.h"
20#include "CodeGenFunction.h"
21#include "CodeGenModule.h"
23#include "clang/AST/StmtObjC.h"
26#include "llvm/IR/Instruction.h"
27#include "llvm/IR/Instructions.h"
28#include "llvm/Support/ErrorHandling.h"
29#include "llvm/Support/SaveAndRestore.h"
30
31using namespace clang;
32using namespace CodeGen;
33
35 const ObjCInterfaceDecl *OID,
36 const ObjCIvarDecl *Ivar) {
37 return CGM.getContext().lookupFieldBitOffset(OID, Ivar) /
38 CGM.getContext().getCharWidth();
39}
40
42 const ObjCImplementationDecl *OID,
43 const ObjCIvarDecl *Ivar) {
44 return CGM.getContext().lookupFieldBitOffset(OID->getClassInterface(), Ivar) /
45 CGM.getContext().getCharWidth();
46}
47
50 const ObjCInterfaceDecl *ID,
51 const ObjCIvarDecl *Ivar) {
52 return CGM.getContext().lookupFieldBitOffset(ID, Ivar);
53}
54
56 const ObjCInterfaceDecl *OID,
57 llvm::Value *BaseValue,
58 const ObjCIvarDecl *Ivar,
59 unsigned CVRQualifiers,
60 llvm::Value *Offset) {
61 // Compute (type*) ( (char *) BaseValue + Offset)
62 QualType InterfaceTy{OID->getTypeForDecl(), 0};
63 QualType ObjectPtrTy =
64 CGF.CGM.getContext().getObjCObjectPointerType(InterfaceTy);
65 QualType IvarTy =
66 Ivar->getUsageType(ObjectPtrTy).withCVRQualifiers(CVRQualifiers);
67 llvm::Value *V = BaseValue;
68 V = CGF.Builder.CreateInBoundsGEP(CGF.Int8Ty, V, Offset, "add.ptr");
69
70 if (!Ivar->isBitField()) {
71 LValue LV = CGF.MakeNaturalAlignRawAddrLValue(V, IvarTy);
72 return LV;
73 }
74
75 // We need to compute an access strategy for this bit-field. We are given the
76 // offset to the first byte in the bit-field, the sub-byte offset is taken
77 // from the original layout. We reuse the normal bit-field access strategy by
78 // treating this as an access to a struct where the bit-field is in byte 0,
79 // and adjust the containing type size as appropriate.
80 //
81 // FIXME: Note that currently we make a very conservative estimate of the
82 // alignment of the bit-field, because (a) it is not clear what guarantees the
83 // runtime makes us, and (b) we don't have a way to specify that the struct is
84 // at an alignment plus offset.
85 //
86 // Note, there is a subtle invariant here: we can only call this routine on
87 // non-synthesized ivars but we may be called for synthesized ivars. However,
88 // a synthesized ivar can never be a bit-field, so this is safe.
89 uint64_t FieldBitOffset =
90 CGF.CGM.getContext().lookupFieldBitOffset(OID, Ivar);
91 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
92 uint64_t AlignmentBits = CGF.CGM.getTarget().getCharAlign();
93 uint64_t BitFieldSize = Ivar->getBitWidthValue();
94 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits(
95 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
96 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits);
97
98 // Allocate a new CGBitFieldInfo object to describe this access.
99 //
100 // FIXME: This is incredibly wasteful, these should be uniqued or part of some
101 // layout object. However, this is blocked on other cleanups to the
102 // Objective-C code, so for now we just live with allocating a bunch of these
103 // objects.
104 CGBitFieldInfo *Info = new (CGF.CGM.getContext()) CGBitFieldInfo(
105 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
106 CGF.CGM.getContext().toBits(StorageSize),
108
109 Address Addr =
110 Address(V, llvm::Type::getIntNTy(CGF.getLLVMContext(), Info->StorageSize),
111 Alignment);
112
113 return LValue::MakeBitfield(Addr, *Info, IvarTy,
116}
117
118namespace {
119 struct CatchHandler {
120 const VarDecl *Variable;
121 const Stmt *Body;
122 llvm::BasicBlock *Block;
123 llvm::Constant *TypeInfo;
124 /// Flags used to differentiate cleanups and catchalls in Windows SEH
125 unsigned Flags;
126 };
127
128 struct CallObjCEndCatch final : EHScopeStack::Cleanup {
129 CallObjCEndCatch(bool MightThrow, llvm::FunctionCallee Fn)
130 : MightThrow(MightThrow), Fn(Fn) {}
131 bool MightThrow;
132 llvm::FunctionCallee Fn;
133
134 void Emit(CodeGenFunction &CGF, Flags flags) override {
135 if (MightThrow)
137 else
139 }
140 };
141}
142
144 const ObjCAtTryStmt &S,
145 llvm::FunctionCallee beginCatchFn,
146 llvm::FunctionCallee endCatchFn,
147 llvm::FunctionCallee exceptionRethrowFn) {
148 // Jump destination for falling out of catch bodies.
150 if (S.getNumCatchStmts())
151 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
152
153 bool useFunclets = EHPersonality::get(CGF).usesFuncletPads();
154 bool IsWasm = EHPersonality::get(CGF).isWasmPersonality();
155 bool IsMSVC = EHPersonality::get(CGF).isMSVCPersonality();
156
158 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt()) {
159 if (!useFunclets) {
160 // The finally statement is executed as a cleanup for the normal and
161 // exceptional control flow out of a try-catch block. This is all
162 // implemented in FinallyInfo. Here we enter a new EHCatchScope.
163 FinallyInfo.enter(CGF, Finally->getFinallyBody(), beginCatchFn,
164 endCatchFn, exceptionRethrowFn);
165 } else if (IsWasm) {
166 CGF.ErrorUnsupported(Finally,
167 "@finally is not implemented for WebAssembly");
168 } else if (IsMSVC) {
169 CodeGenFunction HelperCGF(CGM, /*suppressNewContext=*/true);
170 if (!CGF.CurSEHParent)
172 const Stmt *FinallyBlock = Finally->getFinallyBody();
173 HelperCGF.startOutlinedSEHHelper(CGF, /*isFilter*/ false, FinallyBlock);
174 HelperCGF.EmitStmt(FinallyBlock);
175 HelperCGF.FinishFunction(FinallyBlock->getEndLoc());
176
177 llvm::Function *FinallyFunc = HelperCGF.CurFn;
178 CGF.pushSEHCleanup(NormalAndEHCleanup, FinallyFunc);
179 }
180 }
181
183
184 // Enter the catch, if there is one.
185 if (S.getNumCatchStmts()) {
186 for (const ObjCAtCatchStmt *CatchStmt : S.catch_stmts()) {
187 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
188
189 Handlers.push_back(CatchHandler());
190 CatchHandler &Handler = Handlers.back();
191 Handler.Variable = CatchDecl;
192 Handler.Body = CatchStmt->getCatchBody();
193 Handler.Block = CGF.createBasicBlock("catch");
194 Handler.Flags = 0;
195
196 // @catch(...) always matches.
197 if (!CatchDecl) {
198 auto catchAll = getCatchAllTypeInfo();
199 Handler.TypeInfo = catchAll.RTTI;
200 Handler.Flags = catchAll.Flags;
201 // Don't consider any other catches.
202 break;
203 }
204
205 Handler.TypeInfo = GetEHType(CatchDecl->getType());
206 }
207
208 // Create a new catch scope
209 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
210 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
211 Catch->setHandler(I, { Handlers[I].TypeInfo, Handlers[I].Flags }, Handlers[I].Block);
212 }
213
214 // Emit the try body.
215 CGF.EmitStmt(S.getTryBody());
216
217 // Leave the try.
218 llvm::BasicBlock *DispatchBlock = nullptr;
219 if (S.getNumCatchStmts()) {
220 EHCatchScope &CatchScope = cast<EHCatchScope>(*CGF.EHStack.begin());
221 if (CatchScope.hasEHBranches())
222 DispatchBlock = CatchScope.getCachedEHDispatchBlock();
223 CGF.popCatchScope();
224 }
225
226 // We save the old funclet pad here before we traverse each catch handler.
227 SaveAndRestore RestoreCurrentFuncletPad(CGF.CurrentFuncletPad);
228 llvm::BasicBlock *WasmCatchStartBlock = nullptr;
229 llvm::CatchPadInst *CPI = nullptr;
230 if (DispatchBlock && IsWasm) {
231 auto *CatchSwitch =
232 cast<llvm::CatchSwitchInst>(DispatchBlock->getFirstNonPHIIt());
233 WasmCatchStartBlock = CatchSwitch->hasUnwindDest()
234 ? CatchSwitch->getSuccessor(1)
235 : CatchSwitch->getSuccessor(0);
236 CPI = cast<llvm::CatchPadInst>(WasmCatchStartBlock->getFirstNonPHIIt());
237 CGF.CurrentFuncletPad = CPI;
238 }
239
240 // Remember where we were.
241 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
242
243 // Emit the handlers. If there is no catch-all handler, we need to emit a
244 // fallthrough block in WASM. We therefore need to know if we have a
245 // catch-all handler in this catch scope.
246 bool HasCatchAll = false;
247 for (CatchHandler &Handler : Handlers) {
248 HasCatchAll |= Handler.TypeInfo == nullptr;
249 CGF.EmitBlock(Handler.Block);
250
251 CodeGenFunction::LexicalScope Cleanups(CGF, Handler.Body->getSourceRange());
252 SaveAndRestore RevertAfterScope(CGF.CurrentFuncletPad);
253 if (IsMSVC) {
254 llvm::BasicBlock::iterator CPICandidate =
255 Handler.Block->getFirstNonPHIIt();
256 if (CPICandidate != Handler.Block->end()) {
257 if ((CPI = dyn_cast_or_null<llvm::CatchPadInst>(CPICandidate))) {
258 CGF.CurrentFuncletPad = CPI;
259 CPI->setOperand(2, CGF.getExceptionSlot().emitRawPointer(CGF));
260 }
261 }
262 }
263
264 if (CPI) {
265 // A catchpad requires a matching catchret instruction. We emit this in
266 // form of a cleanup.
267 CGF.EHStack.pushCleanup<CatchRetScope>(NormalCleanup, CPI);
268 }
269
270 llvm::Value *RawExn = CGF.getExceptionFromSlot();
271
272 // Enter the catch.
273 llvm::Value *Exn = RawExn;
274 if (beginCatchFn)
275 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted");
276
277 if (endCatchFn) {
278 // Add a cleanup to leave the catch.
279 bool EndCatchMightThrow = (Handler.Variable == nullptr);
280
281 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
282 EndCatchMightThrow,
283 endCatchFn);
284 }
285
286 // Bind the catch parameter if it exists.
287 if (const VarDecl *CatchParam = Handler.Variable) {
288 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
289 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
290
291 CGF.EmitAutoVarDecl(*CatchParam);
292 EmitInitOfCatchParam(CGF, CastExn, CatchParam);
293 }
294
295 // The body of the handler might have more try-catch blocks, so we need to
296 // save the current exception before emitting the body.
297 CGF.ObjCEHValueStack.push_back(Exn);
298 CGF.EmitStmt(Handler.Body);
299 CGF.ObjCEHValueStack.pop_back();
300
301 // Leave any cleanups associated with the catch.
302 Cleanups.ForceCleanup();
303
304 CGF.EmitBranchThroughCleanup(Cont);
305 }
306
307 if (IsWasm && !HasCatchAll && WasmCatchStartBlock) {
308 CGF.WasmEmitFallthroughRethrow(WasmCatchStartBlock);
309 }
310
311 // Go back to the try-statement fallthrough.
312 CGF.Builder.restoreIP(SavedIP);
313
314 // Pop out of the finally.
315 if (!useFunclets && S.getFinallyStmt())
316 FinallyInfo.exit(CGF);
317
318 if (Cont.isValid())
319 CGF.EmitBlock(Cont.getBlock());
320}
321
323 llvm::Value *exn,
324 const VarDecl *paramDecl) {
325
326 Address paramAddr = CGF.GetAddrOfLocalVar(paramDecl);
327
328 switch (paramDecl->getType().getQualifiers().getObjCLifetime()) {
330 exn = CGF.EmitARCRetainNonBlock(exn);
331 [[fallthrough]];
332
336 CGF.Builder.CreateStore(exn, paramAddr);
337 return;
338
340 CGF.EmitARCInitWeak(paramAddr, exn);
341 return;
342 }
343 llvm_unreachable("invalid ownership qualifier");
344}
345
346namespace {
347 struct CallSyncExit final : EHScopeStack::Cleanup {
348 llvm::FunctionCallee SyncExitFn;
349 llvm::Value *SyncArg;
350 CallSyncExit(llvm::FunctionCallee SyncExitFn, llvm::Value *SyncArg)
351 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
352
353 void Emit(CodeGenFunction &CGF, Flags flags) override {
354 CGF.EmitNounwindRuntimeCall(SyncExitFn, SyncArg);
355 }
356 };
357}
358
360 const ObjCAtSynchronizedStmt &S,
361 llvm::FunctionCallee syncEnterFn,
362 llvm::FunctionCallee syncExitFn) {
364
365 // Evaluate the lock operand. This is guaranteed to dominate the
366 // ARC release and lock-release cleanups.
367 const Expr *lockExpr = S.getSynchExpr();
368 llvm::Value *lock;
369 if (CGF.getLangOpts().ObjCAutoRefCount) {
370 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
371 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
372 } else {
373 lock = CGF.EmitScalarExpr(lockExpr);
374 }
375 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
376
377 // Acquire the lock.
378 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow();
379
380 // Register an all-paths cleanup to release the lock.
381 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock);
382
383 // Emit the body of the statement.
384 CGF.EmitStmt(S.getSynchBody());
385}
386
387/// Compute the pointer-to-function type to which a message send
388/// should be casted in order to correctly call the given method
389/// with the given arguments.
390///
391/// \param method - may be null
392/// \param resultType - the result type to use if there's no method
393/// \param callArgs - the actual arguments, including implicit ones
396 QualType resultType,
397 CallArgList &callArgs) {
398 unsigned ProgramAS = CGM.getDataLayout().getProgramAddressSpace();
399
400 llvm::PointerType *signatureType =
401 llvm::PointerType::get(CGM.getLLVMContext(), ProgramAS);
402
403 // FIXME: Pass the enclosing FunctionDecl so Objective-C message sends use
404 // the caller's target features when arranging their ABI.
405 // If there's a method, use information from that.
406 if (method) {
407 const CGFunctionInfo &signature =
408 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty);
409
410 const CGFunctionInfo &signatureForCall =
411 CGM.getTypes().arrangeCall(signature, callArgs, /*ABIInfoFD=*/nullptr);
412
413 return MessageSendInfo(signatureForCall, signatureType);
414 }
415
416 // There's no method; just use a default CC.
417 const CGFunctionInfo &argsInfo =
418 CGM.getTypes().arrangeUnprototypedObjCMessageSend(resultType, callArgs);
419
420 return MessageSendInfo(argsInfo, signatureType);
421}
422
424 CodeGenFunction &CGF, const ObjCMethodDecl *method, bool isSuper,
425 const ObjCInterfaceDecl *classReceiver, llvm::Value *receiver) {
426 // Super dispatch assumes that self is non-null; even the messenger
427 // doesn't have a null check internally.
428 if (isSuper)
429 return false;
430
431 // If this is a direct dispatch of a class method, check whether the class,
432 // or anything in its hierarchy, was weak-linked.
433 if (classReceiver && method && method->isClassMethod())
434 return isWeakLinkedClass(classReceiver);
435
436 // If we're emitting a method, and self is const (meaning just ARC, for now),
437 // and the receiver is a load of self, then self is a valid object.
438 if (auto curMethod = dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl)) {
439 auto self = curMethod->getSelfDecl();
440 if (self->getType().isConstQualified()) {
441 if (auto LI = dyn_cast<llvm::LoadInst>(receiver->stripPointerCasts())) {
442 llvm::Value *selfAddr = CGF.GetAddrOfLocalVar(self).emitRawPointer(CGF);
443 if (selfAddr == LI->getPointerOperand()) {
444 return false;
445 }
446 }
447 }
448 }
449
450 // Otherwise, assume it can be null.
451 return true;
452}
453
455 const ObjCInterfaceDecl *CalleeClassDecl, CodeGenFunction &CGF) const {
456 // TODO
457 // Otherwise, assume it can be unrealized.
458 return true;
459}
460
462 do {
463 if (ID->isWeakImported())
464 return true;
465 } while ((ID = ID->getSuperClass()));
466
467 return false;
468}
469
471 const ObjCMethodDecl *method,
472 const CallArgList &callArgs) {
473 CallArgList::const_iterator I = callArgs.begin();
474 for (auto i = method->param_begin(), e = method->param_end();
475 i != e; ++i, ++I) {
476 const ParmVarDecl *param = (*i);
477 if (param->hasAttr<NSConsumedAttr>()) {
478 RValue RV = I->getRValue(CGF);
479 assert(RV.isScalar() &&
480 "NullReturnState::complete - arg not on object");
482 } else {
483 QualType QT = param->getType();
484 auto *RD = QT->getAsRecordDecl();
485 if (RD && RD->isParamDestroyedInCallee()) {
486 RValue RV = I->getRValue(CGF);
488 switch (DtorKind) {
490 CGF.destroyCXXObject(CGF, RV.getAggregateAddress(), QT);
491 break;
494 break;
495 default:
496 llvm_unreachable("unexpected dtor kind");
497 break;
498 }
499 }
500 }
501 }
502}
503
504llvm::Constant *
509
511 bool includeCategoryName,
512 bool useDirectABI) {
513 std::string buffer;
514 llvm::raw_string_ostream out(buffer);
515 CGM.getCXXABI().getMangleContext().mangleObjCMethodName(
516 OMD, out, /*includePrefixByte=*/true, includeCategoryName, useDirectABI);
517 return buffer;
518}
#define V(N, I)
Defines the Objective-C statement AST node classes.
uint64_t lookupFieldBitOffset(const ObjCInterfaceDecl *OID, const ObjCIvarDecl *Ivar) const
Get the offset of an ObjCIvarDecl in bits.
QualType getObjCObjectPointerType(QualType OIT) const
Return a ObjCObjectPointerType type for the given ObjCObjectType.
int64_t toBits(CharUnits CharSize) const
Convert a size in characters to a size in bits.
CharUnits toCharUnitsFromBits(int64_t BitSize) const
Convert a size in bits to a size in characters.
uint64_t getCharWidth() const
Return the size of the character type, in bits.
CharUnits - This is an opaque type for sizes expressed in character units.
Definition CharUnits.h:38
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
Definition CharUnits.h:63
Like RawAddress, an abstract representation of an aligned address, but the pointer contained in this ...
Definition Address.h:128
llvm::Value * emitRawPointer(CodeGenFunction &CGF) const
Return the pointer contained in this class after authenticating it and adding offset to it if necessa...
Definition Address.h:253
llvm::StoreInst * CreateStore(llvm::Value *Val, Address Addr, bool IsVolatile=false)
Definition CGBuilder.h:146
Address CreateInBoundsGEP(Address Addr, ArrayRef< llvm::Value * > IdxList, llvm::Type *ElementType, CharUnits Align, const Twine &Name="")
Definition CGBuilder.h:356
CGFunctionInfo - Class to encapsulate the information about a function definition.
virtual llvm::Constant * GetEHType(QualType T)=0
Get the type constant to catch for the given ObjC pointer type.
std::string getSymbolNameForMethod(const ObjCMethodDecl *method, bool includeCategoryName=true, bool useDirectABI=false)
virtual CatchTypeInfo getCatchAllTypeInfo()
void EmitInitOfCatchParam(CodeGenFunction &CGF, llvm::Value *exn, const VarDecl *paramDecl)
bool canMessageReceiverBeNull(CodeGenFunction &CGF, const ObjCMethodDecl *method, bool isSuper, const ObjCInterfaceDecl *classReceiver, llvm::Value *receiver)
bool canClassObjectBeUnrealized(const ObjCInterfaceDecl *ClassDecl, CodeGenFunction &CGF) const
Check if a class object can be unrealized (not yet initialized).
static void destroyCalleeDestroyedArguments(CodeGenFunction &CGF, const ObjCMethodDecl *method, const CallArgList &callArgs)
Destroy the callee-destroyed arguments of the given method, if it has any.
LValue EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *OID, llvm::Value *BaseValue, const ObjCIvarDecl *Ivar, unsigned CVRQualifiers, llvm::Value *Offset)
uint64_t ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM, const ObjCInterfaceDecl *OID, const ObjCIvarDecl *Ivar)
Compute an offset to the given ivar, suitable for passing to EmitValueForIvarAtOffset.
static bool isWeakLinkedClass(const ObjCInterfaceDecl *cls)
virtual llvm::Constant * GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0
GetOrEmitProtocol - Get the protocol object for the given declaration, emitting it if necessary.
void EmitTryCatchStmt(CodeGenFunction &CGF, const ObjCAtTryStmt &S, llvm::FunctionCallee beginCatchFn, llvm::FunctionCallee endCatchFn, llvm::FunctionCallee exceptionRethrowFn)
Emits a try / catch statement.
CodeGen::CodeGenModule & CGM
MessageSendInfo getMessageSendInfo(const ObjCMethodDecl *method, QualType resultType, CallArgList &callArgs)
Compute the pointer-to-function type to which a message send should be casted in order to correctly c...
void EmitAtSynchronizedStmt(CodeGenFunction &CGF, const ObjCAtSynchronizedStmt &S, llvm::FunctionCallee syncEnterFn, llvm::FunctionCallee syncExitFn)
Emits an @synchronize() statement, using the syncEnterFn and syncExitFn arguments as the functions ca...
unsigned ComputeBitfieldBitOffset(CodeGen::CodeGenModule &CGM, const ObjCInterfaceDecl *ID, const ObjCIvarDecl *Ivar)
CallArgList - Type for representing both the value and type of arguments in a call.
Definition CGCall.h:277
A class controlling the emission of a finally block.
void enter(CodeGenFunction &CGF, const Stmt *Finally, llvm::FunctionCallee beginCatchFn, llvm::FunctionCallee endCatchFn, llvm::FunctionCallee rethrowFn)
Enters a finally block for an implementation using zero-cost exceptions.
void ForceCleanup()
Force the emission of cleanups now, instead of waiting until this object is destroyed.
Enters a new scope for capturing cleanups, all of which will be executed once the scope is exited.
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
llvm::Value * EmitObjCConsumeObject(QualType T, llvm::Value *Ptr)
Produce the code for a CK_ARCConsumeObject.
Definition CGObjC.cpp:2171
JumpDest getJumpDestInCurrentScope(llvm::BasicBlock *Target)
The given basic block lies in the current EH scope, but may be a target of a potentially scope-crossi...
void EmitARCInitWeak(Address addr, llvm::Value *value)
i8* @objc_initWeak(i8** addr, i8* value) Returns value.
Definition CGObjC.cpp:2682
llvm::Value * getExceptionFromSlot()
Returns the contents of the function's exception object and selector slots.
llvm::Type * ConvertType(QualType T)
llvm::CallBase * EmitRuntimeCallOrInvoke(llvm::FunctionCallee callee, ArrayRef< llvm::Value * > args, const Twine &name="")
Emits a call or invoke instruction to the given runtime function.
Definition CGCall.cpp:5512
void EmitAutoVarDecl(const VarDecl &D)
EmitAutoVarDecl - Emit an auto variable declaration.
Definition CGDecl.cpp:1356
llvm::BasicBlock * createBasicBlock(const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
createBasicBlock - Create an LLVM basic block.
const LangOptions & getLangOpts() const
void EmitBranchThroughCleanup(JumpDest Dest)
EmitBranchThroughCleanup - Emit a branch from the current insert block through the normal cleanup han...
const Decl * CurCodeDecl
CurCodeDecl - This is the inner-most code context, which includes blocks.
void EmitARCRelease(llvm::Value *value, ARCPreciseLifetime_t precise)
Release the given object.
Definition CGObjC.cpp:2500
Address getExceptionSlot()
Returns a pointer to the function's exception object and selector slot, which is assigned in every la...
llvm::Value * EmitARCRetainScalarExpr(const Expr *expr)
EmitARCRetainScalarExpr - Semantically equivalent to EmitARCRetainObject(e->getType(),...
Definition CGObjC.cpp:3512
void popCatchScope()
popCatchScope - Pops the catch scope at the top of the EHScope stack, emitting any required code (oth...
void startOutlinedSEHHelper(CodeGenFunction &ParentCGF, bool IsFilter, const Stmt *OutlinedStmt)
Arrange a function prototype that can be called by Windows exception handling personalities.
void pushSEHCleanup(CleanupKind kind, llvm::Function *FinallyFunc)
llvm::CallInst * EmitNounwindRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
const Decl * CurFuncDecl
CurFuncDecl - Holds the Decl for the current outermost non-closure context.
void EmitStmt(const Stmt *S, ArrayRef< const Attr * > Attrs={})
EmitStmt - Emit the code for the statement.
Definition CGStmt.cpp:58
llvm::Value * EmitARCRetainNonBlock(llvm::Value *value)
Retain the given object, with normal retain semantics.
Definition CGObjC.cpp:2356
SmallVector< llvm::Value *, 8 > ObjCEHValueStack
ObjCEHValueStack - Stack of Objective-C exception values, used for rethrows.
void WasmEmitFallthroughRethrow(llvm::BasicBlock *WasmCatchStartBlock)
llvm::Value * EmitScalarExpr(const Expr *E, bool IgnoreResultAssign=false)
EmitScalarExpr - Emit the computation of the specified expression of LLVM scalar type,...
void FinishFunction(SourceLocation EndLoc=SourceLocation())
FinishFunction - Complete IR generation of the current function.
Address GetAddrOfLocalVar(const VarDecl *VD)
GetAddrOfLocalVar - Return the address of a local variable.
void ErrorUnsupported(const Stmt *S, const char *Type)
ErrorUnsupported - Print out an error that codegen doesn't support the specified stmt yet.
llvm::Instruction * CurrentFuncletPad
llvm::LLVMContext & getLLVMContext()
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
Definition CGStmt.cpp:651
LValue MakeNaturalAlignRawAddrLValue(llvm::Value *V, QualType T)
This class organizes the cross-function state that is used while generating LLVM code.
const TargetInfo & getTarget() const
ASTContext & getContext() const
CGObjCRuntime & getObjCRuntime()
Return a reference to the configured Objective-C runtime.
A scope which attempts to handle some, possibly all, types of exceptions.
Definition CGCleanup.h:165
void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block)
Definition CGCleanup.h:214
iterator begin() const
Returns an iterator pointing to the innermost EH scope.
Definition CGCleanup.h:630
class EHCatchScope * pushCatch(unsigned NumHandlers)
Push a set of catch handlers on the stack.
llvm::BasicBlock * getCachedEHDispatchBlock() const
Definition CGCleanup.h:141
bool hasEHBranches() const
Definition CGCleanup.h:149
LValue - This represents an lvalue references.
Definition CGValue.h:183
static LValue MakeBitfield(Address Addr, const CGBitFieldInfo &Info, QualType type, LValueBaseInfo BaseInfo, TBAAAccessInfo TBAAInfo)
Create a new object to represent a bit-field access.
Definition CGValue.h:490
RValue - This trivial value class is used to represent the result of an expression that is evaluated.
Definition CGValue.h:42
bool isScalar() const
Definition CGValue.h:64
Address getAggregateAddress() const
getAggregateAddr() - Return the Value* of the address of the aggregate.
Definition CGValue.h:84
llvm::Value * getScalarVal() const
getScalarVal() - Return the Value* of this scalar value.
Definition CGValue.h:72
bool hasAttr() const
Definition DeclBase.h:585
This represents one expression.
Definition Expr.h:113
QualType getType() const
Definition Expr.h:145
bool isBitField() const
Determines whether this field is a bitfield.
Definition Decl.h:3398
unsigned getBitWidthValue() const
Computes the bit width of this field, if this is a bit field.
Definition Decl.cpp:4816
Represents Objective-C's @catch statement.
Definition StmtObjC.h:77
Represents Objective-C's @finally statement.
Definition StmtObjC.h:127
Represents Objective-C's @synchronized statement.
Definition StmtObjC.h:303
const Expr * getSynchExpr() const
Definition StmtObjC.h:331
const CompoundStmt * getSynchBody() const
Definition StmtObjC.h:323
Represents Objective-C's @try ... @catch ... @finally statement.
Definition StmtObjC.h:167
const ObjCAtFinallyStmt * getFinallyStmt() const
Retrieve the @finally statement, if any.
Definition StmtObjC.h:241
unsigned getNumCatchStmts() const
Retrieve the number of @catch statements in this try-catch-finally block.
Definition StmtObjC.h:220
const Stmt * getTryBody() const
Retrieve the @try body.
Definition StmtObjC.h:214
catch_range catch_stmts()
Definition StmtObjC.h:282
const ObjCInterfaceDecl * getClassInterface() const
Definition DeclObjC.h:2492
ObjCImplementationDecl - Represents a class definition - this is where method definitions are specifi...
Definition DeclObjC.h:2603
Represents an ObjC class declaration.
Definition DeclObjC.h:1160
const Type * getTypeForDecl() const
Definition DeclObjC.h:1925
ObjCIvarDecl - Represents an ObjC instance variable.
Definition DeclObjC.h:1958
QualType getUsageType(QualType objectType) const
Retrieve the type of this instance variable when viewed as a member of a specific object type.
ObjCMethodDecl - Represents an instance or class method declaration.
Definition DeclObjC.h:140
param_const_iterator param_end() const
Definition DeclObjC.h:361
param_const_iterator param_begin() const
Definition DeclObjC.h:357
bool isClassMethod() const
Definition DeclObjC.h:437
Represents an Objective-C protocol declaration.
Definition DeclObjC.h:2090
Represents a parameter to a function.
Definition Decl.h:1820
A (possibly-)qualified type.
Definition TypeBase.h:938
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this type.
Definition TypeBase.h:8541
QualType withCVRQualifiers(unsigned CVR) const
Definition TypeBase.h:1195
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
Definition TypeBase.h:1561
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
Definition TypeBase.h:362
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
Definition TypeBase.h:355
@ OCL_None
There is no lifetime qualification on this type.
Definition TypeBase.h:351
@ OCL_Weak
Reading or writing from this object requires a barrier call.
Definition TypeBase.h:365
@ OCL_Autoreleasing
Assigning into this object requires a lifetime extension.
Definition TypeBase.h:368
ObjCLifetime getObjCLifetime() const
Definition TypeBase.h:546
Stmt - This represents one statement.
Definition Stmt.h:85
SourceLocation getEndLoc() const LLVM_READONLY
Definition Stmt.cpp:367
unsigned getCharAlign() const
Definition TargetInfo.h:527
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
Definition Type.h:41
QualType getType() const
Definition Decl.h:724
Represents a variable declaration or definition.
Definition Decl.h:933
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
Definition CGValue.h:146
@ NormalCleanup
Denotes a cleanup that should run when a scope is exited using normal control flow (falling off the e...
llvm::Constant * emitObjCProtocolObject(CodeGenModule &CGM, const ObjCProtocolDecl *p)
Get a pointer to a protocol object for the given declaration, emitting it if it hasn't already been e...
@ ARCImpreciseLifetime
Definition CGValue.h:137
Top level wrappers for InstallAPI frontend operations.
U cast(CodeGen::Address addr)
Definition Address.h:327
Structure with information about how a bitfield should be accessed.
unsigned StorageSize
The storage size in bits which should be used when accessing this bitfield.
static CGBitFieldInfo MakeInfo(class CodeGenTypes &Types, const FieldDecl *FD, uint64_t Offset, uint64_t Size, uint64_t StorageSize, CharUnits StorageOffset)
Given a bit-field decl, build an appropriate helper object for accessing that field (which is expecte...
A jump destination is an abstract label, branching to which may require a jump out through normal cle...
llvm::IntegerType * Int8Ty
i8, i16, i32, and i64
static const EHPersonality & get(CodeGenModule &CGM, const FunctionDecl *FD)
bool usesFuncletPads() const
Does this personality use landingpads or the family of pad instructions designed to form funclets?
Definition CGCleanup.h:699