clang 22.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 "CGCXXABI.h"
17#include "CGCleanup.h"
18#include "CGRecordLayout.h"
19#include "CodeGenFunction.h"
20#include "CodeGenModule.h"
22#include "clang/AST/StmtObjC.h"
25#include "llvm/IR/Instruction.h"
26#include "llvm/Support/SaveAndRestore.h"
27
28using namespace clang;
29using namespace CodeGen;
30
32 const ObjCInterfaceDecl *OID,
33 const ObjCIvarDecl *Ivar) {
34 return CGM.getContext().lookupFieldBitOffset(OID, Ivar) /
36}
37
39 const ObjCImplementationDecl *OID,
40 const ObjCIvarDecl *Ivar) {
43}
44
47 const ObjCInterfaceDecl *ID,
48 const ObjCIvarDecl *Ivar) {
49 return CGM.getContext().lookupFieldBitOffset(ID, Ivar);
50}
51
53 const ObjCInterfaceDecl *OID,
54 llvm::Value *BaseValue,
55 const ObjCIvarDecl *Ivar,
56 unsigned CVRQualifiers,
57 llvm::Value *Offset) {
58 // Compute (type*) ( (char *) BaseValue + Offset)
59 QualType InterfaceTy{OID->getTypeForDecl(), 0};
60 QualType ObjectPtrTy =
61 CGF.CGM.getContext().getObjCObjectPointerType(InterfaceTy);
62 QualType IvarTy =
63 Ivar->getUsageType(ObjectPtrTy).withCVRQualifiers(CVRQualifiers);
64 llvm::Value *V = BaseValue;
65 V = CGF.Builder.CreateInBoundsGEP(CGF.Int8Ty, V, Offset, "add.ptr");
66
67 if (!Ivar->isBitField()) {
68 LValue LV = CGF.MakeNaturalAlignRawAddrLValue(V, IvarTy);
69 return LV;
70 }
71
72 // We need to compute an access strategy for this bit-field. We are given the
73 // offset to the first byte in the bit-field, the sub-byte offset is taken
74 // from the original layout. We reuse the normal bit-field access strategy by
75 // treating this as an access to a struct where the bit-field is in byte 0,
76 // and adjust the containing type size as appropriate.
77 //
78 // FIXME: Note that currently we make a very conservative estimate of the
79 // alignment of the bit-field, because (a) it is not clear what guarantees the
80 // runtime makes us, and (b) we don't have a way to specify that the struct is
81 // at an alignment plus offset.
82 //
83 // Note, there is a subtle invariant here: we can only call this routine on
84 // non-synthesized ivars but we may be called for synthesized ivars. However,
85 // a synthesized ivar can never be a bit-field, so this is safe.
86 uint64_t FieldBitOffset =
87 CGF.CGM.getContext().lookupFieldBitOffset(OID, Ivar);
88 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
89 uint64_t AlignmentBits = CGF.CGM.getTarget().getCharAlign();
90 uint64_t BitFieldSize = Ivar->getBitWidthValue();
91 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits(
92 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
93 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits);
94
95 // Allocate a new CGBitFieldInfo object to describe this access.
96 //
97 // FIXME: This is incredibly wasteful, these should be uniqued or part of some
98 // layout object. However, this is blocked on other cleanups to the
99 // Objective-C code, so for now we just live with allocating a bunch of these
100 // objects.
101 CGBitFieldInfo *Info = new (CGF.CGM.getContext()) CGBitFieldInfo(
102 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
103 CGF.CGM.getContext().toBits(StorageSize),
105
106 Address Addr =
107 Address(V, llvm::Type::getIntNTy(CGF.getLLVMContext(), Info->StorageSize),
108 Alignment);
109
110 return LValue::MakeBitfield(Addr, *Info, IvarTy,
113}
114
115namespace {
116 struct CatchHandler {
117 const VarDecl *Variable;
118 const Stmt *Body;
119 llvm::BasicBlock *Block;
120 llvm::Constant *TypeInfo;
121 /// Flags used to differentiate cleanups and catchalls in Windows SEH
122 unsigned Flags;
123 };
124
125 struct CallObjCEndCatch final : EHScopeStack::Cleanup {
126 CallObjCEndCatch(bool MightThrow, llvm::FunctionCallee Fn)
127 : MightThrow(MightThrow), Fn(Fn) {}
128 bool MightThrow;
129 llvm::FunctionCallee Fn;
130
131 void Emit(CodeGenFunction &CGF, Flags flags) override {
132 if (MightThrow)
134 else
136 }
137 };
138}
139
141 const ObjCAtTryStmt &S,
142 llvm::FunctionCallee beginCatchFn,
143 llvm::FunctionCallee endCatchFn,
144 llvm::FunctionCallee exceptionRethrowFn) {
145 // Jump destination for falling out of catch bodies.
147 if (S.getNumCatchStmts())
148 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
149
150 bool useFunclets = EHPersonality::get(CGF).usesFuncletPads();
151
153 if (!useFunclets)
154 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
155 FinallyInfo.enter(CGF, Finally->getFinallyBody(),
156 beginCatchFn, endCatchFn, exceptionRethrowFn);
157
159
160
161 // Enter the catch, if there is one.
162 if (S.getNumCatchStmts()) {
163 for (const ObjCAtCatchStmt *CatchStmt : S.catch_stmts()) {
164 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
165
166 Handlers.push_back(CatchHandler());
167 CatchHandler &Handler = Handlers.back();
168 Handler.Variable = CatchDecl;
169 Handler.Body = CatchStmt->getCatchBody();
170 Handler.Block = CGF.createBasicBlock("catch");
171 Handler.Flags = 0;
172
173 // @catch(...) always matches.
174 if (!CatchDecl) {
175 auto catchAll = getCatchAllTypeInfo();
176 Handler.TypeInfo = catchAll.RTTI;
177 Handler.Flags = catchAll.Flags;
178 // Don't consider any other catches.
179 break;
180 }
181
182 Handler.TypeInfo = GetEHType(CatchDecl->getType());
183 }
184
185 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
186 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
187 Catch->setHandler(I, { Handlers[I].TypeInfo, Handlers[I].Flags }, Handlers[I].Block);
188 }
189
190 if (useFunclets)
191 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt()) {
192 CodeGenFunction HelperCGF(CGM, /*suppressNewContext=*/true);
193 if (!CGF.CurSEHParent)
194 CGF.CurSEHParent = cast<NamedDecl>(CGF.CurFuncDecl);
195 // Outline the finally block.
196 const Stmt *FinallyBlock = Finally->getFinallyBody();
197 HelperCGF.startOutlinedSEHHelper(CGF, /*isFilter*/false, FinallyBlock);
198
199 // Emit the original filter expression, convert to i32, and return.
200 HelperCGF.EmitStmt(FinallyBlock);
201
202 HelperCGF.FinishFunction(FinallyBlock->getEndLoc());
203
204 llvm::Function *FinallyFunc = HelperCGF.CurFn;
205
206
207 // Push a cleanup for __finally blocks.
208 CGF.pushSEHCleanup(NormalAndEHCleanup, FinallyFunc);
209 }
210
211
212 // Emit the try body.
213 CGF.EmitStmt(S.getTryBody());
214
215 // Leave the try.
216 if (S.getNumCatchStmts())
217 CGF.popCatchScope();
218
219 // Remember where we were.
220 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
221
222 // Emit the handlers.
223 for (CatchHandler &Handler : Handlers) {
224 CGF.EmitBlock(Handler.Block);
225
226 CodeGenFunction::LexicalScope Cleanups(CGF, Handler.Body->getSourceRange());
227 SaveAndRestore RevertAfterScope(CGF.CurrentFuncletPad);
228 if (useFunclets) {
229 llvm::BasicBlock::iterator CPICandidate =
230 Handler.Block->getFirstNonPHIIt();
231 if (CPICandidate != Handler.Block->end()) {
232 if (auto *CPI = dyn_cast_or_null<llvm::CatchPadInst>(CPICandidate)) {
233 CGF.CurrentFuncletPad = CPI;
234 CPI->setOperand(2, CGF.getExceptionSlot().emitRawPointer(CGF));
235 CGF.EHStack.pushCleanup<CatchRetScope>(NormalCleanup, CPI);
236 }
237 }
238 }
239
240 llvm::Value *RawExn = CGF.getExceptionFromSlot();
241
242 // Enter the catch.
243 llvm::Value *Exn = RawExn;
244 if (beginCatchFn)
245 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted");
246
247 if (endCatchFn) {
248 // Add a cleanup to leave the catch.
249 bool EndCatchMightThrow = (Handler.Variable == nullptr);
250
251 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
252 EndCatchMightThrow,
253 endCatchFn);
254 }
255
256 // Bind the catch parameter if it exists.
257 if (const VarDecl *CatchParam = Handler.Variable) {
258 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
259 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
260
261 CGF.EmitAutoVarDecl(*CatchParam);
262 EmitInitOfCatchParam(CGF, CastExn, CatchParam);
263 }
264
265 CGF.ObjCEHValueStack.push_back(Exn);
266 CGF.EmitStmt(Handler.Body);
267 CGF.ObjCEHValueStack.pop_back();
268
269 // Leave any cleanups associated with the catch.
270 Cleanups.ForceCleanup();
271
272 CGF.EmitBranchThroughCleanup(Cont);
273 }
274
275 // Go back to the try-statement fallthrough.
276 CGF.Builder.restoreIP(SavedIP);
277
278 // Pop out of the finally.
279 if (!useFunclets && S.getFinallyStmt())
280 FinallyInfo.exit(CGF);
281
282 if (Cont.isValid())
283 CGF.EmitBlock(Cont.getBlock());
284}
285
287 llvm::Value *exn,
288 const VarDecl *paramDecl) {
289
290 Address paramAddr = CGF.GetAddrOfLocalVar(paramDecl);
291
292 switch (paramDecl->getType().getQualifiers().getObjCLifetime()) {
294 exn = CGF.EmitARCRetainNonBlock(exn);
295 [[fallthrough]];
296
300 CGF.Builder.CreateStore(exn, paramAddr);
301 return;
302
304 CGF.EmitARCInitWeak(paramAddr, exn);
305 return;
306 }
307 llvm_unreachable("invalid ownership qualifier");
308}
309
310namespace {
311 struct CallSyncExit final : EHScopeStack::Cleanup {
312 llvm::FunctionCallee SyncExitFn;
313 llvm::Value *SyncArg;
314 CallSyncExit(llvm::FunctionCallee SyncExitFn, llvm::Value *SyncArg)
315 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
316
317 void Emit(CodeGenFunction &CGF, Flags flags) override {
318 CGF.EmitNounwindRuntimeCall(SyncExitFn, SyncArg);
319 }
320 };
321}
322
324 const ObjCAtSynchronizedStmt &S,
325 llvm::FunctionCallee syncEnterFn,
326 llvm::FunctionCallee syncExitFn) {
328
329 // Evaluate the lock operand. This is guaranteed to dominate the
330 // ARC release and lock-release cleanups.
331 const Expr *lockExpr = S.getSynchExpr();
332 llvm::Value *lock;
333 if (CGF.getLangOpts().ObjCAutoRefCount) {
334 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
335 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
336 } else {
337 lock = CGF.EmitScalarExpr(lockExpr);
338 }
339 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
340
341 // Acquire the lock.
342 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow();
343
344 // Register an all-paths cleanup to release the lock.
345 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock);
346
347 // Emit the body of the statement.
348 CGF.EmitStmt(S.getSynchBody());
349}
350
351/// Compute the pointer-to-function type to which a message send
352/// should be casted in order to correctly call the given method
353/// with the given arguments.
354///
355/// \param method - may be null
356/// \param resultType - the result type to use if there's no method
357/// \param callArgs - the actual arguments, including implicit ones
360 QualType resultType,
361 CallArgList &callArgs) {
362 unsigned ProgramAS = CGM.getDataLayout().getProgramAddressSpace();
363
364 llvm::PointerType *signatureType =
365 llvm::PointerType::get(CGM.getLLVMContext(), ProgramAS);
366
367 // If there's a method, use information from that.
368 if (method) {
369 const CGFunctionInfo &signature =
370 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty);
371
372 const CGFunctionInfo &signatureForCall =
373 CGM.getTypes().arrangeCall(signature, callArgs);
374
375 return MessageSendInfo(signatureForCall, signatureType);
376 }
377
378 // There's no method; just use a default CC.
379 const CGFunctionInfo &argsInfo =
380 CGM.getTypes().arrangeUnprototypedObjCMessageSend(resultType, callArgs);
381
382 return MessageSendInfo(argsInfo, signatureType);
383}
384
386 const ObjCMethodDecl *method,
387 bool isSuper,
388 const ObjCInterfaceDecl *classReceiver,
389 llvm::Value *receiver) {
390 // Super dispatch assumes that self is non-null; even the messenger
391 // doesn't have a null check internally.
392 if (isSuper)
393 return false;
394
395 // If this is a direct dispatch of a class method, check whether the class,
396 // or anything in its hierarchy, was weak-linked.
397 if (classReceiver && method && method->isClassMethod())
398 return isWeakLinkedClass(classReceiver);
399
400 // If we're emitting a method, and self is const (meaning just ARC, for now),
401 // and the receiver is a load of self, then self is a valid object.
402 if (auto curMethod =
403 dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl)) {
404 auto self = curMethod->getSelfDecl();
405 if (self->getType().isConstQualified()) {
406 if (auto LI = dyn_cast<llvm::LoadInst>(receiver->stripPointerCasts())) {
407 llvm::Value *selfAddr = CGF.GetAddrOfLocalVar(self).emitRawPointer(CGF);
408 if (selfAddr == LI->getPointerOperand()) {
409 return false;
410 }
411 }
412 }
413 }
414
415 // Otherwise, assume it can be null.
416 return true;
417}
418
420 do {
421 if (ID->isWeakImported())
422 return true;
423 } while ((ID = ID->getSuperClass()));
424
425 return false;
426}
427
429 const ObjCMethodDecl *method,
430 const CallArgList &callArgs) {
431 CallArgList::const_iterator I = callArgs.begin();
432 for (auto i = method->param_begin(), e = method->param_end();
433 i != e; ++i, ++I) {
434 const ParmVarDecl *param = (*i);
435 if (param->hasAttr<NSConsumedAttr>()) {
436 RValue RV = I->getRValue(CGF);
437 assert(RV.isScalar() &&
438 "NullReturnState::complete - arg not on object");
440 } else {
441 QualType QT = param->getType();
442 auto *RD = QT->getAsRecordDecl();
443 if (RD && RD->isParamDestroyedInCallee()) {
444 RValue RV = I->getRValue(CGF);
446 switch (DtorKind) {
448 CGF.destroyCXXObject(CGF, RV.getAggregateAddress(), QT);
449 break;
452 break;
453 default:
454 llvm_unreachable("unexpected dtor kind");
455 break;
456 }
457 }
458 }
459 }
460}
461
462llvm::Constant *
464 const ObjCProtocolDecl *protocol) {
465 return CGM.getObjCRuntime().GetOrEmitProtocol(protocol);
466}
467
469 bool includeCategoryName) {
470 std::string buffer;
471 llvm::raw_string_ostream out(buffer);
473 /*includePrefixByte=*/true,
474 includeCategoryName);
475 return buffer;
476}
#define V(N, I)
Definition: ASTContext.h:3597
Expr * E
const CFGBlock * Block
Definition: HTMLLogger.cpp:152
VarDecl * Variable
Definition: SemaObjC.cpp:752
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.
Definition: ASTContext.h:2629
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:140
Address CreateInBoundsGEP(Address Addr, ArrayRef< llvm::Value * > IdxList, llvm::Type *ElementType, CharUnits Align, const Twine &Name="")
Definition: CGBuilder.h:350
MangleContext & getMangleContext()
Gets the mangle context.
Definition: CGCXXABI.h:113
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.
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)
std::string getSymbolNameForMethod(const ObjCMethodDecl *method, bool includeCategoryName=true)
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
Definition: CGObjCRuntime.h:67
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:274
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:2152
static Destroyer destroyNonTrivialCStruct
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:2663
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:5060
void EmitAutoVarDecl(const VarDecl &D)
EmitAutoVarDecl - Emit an auto variable declaration.
Definition: CGDecl.cpp:1349
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...
Definition: CGCleanup.cpp:1112
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:2481
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:3493
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:61
llvm::Value * EmitARCRetainNonBlock(llvm::Value *value)
Retain the given object, with normal retain semantics.
Definition: CGObjC.cpp:2337
SmallVector< llvm::Value *, 8 > ObjCEHValueStack
ObjCEHValueStack - Stack of Objective-C exception values, used for rethrows.
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.
llvm::Instruction * CurrentFuncletPad
llvm::LLVMContext & getLLVMContext()
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
Definition: CGStmt.cpp:652
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
const llvm::DataLayout & getDataLayout() const
CGCXXABI & getCXXABI() const
ASTContext & getContext() const
llvm::LLVMContext & getLLVMContext()
CGObjCRuntime & getObjCRuntime()
Return a reference to the configured Objective-C runtime.
const CGFunctionInfo & arrangeUnprototypedObjCMessageSend(QualType returnType, const CallArgList &args)
Definition: CGCall.cpp:602
const CGFunctionInfo & arrangeObjCMessageSendSignature(const ObjCMethodDecl *MD, QualType receiverType)
Arrange the argument and result information for the function type through which to perform a send to ...
Definition: CGCall.cpp:568
const CGFunctionInfo & arrangeCall(const CGFunctionInfo &declFI, const CallArgList &args)
Given a function info for a declaration, return the function info for a call with the given arguments...
Definition: CGCall.cpp:794
A scope which attempts to handle some, possibly all, types of exceptions.
Definition: CGCleanup.h:162
void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block)
Definition: CGCleanup.h:211
Information for lazily generating a cleanup.
Definition: EHScopeStack.h:146
class EHCatchScope * pushCatch(unsigned NumHandlers)
Push a set of catch handlers on the stack.
Definition: CGCleanup.cpp:242
LValue - This represents an lvalue references.
Definition: CGValue.h:182
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:468
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:83
llvm::Value * getScalarVal() const
getScalarVal() - Return the Value* of this scalar value.
Definition: CGValue.h:71
bool hasAttr() const
Definition: DeclBase.h:577
This represents one expression.
Definition: Expr.h:112
QualType getType() const
Definition: Expr.h:144
bool isBitField() const
Determines whether this field is a bitfield.
Definition: Decl.h:3260
unsigned getBitWidthValue() const
Computes the bit width of this field, if this is a bit field.
Definition: Decl.cpp:4693
void mangleObjCMethodName(const ObjCMethodDecl *MD, raw_ostream &OS, bool includePrefixByte=true, bool includeCategoryNamespace=true) const
Definition: Mangle.cpp:345
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
Represents Objective-C's @try ... @catch ... @finally statement.
Definition: StmtObjC.h:167
const ObjCInterfaceDecl * getClassInterface() const
Definition: DeclObjC.h:2486
ObjCImplementationDecl - Represents a class definition - this is where method definitions are specifi...
Definition: DeclObjC.h:2597
Represents an ObjC class declaration.
Definition: DeclObjC.h:1154
const Type * getTypeForDecl() const
Definition: DeclObjC.h:1919
ObjCIvarDecl - Represents an ObjC instance variable.
Definition: DeclObjC.h:1952
QualType getUsageType(QualType objectType) const
Retrieve the type of this instance variable when viewed as a member of a specific object type.
Definition: DeclObjC.cpp:1896
ObjCMethodDecl - Represents an instance or class method declaration.
Definition: DeclObjC.h:140
param_const_iterator param_end() const
Definition: DeclObjC.h:358
param_const_iterator param_begin() const
Definition: DeclObjC.h:354
bool isClassMethod() const
Definition: DeclObjC.h:434
Represents an Objective-C protocol declaration.
Definition: DeclObjC.h:2084
Represents a parameter to a function.
Definition: Decl.h:1789
A (possibly-)qualified type.
Definition: TypeBase.h:937
@ DK_nontrivial_c_struct
Definition: TypeBase.h:1538
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this type.
Definition: TypeBase.h:8383
QualType withCVRQualifiers(unsigned CVR) const
Definition: TypeBase.h:1179
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
Definition: TypeBase.h:1545
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
Definition: TypeBase.h:361
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
Definition: TypeBase.h:354
@ OCL_None
There is no lifetime qualification on this type.
Definition: TypeBase.h:350
@ OCL_Weak
Reading or writing from this object requires a barrier call.
Definition: TypeBase.h:364
@ OCL_Autoreleasing
Assigning into this object requires a lifetime extension.
Definition: TypeBase.h:367
ObjCLifetime getObjCLifetime() const
Definition: TypeBase.h:545
Stmt - This represents one statement.
Definition: Stmt.h:85
SourceLocation getEndLoc() const LLVM_READONLY
Definition: Stmt.cpp:358
unsigned getCharAlign() const
Definition: TargetInfo.h:518
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
Definition: Type.h:41
QualType getType() const
Definition: Decl.h:722
Represents a variable declaration or definition.
Definition: Decl.h:925
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
@ NormalCleanup
Denotes a cleanup that should run when a scope is exited using normal control flow (falling off the e...
Definition: EHScopeStack.h:84
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:136
The JSON file list parser is used to communicate input to InstallAPI.
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:692