clang 19.0.0git
CGObjC.cpp
Go to the documentation of this file.
1//===---- CGObjC.cpp - Emit LLVM Code for Objective-C ---------------------===//
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 contains code to emit Objective-C code as LLVM code.
10//
11//===----------------------------------------------------------------------===//
12
13#include "CGDebugInfo.h"
14#include "CGObjCRuntime.h"
15#include "CodeGenFunction.h"
16#include "CodeGenModule.h"
17#include "ConstantEmitter.h"
18#include "TargetInfo.h"
20#include "clang/AST/Attr.h"
21#include "clang/AST/DeclObjC.h"
22#include "clang/AST/StmtObjC.h"
26#include "llvm/ADT/STLExtras.h"
27#include "llvm/Analysis/ObjCARCUtil.h"
28#include "llvm/BinaryFormat/MachO.h"
29#include "llvm/IR/Constants.h"
30#include "llvm/IR/DataLayout.h"
31#include "llvm/IR/InlineAsm.h"
32#include <optional>
33using namespace clang;
34using namespace CodeGen;
35
36typedef llvm::PointerIntPair<llvm::Value*,1,bool> TryEmitResult;
37static TryEmitResult
40 QualType ET,
41 RValue Result);
42
43/// Given the address of a variable of pointer type, find the correct
44/// null to store into it.
45static llvm::Constant *getNullForVariable(Address addr) {
46 llvm::Type *type = addr.getElementType();
47 return llvm::ConstantPointerNull::get(cast<llvm::PointerType>(type));
48}
49
50/// Emits an instance of NSConstantString representing the object.
51llvm::Value *CodeGenFunction::EmitObjCStringLiteral(const ObjCStringLiteral *E)
52{
53 llvm::Constant *C =
55 return C;
56}
57
58/// EmitObjCBoxedExpr - This routine generates code to call
59/// the appropriate expression boxing method. This will either be
60/// one of +[NSNumber numberWith<Type>:], or +[NSString stringWithUTF8String:],
61/// or [NSValue valueWithBytes:objCType:].
62///
63llvm::Value *
65 // Generate the correct selector for this literal's concrete type.
66 // Get the method.
67 const ObjCMethodDecl *BoxingMethod = E->getBoxingMethod();
68 const Expr *SubExpr = E->getSubExpr();
69
71 ConstantEmitter ConstEmitter(CGM);
72 return ConstEmitter.tryEmitAbstract(E, E->getType());
73 }
74
75 assert(BoxingMethod->isClassMethod() && "BoxingMethod must be a class method");
76 Selector Sel = BoxingMethod->getSelector();
77
78 // Generate a reference to the class pointer, which will be the receiver.
79 // Assumes that the method was introduced in the class that should be
80 // messaged (avoids pulling it out of the result type).
81 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
82 const ObjCInterfaceDecl *ClassDecl = BoxingMethod->getClassInterface();
83 llvm::Value *Receiver = Runtime.GetClass(*this, ClassDecl);
84
85 CallArgList Args;
86 const ParmVarDecl *ArgDecl = *BoxingMethod->param_begin();
87 QualType ArgQT = ArgDecl->getType().getUnqualifiedType();
88
89 // ObjCBoxedExpr supports boxing of structs and unions
90 // via [NSValue valueWithBytes:objCType:]
91 const QualType ValueType(SubExpr->getType().getCanonicalType());
92 if (ValueType->isObjCBoxableRecordType()) {
93 // Emit CodeGen for first parameter
94 // and cast value to correct type
95 Address Temporary = CreateMemTemp(SubExpr->getType());
96 EmitAnyExprToMem(SubExpr, Temporary, Qualifiers(), /*isInit*/ true);
97 llvm::Value *BitCast =
98 Builder.CreateBitCast(Temporary.getPointer(), ConvertType(ArgQT));
99 Args.add(RValue::get(BitCast), ArgQT);
100
101 // Create char array to store type encoding
102 std::string Str;
103 getContext().getObjCEncodingForType(ValueType, Str);
104 llvm::Constant *GV = CGM.GetAddrOfConstantCString(Str).getPointer();
105
106 // Cast type encoding to correct type
107 const ParmVarDecl *EncodingDecl = BoxingMethod->parameters()[1];
108 QualType EncodingQT = EncodingDecl->getType().getUnqualifiedType();
109 llvm::Value *Cast = Builder.CreateBitCast(GV, ConvertType(EncodingQT));
110
111 Args.add(RValue::get(Cast), EncodingQT);
112 } else {
113 Args.add(EmitAnyExpr(SubExpr), ArgQT);
114 }
115
116 RValue result = Runtime.GenerateMessageSend(
117 *this, ReturnValueSlot(), BoxingMethod->getReturnType(), Sel, Receiver,
118 Args, ClassDecl, BoxingMethod);
119 return Builder.CreateBitCast(result.getScalarVal(),
120 ConvertType(E->getType()));
121}
122
124 const ObjCMethodDecl *MethodWithObjects) {
125 ASTContext &Context = CGM.getContext();
126 const ObjCDictionaryLiteral *DLE = nullptr;
127 const ObjCArrayLiteral *ALE = dyn_cast<ObjCArrayLiteral>(E);
128 if (!ALE)
129 DLE = cast<ObjCDictionaryLiteral>(E);
130
131 // Optimize empty collections by referencing constants, when available.
132 uint64_t NumElements =
133 ALE ? ALE->getNumElements() : DLE->getNumElements();
134 if (NumElements == 0 && CGM.getLangOpts().ObjCRuntime.hasEmptyCollections()) {
135 StringRef ConstantName = ALE ? "__NSArray0__" : "__NSDictionary0__";
137 llvm::Constant *Constant =
138 CGM.CreateRuntimeVariable(ConvertType(IdTy), ConstantName);
139 LValue LV = MakeNaturalAlignAddrLValue(Constant, IdTy);
140 llvm::Value *Ptr = EmitLoadOfScalar(LV, E->getBeginLoc());
141 cast<llvm::LoadInst>(Ptr)->setMetadata(
142 llvm::LLVMContext::MD_invariant_load,
143 llvm::MDNode::get(getLLVMContext(), std::nullopt));
144 return Builder.CreateBitCast(Ptr, ConvertType(E->getType()));
145 }
146
147 // Compute the type of the array we're initializing.
148 llvm::APInt APNumElements(Context.getTypeSize(Context.getSizeType()),
149 NumElements);
150 QualType ElementType = Context.getObjCIdType().withConst();
151 QualType ElementArrayType = Context.getConstantArrayType(
152 ElementType, APNumElements, nullptr, ArraySizeModifier::Normal,
153 /*IndexTypeQuals=*/0);
154
155 // Allocate the temporary array(s).
156 Address Objects = CreateMemTemp(ElementArrayType, "objects");
157 Address Keys = Address::invalid();
158 if (DLE)
159 Keys = CreateMemTemp(ElementArrayType, "keys");
160
161 // In ARC, we may need to do extra work to keep all the keys and
162 // values alive until after the call.
163 SmallVector<llvm::Value *, 16> NeededObjects;
164 bool TrackNeededObjects =
165 (getLangOpts().ObjCAutoRefCount &&
166 CGM.getCodeGenOpts().OptimizationLevel != 0);
167
168 // Perform the actual initialialization of the array(s).
169 for (uint64_t i = 0; i < NumElements; i++) {
170 if (ALE) {
171 // Emit the element and store it to the appropriate array slot.
172 const Expr *Rhs = ALE->getElement(i);
174 ElementType, AlignmentSource::Decl);
175
176 llvm::Value *value = EmitScalarExpr(Rhs);
177 EmitStoreThroughLValue(RValue::get(value), LV, true);
178 if (TrackNeededObjects) {
179 NeededObjects.push_back(value);
180 }
181 } else {
182 // Emit the key and store it to the appropriate array slot.
183 const Expr *Key = DLE->getKeyValueElement(i).Key;
185 ElementType, AlignmentSource::Decl);
186 llvm::Value *keyValue = EmitScalarExpr(Key);
187 EmitStoreThroughLValue(RValue::get(keyValue), KeyLV, /*isInit=*/true);
188
189 // Emit the value and store it to the appropriate array slot.
190 const Expr *Value = DLE->getKeyValueElement(i).Value;
191 LValue ValueLV = MakeAddrLValue(Builder.CreateConstArrayGEP(Objects, i),
192 ElementType, AlignmentSource::Decl);
193 llvm::Value *valueValue = EmitScalarExpr(Value);
194 EmitStoreThroughLValue(RValue::get(valueValue), ValueLV, /*isInit=*/true);
195 if (TrackNeededObjects) {
196 NeededObjects.push_back(keyValue);
197 NeededObjects.push_back(valueValue);
198 }
199 }
200 }
201
202 // Generate the argument list.
203 CallArgList Args;
204 ObjCMethodDecl::param_const_iterator PI = MethodWithObjects->param_begin();
205 const ParmVarDecl *argDecl = *PI++;
206 QualType ArgQT = argDecl->getType().getUnqualifiedType();
207 Args.add(RValue::get(Objects.getPointer()), ArgQT);
208 if (DLE) {
209 argDecl = *PI++;
210 ArgQT = argDecl->getType().getUnqualifiedType();
211 Args.add(RValue::get(Keys.getPointer()), ArgQT);
212 }
213 argDecl = *PI;
214 ArgQT = argDecl->getType().getUnqualifiedType();
215 llvm::Value *Count =
216 llvm::ConstantInt::get(CGM.getTypes().ConvertType(ArgQT), NumElements);
217 Args.add(RValue::get(Count), ArgQT);
218
219 // Generate a reference to the class pointer, which will be the receiver.
220 Selector Sel = MethodWithObjects->getSelector();
221 QualType ResultType = E->getType();
222 const ObjCObjectPointerType *InterfacePointerType
223 = ResultType->getAsObjCInterfacePointerType();
224 assert(InterfacePointerType && "Unexpected InterfacePointerType - null");
226 = InterfacePointerType->getObjectType()->getInterface();
227 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
228 llvm::Value *Receiver = Runtime.GetClass(*this, Class);
229
230 // Generate the message send.
231 RValue result = Runtime.GenerateMessageSend(
232 *this, ReturnValueSlot(), MethodWithObjects->getReturnType(), Sel,
233 Receiver, Args, Class, MethodWithObjects);
234
235 // The above message send needs these objects, but in ARC they are
236 // passed in a buffer that is essentially __unsafe_unretained.
237 // Therefore we must prevent the optimizer from releasing them until
238 // after the call.
239 if (TrackNeededObjects) {
240 EmitARCIntrinsicUse(NeededObjects);
241 }
242
243 return Builder.CreateBitCast(result.getScalarVal(),
244 ConvertType(E->getType()));
245}
246
249}
250
252 const ObjCDictionaryLiteral *E) {
254}
255
256/// Emit a selector.
258 // Untyped selector.
259 // Note that this implementation allows for non-constant strings to be passed
260 // as arguments to @selector(). Currently, the only thing preventing this
261 // behaviour is the type checking in the front end.
262 return CGM.getObjCRuntime().GetSelector(*this, E->getSelector());
263}
264
266 // FIXME: This should pass the Decl not the name.
268}
269
270/// Adjust the type of an Objective-C object that doesn't match up due
271/// to type erasure at various points, e.g., related result types or the use
272/// of parameterized classes.
274 RValue Result) {
275 if (!ExpT->isObjCRetainableType())
276 return Result;
277
278 // If the converted types are the same, we're done.
279 llvm::Type *ExpLLVMTy = CGF.ConvertType(ExpT);
280 if (ExpLLVMTy == Result.getScalarVal()->getType())
281 return Result;
282
283 // We have applied a substitution. Cast the rvalue appropriately.
284 return RValue::get(CGF.Builder.CreateBitCast(Result.getScalarVal(),
285 ExpLLVMTy));
286}
287
288/// Decide whether to extend the lifetime of the receiver of a
289/// returns-inner-pointer message.
290static bool
292 switch (message->getReceiverKind()) {
293
294 // For a normal instance message, we should extend unless the
295 // receiver is loaded from a variable with precise lifetime.
297 const Expr *receiver = message->getInstanceReceiver();
298
299 // Look through OVEs.
300 if (auto opaque = dyn_cast<OpaqueValueExpr>(receiver)) {
301 if (opaque->getSourceExpr())
302 receiver = opaque->getSourceExpr()->IgnoreParens();
303 }
304
305 const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(receiver);
306 if (!ice || ice->getCastKind() != CK_LValueToRValue) return true;
307 receiver = ice->getSubExpr()->IgnoreParens();
308
309 // Look through OVEs.
310 if (auto opaque = dyn_cast<OpaqueValueExpr>(receiver)) {
311 if (opaque->getSourceExpr())
312 receiver = opaque->getSourceExpr()->IgnoreParens();
313 }
314
315 // Only __strong variables.
317 return true;
318
319 // All ivars and fields have precise lifetime.
320 if (isa<MemberExpr>(receiver) || isa<ObjCIvarRefExpr>(receiver))
321 return false;
322
323 // Otherwise, check for variables.
324 const DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(ice->getSubExpr());
325 if (!declRef) return true;
326 const VarDecl *var = dyn_cast<VarDecl>(declRef->getDecl());
327 if (!var) return true;
328
329 // All variables have precise lifetime except local variables with
330 // automatic storage duration that aren't specially marked.
331 return (var->hasLocalStorage() &&
332 !var->hasAttr<ObjCPreciseLifetimeAttr>());
333 }
334
337 // It's never necessary for class objects.
338 return false;
339
341 // We generally assume that 'self' lives throughout a method call.
342 return false;
343 }
344
345 llvm_unreachable("invalid receiver kind");
346}
347
348/// Given an expression of ObjC pointer type, check whether it was
349/// immediately loaded from an ARC __weak l-value.
350static const Expr *findWeakLValue(const Expr *E) {
351 assert(E->getType()->isObjCRetainableType());
352 E = E->IgnoreParens();
353 if (auto CE = dyn_cast<CastExpr>(E)) {
354 if (CE->getCastKind() == CK_LValueToRValue) {
355 if (CE->getSubExpr()->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
356 return CE->getSubExpr();
357 }
358 }
359
360 return nullptr;
361}
362
363/// The ObjC runtime may provide entrypoints that are likely to be faster
364/// than an ordinary message send of the appropriate selector.
365///
366/// The entrypoints are guaranteed to be equivalent to just sending the
367/// corresponding message. If the entrypoint is implemented naively as just a
368/// message send, using it is a trade-off: it sacrifices a few cycles of
369/// overhead to save a small amount of code. However, it's possible for
370/// runtimes to detect and special-case classes that use "standard"
371/// behavior; if that's dynamically a large proportion of all objects, using
372/// the entrypoint will also be faster than using a message send.
373///
374/// If the runtime does support a required entrypoint, then this method will
375/// generate a call and return the resulting value. Otherwise it will return
376/// std::nullopt and the caller can generate a msgSend instead.
377static std::optional<llvm::Value *> tryGenerateSpecializedMessageSend(
378 CodeGenFunction &CGF, QualType ResultType, llvm::Value *Receiver,
379 const CallArgList &Args, Selector Sel, const ObjCMethodDecl *method,
380 bool isClassMessage) {
381 auto &CGM = CGF.CGM;
382 if (!CGM.getCodeGenOpts().ObjCConvertMessagesToRuntimeCalls)
383 return std::nullopt;
384
385 auto &Runtime = CGM.getLangOpts().ObjCRuntime;
386 switch (Sel.getMethodFamily()) {
387 case OMF_alloc:
388 if (isClassMessage &&
389 Runtime.shouldUseRuntimeFunctionsForAlloc() &&
390 ResultType->isObjCObjectPointerType()) {
391 // [Foo alloc] -> objc_alloc(Foo) or
392 // [self alloc] -> objc_alloc(self)
393 if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "alloc")
394 return CGF.EmitObjCAlloc(Receiver, CGF.ConvertType(ResultType));
395 // [Foo allocWithZone:nil] -> objc_allocWithZone(Foo) or
396 // [self allocWithZone:nil] -> objc_allocWithZone(self)
397 if (Sel.isKeywordSelector() && Sel.getNumArgs() == 1 &&
398 Args.size() == 1 && Args.front().getType()->isPointerType() &&
399 Sel.getNameForSlot(0) == "allocWithZone") {
400 const llvm::Value* arg = Args.front().getKnownRValue().getScalarVal();
401 if (isa<llvm::ConstantPointerNull>(arg))
402 return CGF.EmitObjCAllocWithZone(Receiver,
403 CGF.ConvertType(ResultType));
404 return std::nullopt;
405 }
406 }
407 break;
408
409 case OMF_autorelease:
410 if (ResultType->isObjCObjectPointerType() &&
411 CGM.getLangOpts().getGC() == LangOptions::NonGC &&
412 Runtime.shouldUseARCFunctionsForRetainRelease())
413 return CGF.EmitObjCAutorelease(Receiver, CGF.ConvertType(ResultType));
414 break;
415
416 case OMF_retain:
417 if (ResultType->isObjCObjectPointerType() &&
418 CGM.getLangOpts().getGC() == LangOptions::NonGC &&
419 Runtime.shouldUseARCFunctionsForRetainRelease())
420 return CGF.EmitObjCRetainNonBlock(Receiver, CGF.ConvertType(ResultType));
421 break;
422
423 case OMF_release:
424 if (ResultType->isVoidType() &&
425 CGM.getLangOpts().getGC() == LangOptions::NonGC &&
426 Runtime.shouldUseARCFunctionsForRetainRelease()) {
427 CGF.EmitObjCRelease(Receiver, ARCPreciseLifetime);
428 return nullptr;
429 }
430 break;
431
432 default:
433 break;
434 }
435 return std::nullopt;
436}
437
439 CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType,
440 Selector Sel, llvm::Value *Receiver, const CallArgList &Args,
441 const ObjCInterfaceDecl *OID, const ObjCMethodDecl *Method,
442 bool isClassMessage) {
443 if (std::optional<llvm::Value *> SpecializedResult =
444 tryGenerateSpecializedMessageSend(CGF, ResultType, Receiver, Args,
445 Sel, Method, isClassMessage)) {
446 return RValue::get(*SpecializedResult);
447 }
448 return GenerateMessageSend(CGF, Return, ResultType, Sel, Receiver, Args, OID,
449 Method);
450}
451
453 const ObjCProtocolDecl *PD,
454 llvm::UniqueVector<const ObjCProtocolDecl *> &PDs) {
455 if (!PD->isNonRuntimeProtocol()) {
456 const auto *Can = PD->getCanonicalDecl();
457 PDs.insert(Can);
458 return;
459 }
460
461 for (const auto *ParentPD : PD->protocols())
463}
464
465std::vector<const ObjCProtocolDecl *>
468 std::vector<const ObjCProtocolDecl *> RuntimePds;
470
471 for (; begin != end; ++begin) {
472 const auto *It = *begin;
473 const auto *Can = It->getCanonicalDecl();
474 if (Can->isNonRuntimeProtocol())
475 NonRuntimePDs.insert(Can);
476 else
477 RuntimePds.push_back(Can);
478 }
479
480 // If there are no non-runtime protocols then we can just stop now.
481 if (NonRuntimePDs.empty())
482 return RuntimePds;
483
484 // Else we have to search through the non-runtime protocol's inheritancy
485 // hierarchy DAG stopping whenever a branch either finds a runtime protocol or
486 // a non-runtime protocol without any parents. These are the "first-implied"
487 // protocols from a non-runtime protocol.
488 llvm::UniqueVector<const ObjCProtocolDecl *> FirstImpliedProtos;
489 for (const auto *PD : NonRuntimePDs)
490 AppendFirstImpliedRuntimeProtocols(PD, FirstImpliedProtos);
491
492 // Walk the Runtime list to get all protocols implied via the inclusion of
493 // this protocol, e.g. all protocols it inherits from including itself.
495 for (const auto *PD : RuntimePds) {
496 const auto *Can = PD->getCanonicalDecl();
497 AllImpliedProtocols.insert(Can);
498 Can->getImpliedProtocols(AllImpliedProtocols);
499 }
500
501 // Similar to above, walk the list of first-implied protocols to find the set
502 // all the protocols implied excluding the listed protocols themselves since
503 // they are not yet a part of the `RuntimePds` list.
504 for (const auto *PD : FirstImpliedProtos) {
505 PD->getImpliedProtocols(AllImpliedProtocols);
506 }
507
508 // From the first-implied list we have to finish building the final protocol
509 // list. If a protocol in the first-implied list was already implied via some
510 // inheritance path through some other protocols then it would be redundant to
511 // add it here and so we skip over it.
512 for (const auto *PD : FirstImpliedProtos) {
513 if (!AllImpliedProtocols.contains(PD)) {
514 RuntimePds.push_back(PD);
515 }
516 }
517
518 return RuntimePds;
519}
520
521/// Instead of '[[MyClass alloc] init]', try to generate
522/// 'objc_alloc_init(MyClass)'. This provides a code size improvement on the
523/// caller side, as well as the optimized objc_alloc.
524static std::optional<llvm::Value *>
526 auto &Runtime = CGF.getLangOpts().ObjCRuntime;
527 if (!Runtime.shouldUseRuntimeFunctionForCombinedAllocInit())
528 return std::nullopt;
529
530 // Match the exact pattern '[[MyClass alloc] init]'.
531 Selector Sel = OME->getSelector();
533 !OME->getType()->isObjCObjectPointerType() || !Sel.isUnarySelector() ||
534 Sel.getNameForSlot(0) != "init")
535 return std::nullopt;
536
537 // Okay, this is '[receiver init]', check if 'receiver' is '[cls alloc]'
538 // with 'cls' a Class.
539 auto *SubOME =
540 dyn_cast<ObjCMessageExpr>(OME->getInstanceReceiver()->IgnoreParenCasts());
541 if (!SubOME)
542 return std::nullopt;
543 Selector SubSel = SubOME->getSelector();
544
545 if (!SubOME->getType()->isObjCObjectPointerType() ||
546 !SubSel.isUnarySelector() || SubSel.getNameForSlot(0) != "alloc")
547 return std::nullopt;
548
549 llvm::Value *Receiver = nullptr;
550 switch (SubOME->getReceiverKind()) {
552 if (!SubOME->getInstanceReceiver()->getType()->isObjCClassType())
553 return std::nullopt;
554 Receiver = CGF.EmitScalarExpr(SubOME->getInstanceReceiver());
555 break;
556
558 QualType ReceiverType = SubOME->getClassReceiver();
559 const ObjCObjectType *ObjTy = ReceiverType->castAs<ObjCObjectType>();
560 const ObjCInterfaceDecl *ID = ObjTy->getInterface();
561 assert(ID && "null interface should be impossible here");
562 Receiver = CGF.CGM.getObjCRuntime().GetClass(CGF, ID);
563 break;
564 }
567 return std::nullopt;
568 }
569
570 return CGF.EmitObjCAllocInit(Receiver, CGF.ConvertType(OME->getType()));
571}
572
574 ReturnValueSlot Return) {
575 // Only the lookup mechanism and first two arguments of the method
576 // implementation vary between runtimes. We can get the receiver and
577 // arguments in generic code.
578
579 bool isDelegateInit = E->isDelegateInitCall();
580
581 const ObjCMethodDecl *method = E->getMethodDecl();
582
583 // If the method is -retain, and the receiver's being loaded from
584 // a __weak variable, peephole the entire operation to objc_loadWeakRetained.
585 if (method && E->getReceiverKind() == ObjCMessageExpr::Instance &&
586 method->getMethodFamily() == OMF_retain) {
587 if (auto lvalueExpr = findWeakLValue(E->getInstanceReceiver())) {
588 LValue lvalue = EmitLValue(lvalueExpr);
589 llvm::Value *result = EmitARCLoadWeakRetained(lvalue.getAddress(*this));
590 return AdjustObjCObjectType(*this, E->getType(), RValue::get(result));
591 }
592 }
593
594 if (std::optional<llvm::Value *> Val = tryEmitSpecializedAllocInit(*this, E))
595 return AdjustObjCObjectType(*this, E->getType(), RValue::get(*Val));
596
597 // We don't retain the receiver in delegate init calls, and this is
598 // safe because the receiver value is always loaded from 'self',
599 // which we zero out. We don't want to Block_copy block receivers,
600 // though.
601 bool retainSelf =
602 (!isDelegateInit &&
603 CGM.getLangOpts().ObjCAutoRefCount &&
604 method &&
605 method->hasAttr<NSConsumesSelfAttr>());
606
607 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
608 bool isSuperMessage = false;
609 bool isClassMessage = false;
610 ObjCInterfaceDecl *OID = nullptr;
611 // Find the receiver
612 QualType ReceiverType;
613 llvm::Value *Receiver = nullptr;
614 switch (E->getReceiverKind()) {
616 ReceiverType = E->getInstanceReceiver()->getType();
617 isClassMessage = ReceiverType->isObjCClassType();
618 if (retainSelf) {
621 Receiver = ter.getPointer();
622 if (ter.getInt()) retainSelf = false;
623 } else
624 Receiver = EmitScalarExpr(E->getInstanceReceiver());
625 break;
626
628 ReceiverType = E->getClassReceiver();
629 OID = ReceiverType->castAs<ObjCObjectType>()->getInterface();
630 assert(OID && "Invalid Objective-C class message send");
631 Receiver = Runtime.GetClass(*this, OID);
632 isClassMessage = true;
633 break;
634 }
635
637 ReceiverType = E->getSuperType();
638 Receiver = LoadObjCSelf();
639 isSuperMessage = true;
640 break;
641
643 ReceiverType = E->getSuperType();
644 Receiver = LoadObjCSelf();
645 isSuperMessage = true;
646 isClassMessage = true;
647 break;
648 }
649
650 if (retainSelf)
651 Receiver = EmitARCRetainNonBlock(Receiver);
652
653 // In ARC, we sometimes want to "extend the lifetime"
654 // (i.e. retain+autorelease) of receivers of returns-inner-pointer
655 // messages.
656 if (getLangOpts().ObjCAutoRefCount && method &&
657 method->hasAttr<ObjCReturnsInnerPointerAttr>() &&
659 Receiver = EmitARCRetainAutorelease(ReceiverType, Receiver);
660
661 QualType ResultType = method ? method->getReturnType() : E->getType();
662
663 CallArgList Args;
664 EmitCallArgs(Args, method, E->arguments(), /*AC*/AbstractCallee(method));
665
666 // For delegate init calls in ARC, do an unsafe store of null into
667 // self. This represents the call taking direct ownership of that
668 // value. We have to do this after emitting the other call
669 // arguments because they might also reference self, but we don't
670 // have to worry about any of them modifying self because that would
671 // be an undefined read and write of an object in unordered
672 // expressions.
673 if (isDelegateInit) {
674 assert(getLangOpts().ObjCAutoRefCount &&
675 "delegate init calls should only be marked in ARC");
676
677 // Do an unsafe store of null into self.
678 Address selfAddr =
679 GetAddrOfLocalVar(cast<ObjCMethodDecl>(CurCodeDecl)->getSelfDecl());
680 Builder.CreateStore(getNullForVariable(selfAddr), selfAddr);
681 }
682
683 RValue result;
684 if (isSuperMessage) {
685 // super is only valid in an Objective-C method
686 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
687 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
688 result = Runtime.GenerateMessageSendSuper(*this, Return, ResultType,
689 E->getSelector(),
690 OMD->getClassInterface(),
691 isCategoryImpl,
692 Receiver,
693 isClassMessage,
694 Args,
695 method);
696 } else {
697 // Call runtime methods directly if we can.
699 *this, Return, ResultType, E->getSelector(), Receiver, Args, OID,
700 method, isClassMessage);
701 }
702
703 // For delegate init calls in ARC, implicitly store the result of
704 // the call back into self. This takes ownership of the value.
705 if (isDelegateInit) {
706 Address selfAddr =
707 GetAddrOfLocalVar(cast<ObjCMethodDecl>(CurCodeDecl)->getSelfDecl());
708 llvm::Value *newSelf = result.getScalarVal();
709
710 // The delegate return type isn't necessarily a matching type; in
711 // fact, it's quite likely to be 'id'.
712 llvm::Type *selfTy = selfAddr.getElementType();
713 newSelf = Builder.CreateBitCast(newSelf, selfTy);
714
715 Builder.CreateStore(newSelf, selfAddr);
716 }
717
718 return AdjustObjCObjectType(*this, E->getType(), result);
719}
720
721namespace {
722struct FinishARCDealloc final : EHScopeStack::Cleanup {
723 void Emit(CodeGenFunction &CGF, Flags flags) override {
724 const ObjCMethodDecl *method = cast<ObjCMethodDecl>(CGF.CurCodeDecl);
725
726 const ObjCImplDecl *impl = cast<ObjCImplDecl>(method->getDeclContext());
727 const ObjCInterfaceDecl *iface = impl->getClassInterface();
728 if (!iface->getSuperClass()) return;
729
730 bool isCategory = isa<ObjCCategoryImplDecl>(impl);
731
732 // Call [super dealloc] if we have a superclass.
733 llvm::Value *self = CGF.LoadObjCSelf();
734
735 CallArgList args;
737 CGF.getContext().VoidTy,
738 method->getSelector(),
739 iface,
740 isCategory,
741 self,
742 /*is class msg*/ false,
743 args,
744 method);
745 }
746};
747}
748
749/// StartObjCMethod - Begin emission of an ObjCMethod. This generates
750/// the LLVM function and sets the other context used by
751/// CodeGenFunction.
753 const ObjCContainerDecl *CD) {
754 SourceLocation StartLoc = OMD->getBeginLoc();
755 FunctionArgList args;
756 // Check if we should generate debug info for this method.
757 if (OMD->hasAttr<NoDebugAttr>())
758 DebugInfo = nullptr; // disable debug info indefinitely for this function
759
760 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
761
763 if (OMD->isDirectMethod()) {
764 Fn->setVisibility(llvm::Function::HiddenVisibility);
765 CGM.SetLLVMFunctionAttributes(OMD, FI, Fn, /*IsThunk=*/false);
767 } else {
769 }
770
771 args.push_back(OMD->getSelfDecl());
772 if (!OMD->isDirectMethod())
773 args.push_back(OMD->getCmdDecl());
774
775 args.append(OMD->param_begin(), OMD->param_end());
776
777 CurGD = OMD;
778 CurEHLocation = OMD->getEndLoc();
779
780 StartFunction(OMD, OMD->getReturnType(), Fn, FI, args,
781 OMD->getLocation(), StartLoc);
782
783 if (OMD->isDirectMethod()) {
784 // This function is a direct call, it has to implement a nil check
785 // on entry.
786 //
787 // TODO: possibly have several entry points to elide the check
788 CGM.getObjCRuntime().GenerateDirectMethodPrologue(*this, Fn, OMD, CD);
789 }
790
791 // In ARC, certain methods get an extra cleanup.
792 if (CGM.getLangOpts().ObjCAutoRefCount &&
793 OMD->isInstanceMethod() &&
794 OMD->getSelector().isUnarySelector()) {
795 const IdentifierInfo *ident =
797 if (ident->isStr("dealloc"))
798 EHStack.pushCleanup<FinishARCDealloc>(getARCCleanupKind());
799 }
800}
801
802static llvm::Value *emitARCRetainLoadOfScalar(CodeGenFunction &CGF,
803 LValue lvalue, QualType type);
804
805/// Generate an Objective-C method. An Objective-C method is a C function with
806/// its pointer, name, and types registered in the class structure.
810 assert(isa<CompoundStmt>(OMD->getBody()));
812 EmitCompoundStmtWithoutScope(*cast<CompoundStmt>(OMD->getBody()));
814}
815
816/// emitStructGetterCall - Call the runtime function to load a property
817/// into the return value slot.
819 bool isAtomic, bool hasStrong) {
820 ASTContext &Context = CGF.getContext();
821
822 llvm::Value *src =
823 CGF.EmitLValueForIvar(CGF.TypeOfSelfObject(), CGF.LoadObjCSelf(), ivar, 0)
824 .getPointer(CGF);
825
826 // objc_copyStruct (ReturnValue, &structIvar,
827 // sizeof (Type of Ivar), isAtomic, false);
828 CallArgList args;
829
830 llvm::Value *dest = CGF.ReturnValue.getPointer();
831 args.add(RValue::get(dest), Context.VoidPtrTy);
832 args.add(RValue::get(src), Context.VoidPtrTy);
833
834 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType());
835 args.add(RValue::get(CGF.CGM.getSize(size)), Context.getSizeType());
836 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
837 args.add(RValue::get(CGF.Builder.getInt1(hasStrong)), Context.BoolTy);
838
839 llvm::FunctionCallee fn = CGF.CGM.getObjCRuntime().GetGetStructFunction();
840 CGCallee callee = CGCallee::forDirect(fn);
841 CGF.EmitCall(CGF.getTypes().arrangeBuiltinFunctionCall(Context.VoidTy, args),
842 callee, ReturnValueSlot(), args);
843}
844
845/// Determine whether the given architecture supports unaligned atomic
846/// accesses. They don't have to be fast, just faster than a function
847/// call and a mutex.
848static bool hasUnalignedAtomics(llvm::Triple::ArchType arch) {
849 // FIXME: Allow unaligned atomic load/store on x86. (It is not
850 // currently supported by the backend.)
851 return false;
852}
853
854/// Return the maximum size that permits atomic accesses for the given
855/// architecture.
857 llvm::Triple::ArchType arch) {
858 // ARM has 8-byte atomic accesses, but it's not clear whether we
859 // want to rely on them here.
860
861 // In the default case, just assume that any size up to a pointer is
862 // fine given adequate alignment.
864}
865
866namespace {
867 class PropertyImplStrategy {
868 public:
869 enum StrategyKind {
870 /// The 'native' strategy is to use the architecture's provided
871 /// reads and writes.
872 Native,
873
874 /// Use objc_setProperty and objc_getProperty.
875 GetSetProperty,
876
877 /// Use objc_setProperty for the setter, but use expression
878 /// evaluation for the getter.
879 SetPropertyAndExpressionGet,
880
881 /// Use objc_copyStruct.
882 CopyStruct,
883
884 /// The 'expression' strategy is to emit normal assignment or
885 /// lvalue-to-rvalue expressions.
887 };
888
889 StrategyKind getKind() const { return StrategyKind(Kind); }
890
891 bool hasStrongMember() const { return HasStrong; }
892 bool isAtomic() const { return IsAtomic; }
893 bool isCopy() const { return IsCopy; }
894
895 CharUnits getIvarSize() const { return IvarSize; }
896 CharUnits getIvarAlignment() const { return IvarAlignment; }
897
898 PropertyImplStrategy(CodeGenModule &CGM,
899 const ObjCPropertyImplDecl *propImpl);
900
901 private:
902 LLVM_PREFERRED_TYPE(StrategyKind)
903 unsigned Kind : 8;
904 LLVM_PREFERRED_TYPE(bool)
905 unsigned IsAtomic : 1;
906 LLVM_PREFERRED_TYPE(bool)
907 unsigned IsCopy : 1;
908 LLVM_PREFERRED_TYPE(bool)
909 unsigned HasStrong : 1;
910
911 CharUnits IvarSize;
912 CharUnits IvarAlignment;
913 };
914}
915
916/// Pick an implementation strategy for the given property synthesis.
917PropertyImplStrategy::PropertyImplStrategy(CodeGenModule &CGM,
918 const ObjCPropertyImplDecl *propImpl) {
919 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl();
920 ObjCPropertyDecl::SetterKind setterKind = prop->getSetterKind();
921
922 IsCopy = (setterKind == ObjCPropertyDecl::Copy);
923 IsAtomic = prop->isAtomic();
924 HasStrong = false; // doesn't matter here.
925
926 // Evaluate the ivar's size and alignment.
927 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
928 QualType ivarType = ivar->getType();
929 auto TInfo = CGM.getContext().getTypeInfoInChars(ivarType);
930 IvarSize = TInfo.Width;
931 IvarAlignment = TInfo.Align;
932
933 // If we have a copy property, we always have to use setProperty.
934 // If the property is atomic we need to use getProperty, but in
935 // the nonatomic case we can just use expression.
936 if (IsCopy) {
937 Kind = IsAtomic ? GetSetProperty : SetPropertyAndExpressionGet;
938 return;
939 }
940
941 // Handle retain.
942 if (setterKind == ObjCPropertyDecl::Retain) {
943 // In GC-only, there's nothing special that needs to be done.
944 if (CGM.getLangOpts().getGC() == LangOptions::GCOnly) {
945 // fallthrough
946
947 // In ARC, if the property is non-atomic, use expression emission,
948 // which translates to objc_storeStrong. This isn't required, but
949 // it's slightly nicer.
950 } else if (CGM.getLangOpts().ObjCAutoRefCount && !IsAtomic) {
951 // Using standard expression emission for the setter is only
952 // acceptable if the ivar is __strong, which won't be true if
953 // the property is annotated with __attribute__((NSObject)).
954 // TODO: falling all the way back to objc_setProperty here is
955 // just laziness, though; we could still use objc_storeStrong
956 // if we hacked it right.
957 if (ivarType.getObjCLifetime() == Qualifiers::OCL_Strong)
958 Kind = Expression;
959 else
960 Kind = SetPropertyAndExpressionGet;
961 return;
962
963 // Otherwise, we need to at least use setProperty. However, if
964 // the property isn't atomic, we can use normal expression
965 // emission for the getter.
966 } else if (!IsAtomic) {
967 Kind = SetPropertyAndExpressionGet;
968 return;
969
970 // Otherwise, we have to use both setProperty and getProperty.
971 } else {
972 Kind = GetSetProperty;
973 return;
974 }
975 }
976
977 // If we're not atomic, just use expression accesses.
978 if (!IsAtomic) {
980 return;
981 }
982
983 // Properties on bitfield ivars need to be emitted using expression
984 // accesses even if they're nominally atomic.
985 if (ivar->isBitField()) {
987 return;
988 }
989
990 // GC-qualified or ARC-qualified ivars need to be emitted as
991 // expressions. This actually works out to being atomic anyway,
992 // except for ARC __strong, but that should trigger the above code.
993 if (ivarType.hasNonTrivialObjCLifetime() ||
994 (CGM.getLangOpts().getGC() &&
995 CGM.getContext().getObjCGCAttrKind(ivarType))) {
997 return;
998 }
999
1000 // Compute whether the ivar has strong members.
1001 if (CGM.getLangOpts().getGC())
1002 if (const RecordType *recordType = ivarType->getAs<RecordType>())
1003 HasStrong = recordType->getDecl()->hasObjectMember();
1004
1005 // We can never access structs with object members with a native
1006 // access, because we need to use write barriers. This is what
1007 // objc_copyStruct is for.
1008 if (HasStrong) {
1009 Kind = CopyStruct;
1010 return;
1011 }
1012
1013 // Otherwise, this is target-dependent and based on the size and
1014 // alignment of the ivar.
1015
1016 // If the size of the ivar is not a power of two, give up. We don't
1017 // want to get into the business of doing compare-and-swaps.
1018 if (!IvarSize.isPowerOfTwo()) {
1019 Kind = CopyStruct;
1020 return;
1021 }
1022
1023 llvm::Triple::ArchType arch =
1024 CGM.getTarget().getTriple().getArch();
1025
1026 // Most architectures require memory to fit within a single cache
1027 // line, so the alignment has to be at least the size of the access.
1028 // Otherwise we have to grab a lock.
1029 if (IvarAlignment < IvarSize && !hasUnalignedAtomics(arch)) {
1030 Kind = CopyStruct;
1031 return;
1032 }
1033
1034 // If the ivar's size exceeds the architecture's maximum atomic
1035 // access size, we have to use CopyStruct.
1036 if (IvarSize > getMaxAtomicAccessSize(CGM, arch)) {
1037 Kind = CopyStruct;
1038 return;
1039 }
1040
1041 // Otherwise, we can use native loads and stores.
1042 Kind = Native;
1043}
1044
1045/// Generate an Objective-C property getter function.
1046///
1047/// The given Decl must be an ObjCImplementationDecl. \@synthesize
1048/// is illegal within a category.
1050 const ObjCPropertyImplDecl *PID) {
1051 llvm::Constant *AtomicHelperFn =
1053 ObjCMethodDecl *OMD = PID->getGetterMethodDecl();
1054 assert(OMD && "Invalid call to generate getter (empty method)");
1056
1057 generateObjCGetterBody(IMP, PID, OMD, AtomicHelperFn);
1058
1059 FinishFunction(OMD->getEndLoc());
1060}
1061
1062static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) {
1063 const Expr *getter = propImpl->getGetterCXXConstructor();
1064 if (!getter) return true;
1065
1066 // Sema only makes only of these when the ivar has a C++ class type,
1067 // so the form is pretty constrained.
1068
1069 // If the property has a reference type, we might just be binding a
1070 // reference, in which case the result will be a gl-value. We should
1071 // treat this as a non-trivial operation.
1072 if (getter->isGLValue())
1073 return false;
1074
1075 // If we selected a trivial copy-constructor, we're okay.
1076 if (const CXXConstructExpr *construct = dyn_cast<CXXConstructExpr>(getter))
1077 return (construct->getConstructor()->isTrivial());
1078
1079 // The constructor might require cleanups (in which case it's never
1080 // trivial).
1081 assert(isa<ExprWithCleanups>(getter));
1082 return false;
1083}
1084
1085/// emitCPPObjectAtomicGetterCall - Call the runtime function to
1086/// copy the ivar into the resturn slot.
1088 llvm::Value *returnAddr,
1089 ObjCIvarDecl *ivar,
1090 llvm::Constant *AtomicHelperFn) {
1091 // objc_copyCppObjectAtomic (&returnSlot, &CppObjectIvar,
1092 // AtomicHelperFn);
1093 CallArgList args;
1094
1095 // The 1st argument is the return Slot.
1096 args.add(RValue::get(returnAddr), CGF.getContext().VoidPtrTy);
1097
1098 // The 2nd argument is the address of the ivar.
1099 llvm::Value *ivarAddr =
1100 CGF.EmitLValueForIvar(CGF.TypeOfSelfObject(), CGF.LoadObjCSelf(), ivar, 0)
1101 .getPointer(CGF);
1102 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
1103
1104 // Third argument is the helper function.
1105 args.add(RValue::get(AtomicHelperFn), CGF.getContext().VoidPtrTy);
1106
1107 llvm::FunctionCallee copyCppAtomicObjectFn =
1109 CGCallee callee = CGCallee::forDirect(copyCppAtomicObjectFn);
1110 CGF.EmitCall(
1112 callee, ReturnValueSlot(), args);
1113}
1114
1115// emitCmdValueForGetterSetterBody - Handle emitting the load necessary for
1116// the `_cmd` selector argument for getter/setter bodies. For direct methods,
1117// this returns an undefined/poison value; this matches behavior prior to `_cmd`
1118// being removed from the direct method ABI as the getter/setter caller would
1119// never load one. For non-direct methods, this emits a load of the implicit
1120// `_cmd` storage.
1122 ObjCMethodDecl *MD) {
1123 if (MD->isDirectMethod()) {
1124 // Direct methods do not have a `_cmd` argument. Emit an undefined/poison
1125 // value. This will be passed to objc_getProperty/objc_setProperty, which
1126 // has not appeared bothered by the `_cmd` argument being undefined before.
1127 llvm::Type *selType = CGF.ConvertType(CGF.getContext().getObjCSelType());
1128 return llvm::PoisonValue::get(selType);
1129 }
1130
1131 return CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(MD->getCmdDecl()), "cmd");
1132}
1133
1134void
1136 const ObjCPropertyImplDecl *propImpl,
1137 const ObjCMethodDecl *GetterMethodDecl,
1138 llvm::Constant *AtomicHelperFn) {
1139
1140 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
1141
1143 if (!AtomicHelperFn) {
1144 LValue Src =
1146 LValue Dst = MakeAddrLValue(ReturnValue, ivar->getType());
1148 } else {
1149 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
1151 AtomicHelperFn);
1152 }
1153 return;
1154 }
1155
1156 // If there's a non-trivial 'get' expression, we just have to emit that.
1157 if (!hasTrivialGetExpr(propImpl)) {
1158 if (!AtomicHelperFn) {
1160 propImpl->getGetterCXXConstructor(),
1161 /* NRVOCandidate=*/nullptr);
1162 EmitReturnStmt(*ret);
1163 }
1164 else {
1165 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
1167 ivar, AtomicHelperFn);
1168 }
1169 return;
1170 }
1171
1172 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl();
1173 QualType propType = prop->getType();
1174 ObjCMethodDecl *getterMethod = propImpl->getGetterMethodDecl();
1175
1176 // Pick an implementation strategy.
1177 PropertyImplStrategy strategy(CGM, propImpl);
1178 switch (strategy.getKind()) {
1179 case PropertyImplStrategy::Native: {
1180 // We don't need to do anything for a zero-size struct.
1181 if (strategy.getIvarSize().isZero())
1182 return;
1183
1185
1186 // Currently, all atomic accesses have to be through integer
1187 // types, so there's no point in trying to pick a prettier type.
1188 uint64_t ivarSize = getContext().toBits(strategy.getIvarSize());
1189 llvm::Type *bitcastType = llvm::Type::getIntNTy(getLLVMContext(), ivarSize);
1190
1191 // Perform an atomic load. This does not impose ordering constraints.
1192 Address ivarAddr = LV.getAddress(*this);
1193 ivarAddr = ivarAddr.withElementType(bitcastType);
1194 llvm::LoadInst *load = Builder.CreateLoad(ivarAddr, "load");
1195 load->setAtomic(llvm::AtomicOrdering::Unordered);
1196
1197 // Store that value into the return address. Doing this with a
1198 // bitcast is likely to produce some pretty ugly IR, but it's not
1199 // the *most* terrible thing in the world.
1200 llvm::Type *retTy = ConvertType(getterMethod->getReturnType());
1201 uint64_t retTySize = CGM.getDataLayout().getTypeSizeInBits(retTy);
1202 llvm::Value *ivarVal = load;
1203 if (ivarSize > retTySize) {
1204 bitcastType = llvm::Type::getIntNTy(getLLVMContext(), retTySize);
1205 ivarVal = Builder.CreateTrunc(load, bitcastType);
1206 }
1207 Builder.CreateStore(ivarVal, ReturnValue.withElementType(bitcastType));
1208
1209 // Make sure we don't do an autorelease.
1210 AutoreleaseResult = false;
1211 return;
1212 }
1213
1214 case PropertyImplStrategy::GetSetProperty: {
1215 llvm::FunctionCallee getPropertyFn =
1217 if (!getPropertyFn) {
1218 CGM.ErrorUnsupported(propImpl, "Obj-C getter requiring atomic copy");
1219 return;
1220 }
1221 CGCallee callee = CGCallee::forDirect(getPropertyFn);
1222
1223 // Return (ivar-type) objc_getProperty((id) self, _cmd, offset, true).
1224 // FIXME: Can't this be simpler? This might even be worse than the
1225 // corresponding gcc code.
1226 llvm::Value *cmd = emitCmdValueForGetterSetterBody(*this, getterMethod);
1227 llvm::Value *self = Builder.CreateBitCast(LoadObjCSelf(), VoidPtrTy);
1228 llvm::Value *ivarOffset =
1230
1231 CallArgList args;
1232 args.add(RValue::get(self), getContext().getObjCIdType());
1233 args.add(RValue::get(cmd), getContext().getObjCSelType());
1234 args.add(RValue::get(ivarOffset), getContext().getPointerDiffType());
1235 args.add(RValue::get(Builder.getInt1(strategy.isAtomic())),
1236 getContext().BoolTy);
1237
1238 // FIXME: We shouldn't need to get the function info here, the
1239 // runtime already should have computed it to build the function.
1240 llvm::CallBase *CallInstruction;
1241 RValue RV = EmitCall(getTypes().arrangeBuiltinFunctionCall(
1242 getContext().getObjCIdType(), args),
1243 callee, ReturnValueSlot(), args, &CallInstruction);
1244 if (llvm::CallInst *call = dyn_cast<llvm::CallInst>(CallInstruction))
1245 call->setTailCall();
1246
1247 // We need to fix the type here. Ivars with copy & retain are
1248 // always objects so we don't need to worry about complex or
1249 // aggregates.
1250 RV = RValue::get(Builder.CreateBitCast(
1251 RV.getScalarVal(),
1252 getTypes().ConvertType(getterMethod->getReturnType())));
1253
1254 EmitReturnOfRValue(RV, propType);
1255
1256 // objc_getProperty does an autorelease, so we should suppress ours.
1257 AutoreleaseResult = false;
1258
1259 return;
1260 }
1261
1262 case PropertyImplStrategy::CopyStruct:
1263 emitStructGetterCall(*this, ivar, strategy.isAtomic(),
1264 strategy.hasStrongMember());
1265 return;
1266
1267 case PropertyImplStrategy::Expression:
1268 case PropertyImplStrategy::SetPropertyAndExpressionGet: {
1270
1271 QualType ivarType = ivar->getType();
1272 switch (getEvaluationKind(ivarType)) {
1273 case TEK_Complex: {
1276 /*init*/ true);
1277 return;
1278 }
1279 case TEK_Aggregate: {
1280 // The return value slot is guaranteed to not be aliased, but
1281 // that's not necessarily the same as "on the stack", so
1282 // we still potentially need objc_memmove_collectable.
1283 EmitAggregateCopy(/* Dest= */ MakeAddrLValue(ReturnValue, ivarType),
1284 /* Src= */ LV, ivarType, getOverlapForReturnValue());
1285 return;
1286 }
1287 case TEK_Scalar: {
1288 llvm::Value *value;
1289 if (propType->isReferenceType()) {
1290 value = LV.getAddress(*this).getPointer();
1291 } else {
1292 // We want to load and autoreleaseReturnValue ARC __weak ivars.
1294 if (getLangOpts().ObjCAutoRefCount) {
1295 value = emitARCRetainLoadOfScalar(*this, LV, ivarType);
1296 } else {
1297 value = EmitARCLoadWeak(LV.getAddress(*this));
1298 }
1299
1300 // Otherwise we want to do a simple load, suppressing the
1301 // final autorelease.
1302 } else {
1304 AutoreleaseResult = false;
1305 }
1306
1307 value = Builder.CreateBitCast(
1308 value, ConvertType(GetterMethodDecl->getReturnType()));
1309 }
1310
1311 EmitReturnOfRValue(RValue::get(value), propType);
1312 return;
1313 }
1314 }
1315 llvm_unreachable("bad evaluation kind");
1316 }
1317
1318 }
1319 llvm_unreachable("bad @property implementation strategy!");
1320}
1321
1322/// emitStructSetterCall - Call the runtime function to store the value
1323/// from the first formal parameter into the given ivar.
1325 ObjCIvarDecl *ivar) {
1326 // objc_copyStruct (&structIvar, &Arg,
1327 // sizeof (struct something), true, false);
1328 CallArgList args;
1329
1330 // The first argument is the address of the ivar.
1331 llvm::Value *ivarAddr =
1332 CGF.EmitLValueForIvar(CGF.TypeOfSelfObject(), CGF.LoadObjCSelf(), ivar, 0)
1333 .getPointer(CGF);
1334 ivarAddr = CGF.Builder.CreateBitCast(ivarAddr, CGF.Int8PtrTy);
1335 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
1336
1337 // The second argument is the address of the parameter variable.
1338 ParmVarDecl *argVar = *OMD->param_begin();
1339 DeclRefExpr argRef(CGF.getContext(), argVar, false,
1341 SourceLocation());
1342 llvm::Value *argAddr = CGF.EmitLValue(&argRef).getPointer(CGF);
1343 args.add(RValue::get(argAddr), CGF.getContext().VoidPtrTy);
1344
1345 // The third argument is the sizeof the type.
1346 llvm::Value *size =
1347 CGF.CGM.getSize(CGF.getContext().getTypeSizeInChars(ivar->getType()));
1348 args.add(RValue::get(size), CGF.getContext().getSizeType());
1349
1350 // The fourth argument is the 'isAtomic' flag.
1351 args.add(RValue::get(CGF.Builder.getTrue()), CGF.getContext().BoolTy);
1352
1353 // The fifth argument is the 'hasStrong' flag.
1354 // FIXME: should this really always be false?
1355 args.add(RValue::get(CGF.Builder.getFalse()), CGF.getContext().BoolTy);
1356
1357 llvm::FunctionCallee fn = CGF.CGM.getObjCRuntime().GetSetStructFunction();
1358 CGCallee callee = CGCallee::forDirect(fn);
1359 CGF.EmitCall(
1361 callee, ReturnValueSlot(), args);
1362}
1363
1364/// emitCPPObjectAtomicSetterCall - Call the runtime function to store
1365/// the value from the first formal parameter into the given ivar, using
1366/// the Cpp API for atomic Cpp objects with non-trivial copy assignment.
1368 ObjCMethodDecl *OMD,
1369 ObjCIvarDecl *ivar,
1370 llvm::Constant *AtomicHelperFn) {
1371 // objc_copyCppObjectAtomic (&CppObjectIvar, &Arg,
1372 // AtomicHelperFn);
1373 CallArgList args;
1374
1375 // The first argument is the address of the ivar.
1376 llvm::Value *ivarAddr =
1377 CGF.EmitLValueForIvar(CGF.TypeOfSelfObject(), CGF.LoadObjCSelf(), ivar, 0)
1378 .getPointer(CGF);
1379 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
1380
1381 // The second argument is the address of the parameter variable.
1382 ParmVarDecl *argVar = *OMD->param_begin();
1383 DeclRefExpr argRef(CGF.getContext(), argVar, false,
1385 SourceLocation());
1386 llvm::Value *argAddr = CGF.EmitLValue(&argRef).getPointer(CGF);
1387 args.add(RValue::get(argAddr), CGF.getContext().VoidPtrTy);
1388
1389 // Third argument is the helper function.
1390 args.add(RValue::get(AtomicHelperFn), CGF.getContext().VoidPtrTy);
1391
1392 llvm::FunctionCallee fn =
1394 CGCallee callee = CGCallee::forDirect(fn);
1395 CGF.EmitCall(
1397 callee, ReturnValueSlot(), args);
1398}
1399
1400
1402 Expr *setter = PID->getSetterCXXAssignment();
1403 if (!setter) return true;
1404
1405 // Sema only makes only of these when the ivar has a C++ class type,
1406 // so the form is pretty constrained.
1407
1408 // An operator call is trivial if the function it calls is trivial.
1409 // This also implies that there's nothing non-trivial going on with
1410 // the arguments, because operator= can only be trivial if it's a
1411 // synthesized assignment operator and therefore both parameters are
1412 // references.
1413 if (CallExpr *call = dyn_cast<CallExpr>(setter)) {
1414 if (const FunctionDecl *callee
1415 = dyn_cast_or_null<FunctionDecl>(call->getCalleeDecl()))
1416 if (callee->isTrivial())
1417 return true;
1418 return false;
1419 }
1420
1421 assert(isa<ExprWithCleanups>(setter));
1422 return false;
1423}
1424
1426 if (CGM.getLangOpts().getGC() != LangOptions::NonGC)
1427 return false;
1429}
1430
1431void
1433 const ObjCPropertyImplDecl *propImpl,
1434 llvm::Constant *AtomicHelperFn) {
1435 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
1436 ObjCMethodDecl *setterMethod = propImpl->getSetterMethodDecl();
1437
1439 ParmVarDecl *PVD = *setterMethod->param_begin();
1440 if (!AtomicHelperFn) {
1441 // Call the move assignment operator instead of calling the copy
1442 // assignment operator and destructor.
1444 /*quals*/ 0);
1445 LValue Src = MakeAddrLValue(GetAddrOfLocalVar(PVD), ivar->getType());
1447 } else {
1448 // If atomic, assignment is called via a locking api.
1449 emitCPPObjectAtomicSetterCall(*this, setterMethod, ivar, AtomicHelperFn);
1450 }
1451 // Decativate the destructor for the setter parameter.
1452 DeactivateCleanupBlock(CalleeDestructedParamCleanups[PVD], AllocaInsertPt);
1453 return;
1454 }
1455
1456 // Just use the setter expression if Sema gave us one and it's
1457 // non-trivial.
1458 if (!hasTrivialSetExpr(propImpl)) {
1459 if (!AtomicHelperFn)
1460 // If non-atomic, assignment is called directly.
1461 EmitStmt(propImpl->getSetterCXXAssignment());
1462 else
1463 // If atomic, assignment is called via a locking api.
1464 emitCPPObjectAtomicSetterCall(*this, setterMethod, ivar,
1465 AtomicHelperFn);
1466 return;
1467 }
1468
1469 PropertyImplStrategy strategy(CGM, propImpl);
1470 switch (strategy.getKind()) {
1471 case PropertyImplStrategy::Native: {
1472 // We don't need to do anything for a zero-size struct.
1473 if (strategy.getIvarSize().isZero())
1474 return;
1475
1476 Address argAddr = GetAddrOfLocalVar(*setterMethod->param_begin());
1477
1478 LValue ivarLValue =
1479 EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, /*quals*/ 0);
1480 Address ivarAddr = ivarLValue.getAddress(*this);
1481
1482 // Currently, all atomic accesses have to be through integer
1483 // types, so there's no point in trying to pick a prettier type.
1484 llvm::Type *castType = llvm::Type::getIntNTy(
1485 getLLVMContext(), getContext().toBits(strategy.getIvarSize()));
1486
1487 // Cast both arguments to the chosen operation type.
1488 argAddr = argAddr.withElementType(castType);
1489 ivarAddr = ivarAddr.withElementType(castType);
1490
1491 llvm::Value *load = Builder.CreateLoad(argAddr);
1492
1493 // Perform an atomic store. There are no memory ordering requirements.
1494 llvm::StoreInst *store = Builder.CreateStore(load, ivarAddr);
1495 store->setAtomic(llvm::AtomicOrdering::Unordered);
1496 return;
1497 }
1498
1499 case PropertyImplStrategy::GetSetProperty:
1500 case PropertyImplStrategy::SetPropertyAndExpressionGet: {
1501
1502 llvm::FunctionCallee setOptimizedPropertyFn = nullptr;
1503 llvm::FunctionCallee setPropertyFn = nullptr;
1504 if (UseOptimizedSetter(CGM)) {
1505 // 10.8 and iOS 6.0 code and GC is off
1506 setOptimizedPropertyFn =
1508 strategy.isAtomic(), strategy.isCopy());
1509 if (!setOptimizedPropertyFn) {
1510 CGM.ErrorUnsupported(propImpl, "Obj-C optimized setter - NYI");
1511 return;
1512 }
1513 }
1514 else {
1515 setPropertyFn = CGM.getObjCRuntime().GetPropertySetFunction();
1516 if (!setPropertyFn) {
1517 CGM.ErrorUnsupported(propImpl, "Obj-C setter requiring atomic copy");
1518 return;
1519 }
1520 }
1521
1522 // Emit objc_setProperty((id) self, _cmd, offset, arg,
1523 // <is-atomic>, <is-copy>).
1524 llvm::Value *cmd = emitCmdValueForGetterSetterBody(*this, setterMethod);
1525 llvm::Value *self =
1526 Builder.CreateBitCast(LoadObjCSelf(), VoidPtrTy);
1527 llvm::Value *ivarOffset =
1529 Address argAddr = GetAddrOfLocalVar(*setterMethod->param_begin());
1530 llvm::Value *arg = Builder.CreateLoad(argAddr, "arg");
1531 arg = Builder.CreateBitCast(arg, VoidPtrTy);
1532
1533 CallArgList args;
1534 args.add(RValue::get(self), getContext().getObjCIdType());
1535 args.add(RValue::get(cmd), getContext().getObjCSelType());
1536 if (setOptimizedPropertyFn) {
1537 args.add(RValue::get(arg), getContext().getObjCIdType());
1538 args.add(RValue::get(ivarOffset), getContext().getPointerDiffType());
1539 CGCallee callee = CGCallee::forDirect(setOptimizedPropertyFn);
1540 EmitCall(getTypes().arrangeBuiltinFunctionCall(getContext().VoidTy, args),
1541 callee, ReturnValueSlot(), args);
1542 } else {
1543 args.add(RValue::get(ivarOffset), getContext().getPointerDiffType());
1544 args.add(RValue::get(arg), getContext().getObjCIdType());
1545 args.add(RValue::get(Builder.getInt1(strategy.isAtomic())),
1546 getContext().BoolTy);
1547 args.add(RValue::get(Builder.getInt1(strategy.isCopy())),
1548 getContext().BoolTy);
1549 // FIXME: We shouldn't need to get the function info here, the runtime
1550 // already should have computed it to build the function.
1551 CGCallee callee = CGCallee::forDirect(setPropertyFn);
1552 EmitCall(getTypes().arrangeBuiltinFunctionCall(getContext().VoidTy, args),
1553 callee, ReturnValueSlot(), args);
1554 }
1555
1556 return;
1557 }
1558
1559 case PropertyImplStrategy::CopyStruct:
1560 emitStructSetterCall(*this, setterMethod, ivar);
1561 return;
1562
1563 case PropertyImplStrategy::Expression:
1564 break;
1565 }
1566
1567 // Otherwise, fake up some ASTs and emit a normal assignment.
1568 ValueDecl *selfDecl = setterMethod->getSelfDecl();
1569 DeclRefExpr self(getContext(), selfDecl, false, selfDecl->getType(),
1572 CK_LValueToRValue, &self, VK_PRValue,
1574 ObjCIvarRefExpr ivarRef(ivar, ivar->getType().getNonReferenceType(),
1576 &selfLoad, true, true);
1577
1578 ParmVarDecl *argDecl = *setterMethod->param_begin();
1579 QualType argType = argDecl->getType().getNonReferenceType();
1580 DeclRefExpr arg(getContext(), argDecl, false, argType, VK_LValue,
1581 SourceLocation());
1583 argType.getUnqualifiedType(), CK_LValueToRValue,
1584 &arg, VK_PRValue, FPOptionsOverride());
1585
1586 // The property type can differ from the ivar type in some situations with
1587 // Objective-C pointer types, we can always bit cast the RHS in these cases.
1588 // The following absurdity is just to ensure well-formed IR.
1589 CastKind argCK = CK_NoOp;
1590 if (ivarRef.getType()->isObjCObjectPointerType()) {
1591 if (argLoad.getType()->isObjCObjectPointerType())
1592 argCK = CK_BitCast;
1593 else if (argLoad.getType()->isBlockPointerType())
1594 argCK = CK_BlockPointerToObjCPointerCast;
1595 else
1596 argCK = CK_CPointerToObjCPointerCast;
1597 } else if (ivarRef.getType()->isBlockPointerType()) {
1598 if (argLoad.getType()->isBlockPointerType())
1599 argCK = CK_BitCast;
1600 else
1601 argCK = CK_AnyPointerToBlockPointerCast;
1602 } else if (ivarRef.getType()->isPointerType()) {
1603 argCK = CK_BitCast;
1604 } else if (argLoad.getType()->isAtomicType() &&
1605 !ivarRef.getType()->isAtomicType()) {
1606 argCK = CK_AtomicToNonAtomic;
1607 } else if (!argLoad.getType()->isAtomicType() &&
1608 ivarRef.getType()->isAtomicType()) {
1609 argCK = CK_NonAtomicToAtomic;
1610 }
1611 ImplicitCastExpr argCast(ImplicitCastExpr::OnStack, ivarRef.getType(), argCK,
1612 &argLoad, VK_PRValue, FPOptionsOverride());
1613 Expr *finalArg = &argLoad;
1614 if (!getContext().hasSameUnqualifiedType(ivarRef.getType(),
1615 argLoad.getType()))
1616 finalArg = &argCast;
1617
1619 getContext(), &ivarRef, finalArg, BO_Assign, ivarRef.getType(),
1621 EmitStmt(assign);
1622}
1623
1624/// Generate an Objective-C property setter function.
1625///
1626/// The given Decl must be an ObjCImplementationDecl. \@synthesize
1627/// is illegal within a category.
1629 const ObjCPropertyImplDecl *PID) {
1630 llvm::Constant *AtomicHelperFn =
1632 ObjCMethodDecl *OMD = PID->getSetterMethodDecl();
1633 assert(OMD && "Invalid call to generate setter (empty method)");
1635
1636 generateObjCSetterBody(IMP, PID, AtomicHelperFn);
1637
1638 FinishFunction(OMD->getEndLoc());
1639}
1640
1641namespace {
1642 struct DestroyIvar final : EHScopeStack::Cleanup {
1643 private:
1644 llvm::Value *addr;
1645 const ObjCIvarDecl *ivar;
1646 CodeGenFunction::Destroyer *destroyer;
1647 bool useEHCleanupForArray;
1648 public:
1649 DestroyIvar(llvm::Value *addr, const ObjCIvarDecl *ivar,
1650 CodeGenFunction::Destroyer *destroyer,
1651 bool useEHCleanupForArray)
1652 : addr(addr), ivar(ivar), destroyer(destroyer),
1653 useEHCleanupForArray(useEHCleanupForArray) {}
1654
1655 void Emit(CodeGenFunction &CGF, Flags flags) override {
1656 LValue lvalue
1657 = CGF.EmitLValueForIvar(CGF.TypeOfSelfObject(), addr, ivar, /*CVR*/ 0);
1658 CGF.emitDestroy(lvalue.getAddress(CGF), ivar->getType(), destroyer,
1659 flags.isForNormalCleanup() && useEHCleanupForArray);
1660 }
1661 };
1662}
1663
1664/// Like CodeGenFunction::destroyARCStrong, but do it with a call.
1666 Address addr,
1667 QualType type) {
1668 llvm::Value *null = getNullForVariable(addr);
1669 CGF.EmitARCStoreStrongCall(addr, null, /*ignored*/ true);
1670}
1671
1673 ObjCImplementationDecl *impl) {
1674 CodeGenFunction::RunCleanupsScope scope(CGF);
1675
1676 llvm::Value *self = CGF.LoadObjCSelf();
1677
1678 const ObjCInterfaceDecl *iface = impl->getClassInterface();
1679 for (const ObjCIvarDecl *ivar = iface->all_declared_ivar_begin();
1680 ivar; ivar = ivar->getNextIvar()) {
1681 QualType type = ivar->getType();
1682
1683 // Check whether the ivar is a destructible type.
1684 QualType::DestructionKind dtorKind = type.isDestructedType();
1685 if (!dtorKind) continue;
1686
1687 CodeGenFunction::Destroyer *destroyer = nullptr;
1688
1689 // Use a call to objc_storeStrong to destroy strong ivars, for the
1690 // general benefit of the tools.
1691 if (dtorKind == QualType::DK_objc_strong_lifetime) {
1692 destroyer = destroyARCStrongWithStore;
1693
1694 // Otherwise use the default for the destruction kind.
1695 } else {
1696 destroyer = CGF.getDestroyer(dtorKind);
1697 }
1698
1699 CleanupKind cleanupKind = CGF.getCleanupKind(dtorKind);
1700
1701 CGF.EHStack.pushCleanup<DestroyIvar>(cleanupKind, self, ivar, destroyer,
1702 cleanupKind & EHCleanup);
1703 }
1704
1705 assert(scope.requiresCleanups() && "nothing to do in .cxx_destruct?");
1706}
1707
1709 ObjCMethodDecl *MD,
1710 bool ctor) {
1713
1714 // Emit .cxx_construct.
1715 if (ctor) {
1716 // Suppress the final autorelease in ARC.
1717 AutoreleaseResult = false;
1718
1719 for (const auto *IvarInit : IMP->inits()) {
1720 FieldDecl *Field = IvarInit->getAnyMember();
1721 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field);
1723 LoadObjCSelf(), Ivar, 0);
1724 EmitAggExpr(IvarInit->getInit(),
1729 }
1730 // constructor returns 'self'.
1731 CodeGenTypes &Types = CGM.getTypes();
1733 llvm::Value *SelfAsId =
1734 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
1735 EmitReturnOfRValue(RValue::get(SelfAsId), IdTy);
1736
1737 // Emit .cxx_destruct.
1738 } else {
1739 emitCXXDestructMethod(*this, IMP);
1740 }
1742}
1743
1744llvm::Value *CodeGenFunction::LoadObjCSelf() {
1745 VarDecl *Self = cast<ObjCMethodDecl>(CurFuncDecl)->getSelfDecl();
1747 /*is enclosing local*/ (CurFuncDecl != CurCodeDecl),
1748 Self->getType(), VK_LValue, SourceLocation());
1750}
1751
1753 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
1754 ImplicitParamDecl *selfDecl = OMD->getSelfDecl();
1755 const ObjCObjectPointerType *PTy = cast<ObjCObjectPointerType>(
1756 getContext().getCanonicalType(selfDecl->getType()));
1757 return PTy->getPointeeType();
1758}
1759
1761 llvm::FunctionCallee EnumerationMutationFnPtr =
1763 if (!EnumerationMutationFnPtr) {
1764 CGM.ErrorUnsupported(&S, "Obj-C fast enumeration for this runtime");
1765 return;
1766 }
1767 CGCallee EnumerationMutationFn =
1768 CGCallee::forDirect(EnumerationMutationFnPtr);
1769
1770 CGDebugInfo *DI = getDebugInfo();
1771 if (DI)
1772 DI->EmitLexicalBlockStart(Builder, S.getSourceRange().getBegin());
1773
1774 RunCleanupsScope ForScope(*this);
1775
1776 // The local variable comes into scope immediately.
1777 AutoVarEmission variable = AutoVarEmission::invalid();
1778 if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement()))
1779 variable = EmitAutoVarAlloca(*cast<VarDecl>(SD->getSingleDecl()));
1780
1781 JumpDest LoopEnd = getJumpDestInCurrentScope("forcoll.end");
1782
1783 // Fast enumeration state.
1785 Address StatePtr = CreateMemTemp(StateTy, "state.ptr");
1786 EmitNullInitialization(StatePtr, StateTy);
1787
1788 // Number of elements in the items array.
1789 static const unsigned NumItems = 16;
1790
1791 // Fetch the countByEnumeratingWithState:objects:count: selector.
1792 IdentifierInfo *II[] = {
1793 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
1794 &CGM.getContext().Idents.get("objects"),
1795 &CGM.getContext().Idents.get("count")
1796 };
1797 Selector FastEnumSel =
1798 CGM.getContext().Selectors.getSelector(std::size(II), &II[0]);
1799
1801 getContext().getObjCIdType(), llvm::APInt(32, NumItems), nullptr,
1803 Address ItemsPtr = CreateMemTemp(ItemsTy, "items.ptr");
1804
1805 // Emit the collection pointer. In ARC, we do a retain.
1806 llvm::Value *Collection;
1807 if (getLangOpts().ObjCAutoRefCount) {
1808 Collection = EmitARCRetainScalarExpr(S.getCollection());
1809
1810 // Enter a cleanup to do the release.
1811 EmitObjCConsumeObject(S.getCollection()->getType(), Collection);
1812 } else {
1813 Collection = EmitScalarExpr(S.getCollection());
1814 }
1815
1816 // The 'continue' label needs to appear within the cleanup for the
1817 // collection object.
1818 JumpDest AfterBody = getJumpDestInCurrentScope("forcoll.next");
1819
1820 // Send it our message:
1821 CallArgList Args;
1822
1823 // The first argument is a temporary of the enumeration-state type.
1824 Args.add(RValue::get(StatePtr.getPointer()),
1825 getContext().getPointerType(StateTy));
1826
1827 // The second argument is a temporary array with space for NumItems
1828 // pointers. We'll actually be loading elements from the array
1829 // pointer written into the control state; this buffer is so that
1830 // collections that *aren't* backed by arrays can still queue up
1831 // batches of elements.
1832 Args.add(RValue::get(ItemsPtr.getPointer()),
1833 getContext().getPointerType(ItemsTy));
1834
1835 // The third argument is the capacity of that temporary array.
1836 llvm::Type *NSUIntegerTy = ConvertType(getContext().getNSUIntegerType());
1837 llvm::Constant *Count = llvm::ConstantInt::get(NSUIntegerTy, NumItems);
1838 Args.add(RValue::get(Count), getContext().getNSUIntegerType());
1839
1840 // Start the enumeration.
1841 RValue CountRV =
1843 getContext().getNSUIntegerType(),
1844 FastEnumSel, Collection, Args);
1845
1846 // The initial number of objects that were returned in the buffer.
1847 llvm::Value *initialBufferLimit = CountRV.getScalarVal();
1848
1849 llvm::BasicBlock *EmptyBB = createBasicBlock("forcoll.empty");
1850 llvm::BasicBlock *LoopInitBB = createBasicBlock("forcoll.loopinit");
1851
1852 llvm::Value *zero = llvm::Constant::getNullValue(NSUIntegerTy);
1853
1854 // If the limit pointer was zero to begin with, the collection is
1855 // empty; skip all this. Set the branch weight assuming this has the same
1856 // probability of exiting the loop as any other loop exit.
1857 uint64_t EntryCount = getCurrentProfileCount();
1858 Builder.CreateCondBr(
1859 Builder.CreateICmpEQ(initialBufferLimit, zero, "iszero"), EmptyBB,
1860 LoopInitBB,
1861 createProfileWeights(EntryCount, getProfileCount(S.getBody())));
1862
1863 // Otherwise, initialize the loop.
1864 EmitBlock(LoopInitBB);
1865
1866 // Save the initial mutations value. This is the value at an
1867 // address that was written into the state object by
1868 // countByEnumeratingWithState:objects:count:.
1869 Address StateMutationsPtrPtr =
1870 Builder.CreateStructGEP(StatePtr, 2, "mutationsptr.ptr");
1871 llvm::Value *StateMutationsPtr
1872 = Builder.CreateLoad(StateMutationsPtrPtr, "mutationsptr");
1873
1874 llvm::Type *UnsignedLongTy = ConvertType(getContext().UnsignedLongTy);
1875 llvm::Value *initialMutations =
1876 Builder.CreateAlignedLoad(UnsignedLongTy, StateMutationsPtr,
1877 getPointerAlign(), "forcoll.initial-mutations");
1878
1879 // Start looping. This is the point we return to whenever we have a
1880 // fresh, non-empty batch of objects.
1881 llvm::BasicBlock *LoopBodyBB = createBasicBlock("forcoll.loopbody");
1882 EmitBlock(LoopBodyBB);
1883
1884 // The current index into the buffer.
1885 llvm::PHINode *index = Builder.CreatePHI(NSUIntegerTy, 3, "forcoll.index");
1886 index->addIncoming(zero, LoopInitBB);
1887
1888 // The current buffer size.
1889 llvm::PHINode *count = Builder.CreatePHI(NSUIntegerTy, 3, "forcoll.count");
1890 count->addIncoming(initialBufferLimit, LoopInitBB);
1891
1893
1894 // Check whether the mutations value has changed from where it was
1895 // at start. StateMutationsPtr should actually be invariant between
1896 // refreshes.
1897 StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr, "mutationsptr");
1898 llvm::Value *currentMutations
1899 = Builder.CreateAlignedLoad(UnsignedLongTy, StateMutationsPtr,
1900 getPointerAlign(), "statemutations");
1901
1902 llvm::BasicBlock *WasMutatedBB = createBasicBlock("forcoll.mutated");
1903 llvm::BasicBlock *WasNotMutatedBB = createBasicBlock("forcoll.notmutated");
1904
1905 Builder.CreateCondBr(Builder.CreateICmpEQ(currentMutations, initialMutations),
1906 WasNotMutatedBB, WasMutatedBB);
1907
1908 // If so, call the enumeration-mutation function.
1909 EmitBlock(WasMutatedBB);
1910 llvm::Type *ObjCIdType = ConvertType(getContext().getObjCIdType());
1911 llvm::Value *V =
1912 Builder.CreateBitCast(Collection, ObjCIdType);
1913 CallArgList Args2;
1914 Args2.add(RValue::get(V), getContext().getObjCIdType());
1915 // FIXME: We shouldn't need to get the function info here, the runtime already
1916 // should have computed it to build the function.
1917 EmitCall(
1919 EnumerationMutationFn, ReturnValueSlot(), Args2);
1920
1921 // Otherwise, or if the mutation function returns, just continue.
1922 EmitBlock(WasNotMutatedBB);
1923
1924 // Initialize the element variable.
1925 RunCleanupsScope elementVariableScope(*this);
1926 bool elementIsVariable;
1927 LValue elementLValue;
1928 QualType elementType;
1929 if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement())) {
1930 // Initialize the variable, in case it's a __block variable or something.
1931 EmitAutoVarInit(variable);
1932
1933 const VarDecl *D = cast<VarDecl>(SD->getSingleDecl());
1934 DeclRefExpr tempDRE(getContext(), const_cast<VarDecl *>(D), false,
1936 elementLValue = EmitLValue(&tempDRE);
1937 elementType = D->getType();
1938 elementIsVariable = true;
1939
1940 if (D->isARCPseudoStrong())
1942 } else {
1943 elementLValue = LValue(); // suppress warning
1944 elementType = cast<Expr>(S.getElement())->getType();
1945 elementIsVariable = false;
1946 }
1947 llvm::Type *convertedElementType = ConvertType(elementType);
1948
1949 // Fetch the buffer out of the enumeration state.
1950 // TODO: this pointer should actually be invariant between
1951 // refreshes, which would help us do certain loop optimizations.
1952 Address StateItemsPtr =
1953 Builder.CreateStructGEP(StatePtr, 1, "stateitems.ptr");
1954 llvm::Value *EnumStateItems =
1955 Builder.CreateLoad(StateItemsPtr, "stateitems");
1956
1957 // Fetch the value at the current index from the buffer.
1958 llvm::Value *CurrentItemPtr = Builder.CreateGEP(
1959 ObjCIdType, EnumStateItems, index, "currentitem.ptr");
1960 llvm::Value *CurrentItem =
1961 Builder.CreateAlignedLoad(ObjCIdType, CurrentItemPtr, getPointerAlign());
1962
1963 if (SanOpts.has(SanitizerKind::ObjCCast)) {
1964 // Before using an item from the collection, check that the implicit cast
1965 // from id to the element type is valid. This is done with instrumentation
1966 // roughly corresponding to:
1967 //
1968 // if (![item isKindOfClass:expectedCls]) { /* emit diagnostic */ }
1969 const ObjCObjectPointerType *ObjPtrTy =
1970 elementType->getAsObjCInterfacePointerType();
1971 const ObjCInterfaceType *InterfaceTy =
1972 ObjPtrTy ? ObjPtrTy->getInterfaceType() : nullptr;
1973 if (InterfaceTy) {
1974 SanitizerScope SanScope(this);
1975 auto &C = CGM.getContext();
1976 assert(InterfaceTy->getDecl() && "No decl for ObjC interface type");
1977 Selector IsKindOfClassSel = GetUnarySelector("isKindOfClass", C);
1978 CallArgList IsKindOfClassArgs;
1979 llvm::Value *Cls =
1980 CGM.getObjCRuntime().GetClass(*this, InterfaceTy->getDecl());
1981 IsKindOfClassArgs.add(RValue::get(Cls), C.getObjCClassType());
1982 llvm::Value *IsClass =
1984 .GenerateMessageSend(*this, ReturnValueSlot(), C.BoolTy,
1985 IsKindOfClassSel, CurrentItem,
1986 IsKindOfClassArgs)
1987 .getScalarVal();
1988 llvm::Constant *StaticData[] = {
1989 EmitCheckSourceLocation(S.getBeginLoc()),
1990 EmitCheckTypeDescriptor(QualType(InterfaceTy, 0))};
1991 EmitCheck({{IsClass, SanitizerKind::ObjCCast}},
1992 SanitizerHandler::InvalidObjCCast,
1993 ArrayRef<llvm::Constant *>(StaticData), CurrentItem);
1994 }
1995 }
1996
1997 // Cast that value to the right type.
1998 CurrentItem = Builder.CreateBitCast(CurrentItem, convertedElementType,
1999 "currentitem");
2000
2001 // Make sure we have an l-value. Yes, this gets evaluated every
2002 // time through the loop.
2003 if (!elementIsVariable) {
2004 elementLValue = EmitLValue(cast<Expr>(S.getElement()));
2005 EmitStoreThroughLValue(RValue::get(CurrentItem), elementLValue);
2006 } else {
2007 EmitStoreThroughLValue(RValue::get(CurrentItem), elementLValue,
2008 /*isInit*/ true);
2009 }
2010
2011 // If we do have an element variable, this assignment is the end of
2012 // its initialization.
2013 if (elementIsVariable)
2014 EmitAutoVarCleanups(variable);
2015
2016 // Perform the loop body, setting up break and continue labels.
2017 BreakContinueStack.push_back(BreakContinue(LoopEnd, AfterBody));
2018 {
2019 RunCleanupsScope Scope(*this);
2020 EmitStmt(S.getBody());
2021 }
2022 BreakContinueStack.pop_back();
2023
2024 // Destroy the element variable now.
2025 elementVariableScope.ForceCleanup();
2026
2027 // Check whether there are more elements.
2028 EmitBlock(AfterBody.getBlock());
2029
2030 llvm::BasicBlock *FetchMoreBB = createBasicBlock("forcoll.refetch");
2031
2032 // First we check in the local buffer.
2033 llvm::Value *indexPlusOne =
2034 Builder.CreateAdd(index, llvm::ConstantInt::get(NSUIntegerTy, 1));
2035
2036 // If we haven't overrun the buffer yet, we can continue.
2037 // Set the branch weights based on the simplifying assumption that this is
2038 // like a while-loop, i.e., ignoring that the false branch fetches more
2039 // elements and then returns to the loop.
2040 Builder.CreateCondBr(
2041 Builder.CreateICmpULT(indexPlusOne, count), LoopBodyBB, FetchMoreBB,
2042 createProfileWeights(getProfileCount(S.getBody()), EntryCount));
2043
2044 index->addIncoming(indexPlusOne, AfterBody.getBlock());
2045 count->addIncoming(count, AfterBody.getBlock());
2046
2047 // Otherwise, we have to fetch more elements.
2048 EmitBlock(FetchMoreBB);
2049
2050 CountRV =
2052 getContext().getNSUIntegerType(),
2053 FastEnumSel, Collection, Args);
2054
2055 // If we got a zero count, we're done.
2056 llvm::Value *refetchCount = CountRV.getScalarVal();
2057
2058 // (note that the message send might split FetchMoreBB)
2059 index->addIncoming(zero, Builder.GetInsertBlock());
2060 count->addIncoming(refetchCount, Builder.GetInsertBlock());
2061
2062 Builder.CreateCondBr(Builder.CreateICmpEQ(refetchCount, zero),
2063 EmptyBB, LoopBodyBB);
2064
2065 // No more elements.
2066 EmitBlock(EmptyBB);
2067
2068 if (!elementIsVariable) {
2069 // If the element was not a declaration, set it to be null.
2070
2071 llvm::Value *null = llvm::Constant::getNullValue(convertedElementType);
2072 elementLValue = EmitLValue(cast<Expr>(S.getElement()));
2073 EmitStoreThroughLValue(RValue::get(null), elementLValue);
2074 }
2075
2076 if (DI)
2077 DI->EmitLexicalBlockEnd(Builder, S.getSourceRange().getEnd());
2078
2079 ForScope.ForceCleanup();
2080 EmitBlock(LoopEnd.getBlock());
2081}
2082
2084 CGM.getObjCRuntime().EmitTryStmt(*this, S);
2085}
2086
2088 CGM.getObjCRuntime().EmitThrowStmt(*this, S);
2089}
2090
2092 const ObjCAtSynchronizedStmt &S) {
2094}
2095
2096namespace {
2097 struct CallObjCRelease final : EHScopeStack::Cleanup {
2098 CallObjCRelease(llvm::Value *object) : object(object) {}
2099 llvm::Value *object;
2100
2101 void Emit(CodeGenFunction &CGF, Flags flags) override {
2102 // Releases at the end of the full-expression are imprecise.
2104 }
2105 };
2106}
2107
2108/// Produce the code for a CK_ARCConsumeObject. Does a primitive
2109/// release at the end of the full-expression.
2111 llvm::Value *object) {
2112 // If we're in a conditional branch, we need to make the cleanup
2113 // conditional.
2114 pushFullExprCleanup<CallObjCRelease>(getARCCleanupKind(), object);
2115 return object;
2116}
2117
2119 llvm::Value *value) {
2120 return EmitARCRetainAutorelease(type, value);
2121}
2122
2123/// Given a number of pointers, inform the optimizer that they're
2124/// being intrinsically used up until this point in the program.
2126 llvm::Function *&fn = CGM.getObjCEntrypoints().clang_arc_use;
2127 if (!fn)
2128 fn = CGM.getIntrinsic(llvm::Intrinsic::objc_clang_arc_use);
2129
2130 // This isn't really a "runtime" function, but as an intrinsic it
2131 // doesn't really matter as long as we align things up.
2132 EmitNounwindRuntimeCall(fn, values);
2133}
2134
2135/// Emit a call to "clang.arc.noop.use", which consumes the result of a call
2136/// that has operand bundle "clang.arc.attachedcall".
2138 llvm::Function *&fn = CGM.getObjCEntrypoints().clang_arc_noop_use;
2139 if (!fn)
2140 fn = CGM.getIntrinsic(llvm::Intrinsic::objc_clang_arc_noop_use);
2141 EmitNounwindRuntimeCall(fn, values);
2142}
2143
2144static void setARCRuntimeFunctionLinkage(CodeGenModule &CGM, llvm::Value *RTF) {
2145 if (auto *F = dyn_cast<llvm::Function>(RTF)) {
2146 // If the target runtime doesn't naturally support ARC, emit weak
2147 // references to the runtime support library. We don't really
2148 // permit this to fail, but we need a particular relocation style.
2149 if (!CGM.getLangOpts().ObjCRuntime.hasNativeARC() &&
2150 !CGM.getTriple().isOSBinFormatCOFF()) {
2151 F->setLinkage(llvm::Function::ExternalWeakLinkage);
2152 }
2153 }
2154}
2155
2157 llvm::FunctionCallee RTF) {
2158 setARCRuntimeFunctionLinkage(CGM, RTF.getCallee());
2159}
2160
2161static llvm::Function *getARCIntrinsic(llvm::Intrinsic::ID IntID,
2162 CodeGenModule &CGM) {
2163 llvm::Function *fn = CGM.getIntrinsic(IntID);
2165 return fn;
2166}
2167
2168/// Perform an operation having the signature
2169/// i8* (i8*)
2170/// where a null input causes a no-op and returns null.
2171static llvm::Value *emitARCValueOperation(
2172 CodeGenFunction &CGF, llvm::Value *value, llvm::Type *returnType,
2173 llvm::Function *&fn, llvm::Intrinsic::ID IntID,
2174 llvm::CallInst::TailCallKind tailKind = llvm::CallInst::TCK_None) {
2175 if (isa<llvm::ConstantPointerNull>(value))
2176 return value;
2177
2178 if (!fn)
2179 fn = getARCIntrinsic(IntID, CGF.CGM);
2180
2181 // Cast the argument to 'id'.
2182 llvm::Type *origType = returnType ? returnType : value->getType();
2183 value = CGF.Builder.CreateBitCast(value, CGF.Int8PtrTy);
2184
2185 // Call the function.
2186 llvm::CallInst *call = CGF.EmitNounwindRuntimeCall(fn, value);
2187 call->setTailCallKind(tailKind);
2188
2189 // Cast the result back to the original type.
2190 return CGF.Builder.CreateBitCast(call, origType);
2191}
2192
2193/// Perform an operation having the following signature:
2194/// i8* (i8**)
2195static llvm::Value *emitARCLoadOperation(CodeGenFunction &CGF, Address addr,
2196 llvm::Function *&fn,
2197 llvm::Intrinsic::ID IntID) {
2198 if (!fn)
2199 fn = getARCIntrinsic(IntID, CGF.CGM);
2200
2201 return CGF.EmitNounwindRuntimeCall(fn, addr.getPointer());
2202}
2203
2204/// Perform an operation having the following signature:
2205/// i8* (i8**, i8*)
2206static llvm::Value *emitARCStoreOperation(CodeGenFunction &CGF, Address addr,
2207 llvm::Value *value,
2208 llvm::Function *&fn,
2209 llvm::Intrinsic::ID IntID,
2210 bool ignored) {
2211 assert(addr.getElementType() == value->getType());
2212
2213 if (!fn)
2214 fn = getARCIntrinsic(IntID, CGF.CGM);
2215
2216 llvm::Type *origType = value->getType();
2217
2218 llvm::Value *args[] = {
2219 CGF.Builder.CreateBitCast(addr.getPointer(), CGF.Int8PtrPtrTy),
2220 CGF.Builder.CreateBitCast(value, CGF.Int8PtrTy)
2221 };
2222 llvm::CallInst *result = CGF.EmitNounwindRuntimeCall(fn, args);
2223
2224 if (ignored) return nullptr;
2225
2226 return CGF.Builder.CreateBitCast(result, origType);
2227}
2228
2229/// Perform an operation having the following signature:
2230/// void (i8**, i8**)
2232 llvm::Function *&fn,
2233 llvm::Intrinsic::ID IntID) {
2234 assert(dst.getType() == src.getType());
2235
2236 if (!fn)
2237 fn = getARCIntrinsic(IntID, CGF.CGM);
2238
2239 llvm::Value *args[] = {
2240 CGF.Builder.CreateBitCast(dst.getPointer(), CGF.Int8PtrPtrTy),
2241 CGF.Builder.CreateBitCast(src.getPointer(), CGF.Int8PtrPtrTy)
2242 };
2243 CGF.EmitNounwindRuntimeCall(fn, args);
2244}
2245
2246/// Perform an operation having the signature
2247/// i8* (i8*)
2248/// where a null input causes a no-op and returns null.
2250 llvm::Value *value,
2251 llvm::Type *returnType,
2252 llvm::FunctionCallee &fn,
2253 StringRef fnName) {
2254 if (isa<llvm::ConstantPointerNull>(value))
2255 return value;
2256
2257 if (!fn) {
2258 llvm::FunctionType *fnType =
2259 llvm::FunctionType::get(CGF.Int8PtrTy, CGF.Int8PtrTy, false);
2260 fn = CGF.CGM.CreateRuntimeFunction(fnType, fnName);
2261
2262 // We have Native ARC, so set nonlazybind attribute for performance
2263 if (llvm::Function *f = dyn_cast<llvm::Function>(fn.getCallee()))
2264 if (fnName == "objc_retain")
2265 f->addFnAttr(llvm::Attribute::NonLazyBind);
2266 }
2267
2268 // Cast the argument to 'id'.
2269 llvm::Type *origType = returnType ? returnType : value->getType();
2270 value = CGF.Builder.CreateBitCast(value, CGF.Int8PtrTy);
2271
2272 // Call the function.
2273 llvm::CallBase *Inst = CGF.EmitCallOrInvoke(fn, value);
2274
2275 // Mark calls to objc_autorelease as tail on the assumption that methods
2276 // overriding autorelease do not touch anything on the stack.
2277 if (fnName == "objc_autorelease")
2278 if (auto *Call = dyn_cast<llvm::CallInst>(Inst))
2279 Call->setTailCall();
2280
2281 // Cast the result back to the original type.
2282 return CGF.Builder.CreateBitCast(Inst, origType);
2283}
2284
2285/// Produce the code to do a retain. Based on the type, calls one of:
2286/// call i8* \@objc_retain(i8* %value)
2287/// call i8* \@objc_retainBlock(i8* %value)
2288llvm::Value *CodeGenFunction::EmitARCRetain(QualType type, llvm::Value *value) {
2289 if (type->isBlockPointerType())
2290 return EmitARCRetainBlock(value, /*mandatory*/ false);
2291 else
2292 return EmitARCRetainNonBlock(value);
2293}
2294
2295/// Retain the given object, with normal retain semantics.
2296/// call i8* \@objc_retain(i8* %value)
2297llvm::Value *CodeGenFunction::EmitARCRetainNonBlock(llvm::Value *value) {
2298 return emitARCValueOperation(*this, value, nullptr,
2300 llvm::Intrinsic::objc_retain);
2301}
2302
2303/// Retain the given block, with _Block_copy semantics.
2304/// call i8* \@objc_retainBlock(i8* %value)
2305///
2306/// \param mandatory - If false, emit the call with metadata
2307/// indicating that it's okay for the optimizer to eliminate this call
2308/// if it can prove that the block never escapes except down the stack.
2309llvm::Value *CodeGenFunction::EmitARCRetainBlock(llvm::Value *value,
2310 bool mandatory) {
2311 llvm::Value *result
2312 = emitARCValueOperation(*this, value, nullptr,
2314 llvm::Intrinsic::objc_retainBlock);
2315
2316 // If the copy isn't mandatory, add !clang.arc.copy_on_escape to
2317 // tell the optimizer that it doesn't need to do this copy if the
2318 // block doesn't escape, where being passed as an argument doesn't
2319 // count as escaping.
2320 if (!mandatory && isa<llvm::Instruction>(result)) {
2321 llvm::CallInst *call
2322 = cast<llvm::CallInst>(result->stripPointerCasts());
2323 assert(call->getCalledOperand() ==
2325
2326 call->setMetadata("clang.arc.copy_on_escape",
2327 llvm::MDNode::get(Builder.getContext(), std::nullopt));
2328 }
2329
2330 return result;
2331}
2332
2334 // Fetch the void(void) inline asm which marks that we're going to
2335 // do something with the autoreleased return value.
2336 llvm::InlineAsm *&marker
2338 if (!marker) {
2339 StringRef assembly
2342
2343 // If we have an empty assembly string, there's nothing to do.
2344 if (assembly.empty()) {
2345
2346 // Otherwise, at -O0, build an inline asm that we're going to call
2347 // in a moment.
2348 } else if (CGF.CGM.getCodeGenOpts().OptimizationLevel == 0) {
2349 llvm::FunctionType *type =
2350 llvm::FunctionType::get(CGF.VoidTy, /*variadic*/false);
2351
2352 marker = llvm::InlineAsm::get(type, assembly, "", /*sideeffects*/ true);
2353
2354 // If we're at -O1 and above, we don't want to litter the code
2355 // with this marker yet, so leave a breadcrumb for the ARC
2356 // optimizer to pick up.
2357 } else {
2358 const char *retainRVMarkerKey = llvm::objcarc::getRVMarkerModuleFlagStr();
2359 if (!CGF.CGM.getModule().getModuleFlag(retainRVMarkerKey)) {
2360 auto *str = llvm::MDString::get(CGF.getLLVMContext(), assembly);
2361 CGF.CGM.getModule().addModuleFlag(llvm::Module::Error,
2362 retainRVMarkerKey, str);
2363 }
2364 }
2365 }
2366
2367 // Call the marker asm if we made one, which we do only at -O0.
2368 if (marker)
2369 CGF.Builder.CreateCall(marker, std::nullopt,
2370 CGF.getBundlesForFunclet(marker));
2371}
2372
2373static llvm::Value *emitOptimizedARCReturnCall(llvm::Value *value,
2374 bool IsRetainRV,
2375 CodeGenFunction &CGF) {
2377
2378 // Add operand bundle "clang.arc.attachedcall" to the call instead of emitting
2379 // retainRV or claimRV calls in the IR. We currently do this only when the
2380 // optimization level isn't -O0 since global-isel, which is currently run at
2381 // -O0, doesn't know about the operand bundle.
2383 llvm::Function *&EP = IsRetainRV
2386 llvm::Intrinsic::ID IID =
2387 IsRetainRV ? llvm::Intrinsic::objc_retainAutoreleasedReturnValue
2388 : llvm::Intrinsic::objc_unsafeClaimAutoreleasedReturnValue;
2389 EP = getARCIntrinsic(IID, CGF.CGM);
2390
2391 llvm::Triple::ArchType Arch = CGF.CGM.getTriple().getArch();
2392
2393 // FIXME: Do this on all targets and at -O0 too. This can be enabled only if
2394 // the target backend knows how to handle the operand bundle.
2395 if (CGF.CGM.getCodeGenOpts().OptimizationLevel > 0 &&
2396 (Arch == llvm::Triple::aarch64 || Arch == llvm::Triple::x86_64)) {
2397 llvm::Value *bundleArgs[] = {EP};
2398 llvm::OperandBundleDef OB("clang.arc.attachedcall", bundleArgs);
2399 auto *oldCall = cast<llvm::CallBase>(value);
2400 llvm::CallBase *newCall = llvm::CallBase::addOperandBundle(
2401 oldCall, llvm::LLVMContext::OB_clang_arc_attachedcall, OB, oldCall);
2402 newCall->copyMetadata(*oldCall);
2403 oldCall->replaceAllUsesWith(newCall);
2404 oldCall->eraseFromParent();
2405 CGF.EmitARCNoopIntrinsicUse(newCall);
2406 return newCall;
2407 }
2408
2409 bool isNoTail =
2411 llvm::CallInst::TailCallKind tailKind =
2412 isNoTail ? llvm::CallInst::TCK_NoTail : llvm::CallInst::TCK_None;
2413 return emitARCValueOperation(CGF, value, nullptr, EP, IID, tailKind);
2414}
2415
2416/// Retain the given object which is the result of a function call.
2417/// call i8* \@objc_retainAutoreleasedReturnValue(i8* %value)
2418///
2419/// Yes, this function name is one character away from a different
2420/// call with completely different semantics.
2421llvm::Value *
2423 return emitOptimizedARCReturnCall(value, true, *this);
2424}
2425
2426/// Claim a possibly-autoreleased return value at +0. This is only
2427/// valid to do in contexts which do not rely on the retain to keep
2428/// the object valid for all of its uses; for example, when
2429/// the value is ignored, or when it is being assigned to an
2430/// __unsafe_unretained variable.
2431///
2432/// call i8* \@objc_unsafeClaimAutoreleasedReturnValue(i8* %value)
2433llvm::Value *
2435 return emitOptimizedARCReturnCall(value, false, *this);
2436}
2437
2438/// Release the given object.
2439/// call void \@objc_release(i8* %value)
2440void CodeGenFunction::EmitARCRelease(llvm::Value *value,
2441 ARCPreciseLifetime_t precise) {
2442 if (isa<llvm::ConstantPointerNull>(value)) return;
2443
2444 llvm::Function *&fn = CGM.getObjCEntrypoints().objc_release;
2445 if (!fn)
2446 fn = getARCIntrinsic(llvm::Intrinsic::objc_release, CGM);
2447
2448 // Cast the argument to 'id'.
2449 value = Builder.CreateBitCast(value, Int8PtrTy);
2450
2451 // Call objc_release.
2452 llvm::CallInst *call = EmitNounwindRuntimeCall(fn, value);
2453
2454 if (precise == ARCImpreciseLifetime) {
2455 call->setMetadata("clang.imprecise_release",
2456 llvm::MDNode::get(Builder.getContext(), std::nullopt));
2457 }
2458}
2459
2460/// Destroy a __strong variable.
2461///
2462/// At -O0, emit a call to store 'null' into the address;
2463/// instrumenting tools prefer this because the address is exposed,
2464/// but it's relatively cumbersome to optimize.
2465///
2466/// At -O1 and above, just load and call objc_release.
2467///
2468/// call void \@objc_storeStrong(i8** %addr, i8* null)
2470 ARCPreciseLifetime_t precise) {
2471 if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
2472 llvm::Value *null = getNullForVariable(addr);
2473 EmitARCStoreStrongCall(addr, null, /*ignored*/ true);
2474 return;
2475 }
2476
2477 llvm::Value *value = Builder.CreateLoad(addr);
2478 EmitARCRelease(value, precise);
2479}
2480
2481/// Store into a strong object. Always calls this:
2482/// call void \@objc_storeStrong(i8** %addr, i8* %value)
2484 llvm::Value *value,
2485 bool ignored) {
2486 assert(addr.getElementType() == value->getType());
2487
2488 llvm::Function *&fn = CGM.getObjCEntrypoints().objc_storeStrong;
2489 if (!fn)
2490 fn = getARCIntrinsic(llvm::Intrinsic::objc_storeStrong, CGM);
2491
2492 llvm::Value *args[] = {
2493 Builder.CreateBitCast(addr.getPointer(), Int8PtrPtrTy),
2494 Builder.CreateBitCast(value, Int8PtrTy)
2495 };
2496 EmitNounwindRuntimeCall(fn, args);
2497
2498 if (ignored) return nullptr;
2499 return value;
2500}
2501
2502/// Store into a strong object. Sometimes calls this:
2503/// call void \@objc_storeStrong(i8** %addr, i8* %value)
2504/// Other times, breaks it down into components.
2506 llvm::Value *newValue,
2507 bool ignored) {
2508 QualType type = dst.getType();
2509 bool isBlock = type->isBlockPointerType();
2510
2511 // Use a store barrier at -O0 unless this is a block type or the
2512 // lvalue is inadequately aligned.
2513 if (shouldUseFusedARCCalls() &&
2514 !isBlock &&
2515 (dst.getAlignment().isZero() ||
2517 return EmitARCStoreStrongCall(dst.getAddress(*this), newValue, ignored);
2518 }
2519
2520 // Otherwise, split it out.
2521
2522 // Retain the new value.
2523 newValue = EmitARCRetain(type, newValue);
2524
2525 // Read the old value.
2526 llvm::Value *oldValue = EmitLoadOfScalar(dst, SourceLocation());
2527
2528 // Store. We do this before the release so that any deallocs won't
2529 // see the old value.
2530 EmitStoreOfScalar(newValue, dst);
2531
2532 // Finally, release the old value.
2533 EmitARCRelease(oldValue, dst.isARCPreciseLifetime());
2534
2535 return newValue;
2536}
2537
2538/// Autorelease the given object.
2539/// call i8* \@objc_autorelease(i8* %value)
2540llvm::Value *CodeGenFunction::EmitARCAutorelease(llvm::Value *value) {
2541 return emitARCValueOperation(*this, value, nullptr,
2543 llvm::Intrinsic::objc_autorelease);
2544}
2545
2546/// Autorelease the given object.
2547/// call i8* \@objc_autoreleaseReturnValue(i8* %value)
2548llvm::Value *
2550 return emitARCValueOperation(*this, value, nullptr,
2552 llvm::Intrinsic::objc_autoreleaseReturnValue,
2553 llvm::CallInst::TCK_Tail);
2554}
2555
2556/// Do a fused retain/autorelease of the given object.
2557/// call i8* \@objc_retainAutoreleaseReturnValue(i8* %value)
2558llvm::Value *
2560 return emitARCValueOperation(*this, value, nullptr,
2562 llvm::Intrinsic::objc_retainAutoreleaseReturnValue,
2563 llvm::CallInst::TCK_Tail);
2564}
2565
2566/// Do a fused retain/autorelease of the given object.
2567/// call i8* \@objc_retainAutorelease(i8* %value)
2568/// or
2569/// %retain = call i8* \@objc_retainBlock(i8* %value)
2570/// call i8* \@objc_autorelease(i8* %retain)
2572 llvm::Value *value) {
2573 if (!type->isBlockPointerType())
2575
2576 if (isa<llvm::ConstantPointerNull>(value)) return value;
2577
2578 llvm::Type *origType = value->getType();
2579 value = Builder.CreateBitCast(value, Int8PtrTy);
2580 value = EmitARCRetainBlock(value, /*mandatory*/ true);
2581 value = EmitARCAutorelease(value);
2582 return Builder.CreateBitCast(value, origType);
2583}
2584
2585/// Do a fused retain/autorelease of the given object.
2586/// call i8* \@objc_retainAutorelease(i8* %value)
2587llvm::Value *
2589 return emitARCValueOperation(*this, value, nullptr,
2591 llvm::Intrinsic::objc_retainAutorelease);
2592}
2593
2594/// i8* \@objc_loadWeak(i8** %addr)
2595/// Essentially objc_autorelease(objc_loadWeakRetained(addr)).
2596llvm::Value *CodeGenFunction::EmitARCLoadWeak(Address addr) {
2597 return emitARCLoadOperation(*this, addr,
2599 llvm::Intrinsic::objc_loadWeak);
2600}
2601
2602/// i8* \@objc_loadWeakRetained(i8** %addr)
2604 return emitARCLoadOperation(*this, addr,
2606 llvm::Intrinsic::objc_loadWeakRetained);
2607}
2608
2609/// i8* \@objc_storeWeak(i8** %addr, i8* %value)
2610/// Returns %value.
2612 llvm::Value *value,
2613 bool ignored) {
2614 return emitARCStoreOperation(*this, addr, value,
2616 llvm::Intrinsic::objc_storeWeak, ignored);
2617}
2618
2619/// i8* \@objc_initWeak(i8** %addr, i8* %value)
2620/// Returns %value. %addr is known to not have a current weak entry.
2621/// Essentially equivalent to:
2622/// *addr = nil; objc_storeWeak(addr, value);
2623void CodeGenFunction::EmitARCInitWeak(Address addr, llvm::Value *value) {
2624 // If we're initializing to null, just write null to memory; no need
2625 // to get the runtime involved. But don't do this if optimization
2626 // is enabled, because accounting for this would make the optimizer
2627 // much more complicated.
2628 if (isa<llvm::ConstantPointerNull>(value) &&
2629 CGM.getCodeGenOpts().OptimizationLevel == 0) {
2630 Builder.CreateStore(value, addr);
2631 return;
2632 }
2633
2634 emitARCStoreOperation(*this, addr, value,
2636 llvm::Intrinsic::objc_initWeak, /*ignored*/ true);
2637}
2638
2639/// void \@objc_destroyWeak(i8** %addr)
2640/// Essentially objc_storeWeak(addr, nil).
2642 llvm::Function *&fn = CGM.getObjCEntrypoints().objc_destroyWeak;
2643 if (!fn)
2644 fn = getARCIntrinsic(llvm::Intrinsic::objc_destroyWeak, CGM);
2645
2647}
2648
2649/// void \@objc_moveWeak(i8** %dest, i8** %src)
2650/// Disregards the current value in %dest. Leaves %src pointing to nothing.
2651/// Essentially (objc_copyWeak(dest, src), objc_destroyWeak(src)).
2653 emitARCCopyOperation(*this, dst, src,
2655 llvm::Intrinsic::objc_moveWeak);
2656}
2657
2658/// void \@objc_copyWeak(i8** %dest, i8** %src)
2659/// Disregards the current value in %dest. Essentially
2660/// objc_release(objc_initWeak(dest, objc_readWeakRetained(src)))
2662 emitARCCopyOperation(*this, dst, src,
2664 llvm::Intrinsic::objc_copyWeak);
2665}
2666
2668 Address SrcAddr) {
2669 llvm::Value *Object = EmitARCLoadWeakRetained(SrcAddr);
2670 Object = EmitObjCConsumeObject(Ty, Object);
2671 EmitARCStoreWeak(DstAddr, Object, false);
2672}
2673
2675 Address SrcAddr) {
2676 llvm::Value *Object = EmitARCLoadWeakRetained(SrcAddr);
2677 Object = EmitObjCConsumeObject(Ty, Object);
2678 EmitARCStoreWeak(DstAddr, Object, false);
2679 EmitARCDestroyWeak(SrcAddr);
2680}
2681
2682/// Produce the code to do a objc_autoreleasepool_push.
2683/// call i8* \@objc_autoreleasePoolPush(void)
2685 llvm::Function *&fn = CGM.getObjCEntrypoints().objc_autoreleasePoolPush;
2686 if (!fn)
2687 fn = getARCIntrinsic(llvm::Intrinsic::objc_autoreleasePoolPush, CGM);
2688
2689 return EmitNounwindRuntimeCall(fn);
2690}
2691
2692/// Produce the code to do a primitive release.
2693/// call void \@objc_autoreleasePoolPop(i8* %ptr)
2694void CodeGenFunction::EmitObjCAutoreleasePoolPop(llvm::Value *value) {
2695 assert(value->getType() == Int8PtrTy);
2696
2697 if (getInvokeDest()) {
2698 // Call the runtime method not the intrinsic if we are handling exceptions
2699 llvm::FunctionCallee &fn =
2701 if (!fn) {
2702 llvm::FunctionType *fnType =
2703 llvm::FunctionType::get(Builder.getVoidTy(), Int8PtrTy, false);
2704 fn = CGM.CreateRuntimeFunction(fnType, "objc_autoreleasePoolPop");
2706 }
2707
2708 // objc_autoreleasePoolPop can throw.
2709 EmitRuntimeCallOrInvoke(fn, value);
2710 } else {
2711 llvm::FunctionCallee &fn = CGM.getObjCEntrypoints().objc_autoreleasePoolPop;
2712 if (!fn)
2713 fn = getARCIntrinsic(llvm::Intrinsic::objc_autoreleasePoolPop, CGM);
2714
2715 EmitRuntimeCall(fn, value);
2716 }
2717}
2718
2719/// Produce the code to do an MRR version objc_autoreleasepool_push.
2720/// Which is: [[NSAutoreleasePool alloc] init];
2721/// Where alloc is declared as: + (id) alloc; in NSAutoreleasePool class.
2722/// init is declared as: - (id) init; in its NSObject super class.
2723///
2725 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
2726 llvm::Value *Receiver = Runtime.EmitNSAutoreleasePoolClassRef(*this);
2727 // [NSAutoreleasePool alloc]
2728 IdentifierInfo *II = &CGM.getContext().Idents.get("alloc");
2729 Selector AllocSel = getContext().Selectors.getSelector(0, &II);
2730 CallArgList Args;
2731 RValue AllocRV =
2732 Runtime.GenerateMessageSend(*this, ReturnValueSlot(),
2733 getContext().getObjCIdType(),
2734 AllocSel, Receiver, Args);
2735
2736 // [Receiver init]
2737 Receiver = AllocRV.getScalarVal();
2738 II = &CGM.getContext().Idents.get("init");
2739 Selector InitSel = getContext().Selectors.getSelector(0, &II);
2740 RValue InitRV =
2741 Runtime.GenerateMessageSend(*this, ReturnValueSlot(),
2742 getContext().getObjCIdType(),
2743 InitSel, Receiver, Args);
2744 return InitRV.getScalarVal();
2745}
2746
2747/// Allocate the given objc object.
2748/// call i8* \@objc_alloc(i8* %value)
2749llvm::Value *CodeGenFunction::EmitObjCAlloc(llvm::Value *value,
2750 llvm::Type *resultType) {
2751 return emitObjCValueOperation(*this, value, resultType,
2753 "objc_alloc");
2754}
2755
2756/// Allocate the given objc object.
2757/// call i8* \@objc_allocWithZone(i8* %value)
2758llvm::Value *CodeGenFunction::EmitObjCAllocWithZone(llvm::Value *value,
2759 llvm::Type *resultType) {
2760 return emitObjCValueOperation(*this, value, resultType,
2762 "objc_allocWithZone");
2763}
2764
2765llvm::Value *CodeGenFunction::EmitObjCAllocInit(llvm::Value *value,
2766 llvm::Type *resultType) {
2767 return emitObjCValueOperation(*this, value, resultType,
2769 "objc_alloc_init");
2770}
2771
2772/// Produce the code to do a primitive release.
2773/// [tmp drain];
2775 IdentifierInfo *II = &CGM.getContext().Idents.get("drain");
2776 Selector DrainSel = getContext().Selectors.getSelector(0, &II);
2777 CallArgList Args;
2779 getContext().VoidTy, DrainSel, Arg, Args);
2780}
2781
2783 Address addr,
2784 QualType type) {
2786}
2787
2789 Address addr,
2790 QualType type) {
2792}
2793
2795 Address addr,
2796 QualType type) {
2797 CGF.EmitARCDestroyWeak(addr);
2798}
2799
2801 QualType type) {
2802 llvm::Value *value = CGF.Builder.CreateLoad(addr);
2803 CGF.EmitARCIntrinsicUse(value);
2804}
2805
2806/// Autorelease the given object.
2807/// call i8* \@objc_autorelease(i8* %value)
2808llvm::Value *CodeGenFunction::EmitObjCAutorelease(llvm::Value *value,
2809 llvm::Type *returnType) {
2811 *this, value, returnType,
2813 "objc_autorelease");
2814}
2815
2816/// Retain the given object, with normal retain semantics.
2817/// call i8* \@objc_retain(i8* %value)
2818llvm::Value *CodeGenFunction::EmitObjCRetainNonBlock(llvm::Value *value,
2819 llvm::Type *returnType) {
2821 *this, value, returnType,
2823}
2824
2825/// Release the given object.
2826/// call void \@objc_release(i8* %value)
2827void CodeGenFunction::EmitObjCRelease(llvm::Value *value,
2828 ARCPreciseLifetime_t precise) {
2829 if (isa<llvm::ConstantPointerNull>(value)) return;
2830
2831 llvm::FunctionCallee &fn =
2833 if (!fn) {
2834 llvm::FunctionType *fnType =
2835 llvm::FunctionType::get(Builder.getVoidTy(), Int8PtrTy, false);
2836 fn = CGM.CreateRuntimeFunction(fnType, "objc_release");
2838 // We have Native ARC, so set nonlazybind attribute for performance
2839 if (llvm::Function *f = dyn_cast<llvm::Function>(fn.getCallee()))
2840 f->addFnAttr(llvm::Attribute::NonLazyBind);
2841 }
2842
2843 // Cast the argument to 'id'.
2844 value = Builder.CreateBitCast(value, Int8PtrTy);
2845
2846 // Call objc_release.
2847 llvm::CallBase *call = EmitCallOrInvoke(fn, value);
2848
2849 if (precise == ARCImpreciseLifetime) {
2850 call->setMetadata("clang.imprecise_release",
2851 llvm::MDNode::get(Builder.getContext(), std::nullopt));
2852 }
2853}
2854
2855namespace {
2856 struct CallObjCAutoreleasePoolObject final : EHScopeStack::Cleanup {
2857 llvm::Value *Token;
2858
2859 CallObjCAutoreleasePoolObject(llvm::Value *token) : Token(token) {}
2860
2861 void Emit(CodeGenFunction &CGF, Flags flags) override {
2863 }
2864 };
2865 struct CallObjCMRRAutoreleasePoolObject final : EHScopeStack::Cleanup {
2866 llvm::Value *Token;
2867
2868 CallObjCMRRAutoreleasePoolObject(llvm::Value *token) : Token(token) {}
2869
2870 void Emit(CodeGenFunction &CGF, Flags flags) override {
2872 }
2873 };
2874}
2875
2877 if (CGM.getLangOpts().ObjCAutoRefCount)
2878 EHStack.pushCleanup<CallObjCAutoreleasePoolObject>(NormalCleanup, Ptr);
2879 else
2880 EHStack.pushCleanup<CallObjCMRRAutoreleasePoolObject>(NormalCleanup, Ptr);
2881}
2882
2884 switch (lifetime) {
2889 return true;
2890
2892 return false;
2893 }
2894
2895 llvm_unreachable("impossible lifetime!");
2896}
2897
2899 LValue lvalue,
2900 QualType type) {
2901 llvm::Value *result;
2902 bool shouldRetain = shouldRetainObjCLifetime(type.getObjCLifetime());
2903 if (shouldRetain) {
2904 result = CGF.EmitLoadOfLValue(lvalue, SourceLocation()).getScalarVal();
2905 } else {
2906 assert(type.getObjCLifetime() == Qualifiers::OCL_Weak);
2907 result = CGF.EmitARCLoadWeakRetained(lvalue.getAddress(CGF));
2908 }
2909 return TryEmitResult(result, !shouldRetain);
2910}
2911
2913 const Expr *e) {
2914 e = e->IgnoreParens();
2915 QualType type = e->getType();
2916
2917 // If we're loading retained from a __strong xvalue, we can avoid
2918 // an extra retain/release pair by zeroing out the source of this
2919 // "move" operation.
2920 if (e->isXValue() &&
2921 !type.isConstQualified() &&
2922 type.getObjCLifetime() == Qualifiers::OCL_Strong) {
2923 // Emit the lvalue.
2924 LValue lv = CGF.EmitLValue(e);
2925
2926 // Load the object pointer.
2927 llvm::Value *result = CGF.EmitLoadOfLValue(lv,
2929
2930 // Set the source pointer to NULL.
2932
2933 return TryEmitResult(result, true);
2934 }
2935
2936 // As a very special optimization, in ARC++, if the l-value is the
2937 // result of a non-volatile assignment, do a simple retain of the
2938 // result of the call to objc_storeWeak instead of reloading.
2939 if (CGF.getLangOpts().CPlusPlus &&
2940 !type.isVolatileQualified() &&
2941 type.getObjCLifetime() == Qualifiers::OCL_Weak &&
2942 isa<BinaryOperator>(e) &&
2943 cast<BinaryOperator>(e)->getOpcode() == BO_Assign)
2944 return TryEmitResult(CGF.EmitScalarExpr(e), false);
2945
2946 // Try to emit code for scalar constant instead of emitting LValue and
2947 // loading it because we are not guaranteed to have an l-value. One of such
2948 // cases is DeclRefExpr referencing non-odr-used constant-evaluated variable.
2949 if (const auto *decl_expr = dyn_cast<DeclRefExpr>(e)) {
2950 auto *DRE = const_cast<DeclRefExpr *>(decl_expr);
2951 if (CodeGenFunction::ConstantEmission constant = CGF.tryEmitAsConstant(DRE))
2952 return TryEmitResult(CGF.emitScalarConstant(constant, DRE),
2953 !shouldRetainObjCLifetime(type.getObjCLifetime()));
2954 }
2955
2956 return tryEmitARCRetainLoadOfScalar(CGF, CGF.EmitLValue(e), type);
2957}
2958
2959typedef llvm::function_ref<llvm::Value *(CodeGenFunction &CGF,
2960 llvm::Value *value)>
2962
2963/// Insert code immediately after a call.
2964
2965// FIXME: We should find a way to emit the runtime call immediately
2966// after the call is emitted to eliminate the need for this function.
2968 llvm::Value *value,
2969 ValueTransform doAfterCall,
2970 ValueTransform doFallback) {
2971 CGBuilderTy::InsertPoint ip = CGF.Builder.saveIP();
2972 auto *callBase = dyn_cast<llvm::CallBase>(value);
2973
2974 if (callBase && llvm::objcarc::hasAttachedCallOpBundle(callBase)) {
2975 // Fall back if the call base has operand bundle "clang.arc.attachedcall".
2976 value = doFallback(CGF, value);
2977 } else if (llvm::CallInst *call = dyn_cast<llvm::CallInst>(value)) {
2978 // Place the retain immediately following the call.
2979 CGF.Builder.SetInsertPoint(call->getParent(),
2980 ++llvm::BasicBlock::iterator(call));
2981 value = doAfterCall(CGF, value);
2982 } else if (llvm::InvokeInst *invoke = dyn_cast<llvm::InvokeInst>(value)) {
2983 // Place the retain at the beginning of the normal destination block.
2984 llvm::BasicBlock *BB = invoke->getNormalDest();
2985 CGF.Builder.SetInsertPoint(BB, BB->begin());
2986 value = doAfterCall(CGF, value);
2987
2988 // Bitcasts can arise because of related-result returns. Rewrite
2989 // the operand.
2990 } else if (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(value)) {
2991 // Change the insert point to avoid emitting the fall-back call after the
2992 // bitcast.
2993 CGF.Builder.SetInsertPoint(bitcast->getParent(), bitcast->getIterator());
2994 llvm::Value *operand = bitcast->getOperand(0);
2995 operand = emitARCOperationAfterCall(CGF, operand, doAfterCall, doFallback);
2996 bitcast->setOperand(0, operand);
2997 value = bitcast;
2998 } else {
2999 auto *phi = dyn_cast<llvm::PHINode>(value);
3000 if (phi && phi->getNumIncomingValues() == 2 &&
3001 isa<llvm::ConstantPointerNull>(phi->getIncomingValue(1)) &&
3002 isa<llvm::CallBase>(phi->getIncomingValue(0))) {
3003 // Handle phi instructions that are generated when it's necessary to check
3004 // whether the receiver of a message is null.
3005 llvm::Value *inVal = phi->getIncomingValue(0);
3006 inVal = emitARCOperationAfterCall(CGF, inVal, doAfterCall, doFallback);
3007 phi->setIncomingValue(0, inVal);
3008 value = phi;
3009 } else {
3010 // Generic fall-back case.
3011 // Retain using the non-block variant: we never need to do a copy
3012 // of a block that's been returned to us.
3013 value = doFallback(CGF, value);
3014 }
3015 }
3016
3017 CGF.Builder.restoreIP(ip);
3018 return value;
3019}
3020
3021/// Given that the given expression is some sort of call (which does
3022/// not return retained), emit a retain following it.
3024 const Expr *e) {
3025 llvm::Value *value = CGF.EmitScalarExpr(e);
3026 return emitARCOperationAfterCall(CGF, value,
3027 [](CodeGenFunction &CGF, llvm::Value *value) {
3028 return CGF.EmitARCRetainAutoreleasedReturnValue(value);
3029 },
3030 [](CodeGenFunction &CGF, llvm::Value *value) {
3031 return CGF.EmitARCRetainNonBlock(value);
3032 });
3033}
3034
3035/// Given that the given expression is some sort of call (which does
3036/// not return retained), perform an unsafeClaim following it.
3038 const Expr *e) {
3039 llvm::Value *value = CGF.EmitScalarExpr(e);
3040 return emitARCOperationAfterCall(CGF, value,
3041 [](CodeGenFunction &CGF, llvm::Value *value) {
3043 },
3044 [](CodeGenFunction &CGF, llvm::Value *value) {
3045 return value;
3046 });
3047}
3048
3050 bool allowUnsafeClaim) {
3051 if (allowUnsafeClaim &&
3053 return emitARCUnsafeClaimCallResult(*this, E);
3054 } else {
3055 llvm::Value *value = emitARCRetainCallResult(*this, E);
3056 return EmitObjCConsumeObject(E->getType(), value);
3057 }
3058}
3059
3060/// Determine whether it might be important to emit a separate
3061/// objc_retain_block on the result of the given expression, or
3062/// whether it's okay to just emit it in a +1 context.
3064 assert(e->getType()->isBlockPointerType());
3065 e = e->IgnoreParens();
3066
3067 // For future goodness, emit block expressions directly in +1
3068 // contexts if we can.
3069 if (isa<BlockExpr>(e))
3070 return false;
3071
3072 if (const CastExpr *cast = dyn_cast<CastExpr>(e)) {
3073 switch (cast->getCastKind()) {
3074 // Emitting these operations in +1 contexts is goodness.
3075 case CK_LValueToRValue:
3076 case CK_ARCReclaimReturnedObject:
3077 case CK_ARCConsumeObject:
3078 case CK_ARCProduceObject:
3079 return false;
3080
3081 // These operations preserve a block type.
3082 case CK_NoOp:
3083 case CK_BitCast:
3084 return shouldEmitSeparateBlockRetain(cast->getSubExpr());
3085
3086 // These operations are known to be bad (or haven't been considered).
3087 case CK_AnyPointerToBlockPointerCast:
3088 default:
3089 return true;
3090 }
3091 }
3092
3093 return true;
3094}
3095
3096namespace {
3097/// A CRTP base class for emitting expressions of retainable object
3098/// pointer type in ARC.
3099template <typename Impl, typename Result> class ARCExprEmitter {
3100protected:
3101 CodeGenFunction &CGF;
3102 Impl &asImpl() { return *static_cast<Impl*>(this); }
3103
3104 ARCExprEmitter(CodeGenFunction &CGF) : CGF(CGF) {}
3105
3106public:
3107 Result visit(const Expr *e);
3108 Result visitCastExpr(const CastExpr *e);
3109 Result visitPseudoObjectExpr(const PseudoObjectExpr *e);
3110 Result visitBlockExpr(const BlockExpr *e);
3111 Result visitBinaryOperator(const BinaryOperator *e);
3112 Result visitBinAssign(const BinaryOperator *e);
3113 Result visitBinAssignUnsafeUnretained(const BinaryOperator *e);
3114 Result visitBinAssignAutoreleasing(const BinaryOperator *e);
3115 Result visitBinAssignWeak(const BinaryOperator *e);
3116 Result visitBinAssignStrong(const BinaryOperator *e);
3117
3118 // Minimal implementation:
3119 // Result visitLValueToRValue(const Expr *e)
3120 // Result visitConsumeObject(const Expr *e)
3121 // Result visitExtendBlockObject(const Expr *e)
3122 // Result visitReclaimReturnedObject(const Expr *e)
3123 // Result visitCall(const Expr *e)
3124 // Result visitExpr(const Expr *e)
3125 //
3126 // Result emitBitCast(Result result, llvm::Type *resultType)
3127 // llvm::Value *getValueOfResult(Result result)
3128};
3129}
3130
3131/// Try to emit a PseudoObjectExpr under special ARC rules.
3132///
3133/// This massively duplicates emitPseudoObjectRValue.
3134template <typename Impl, typename Result>
3135Result
3136ARCExprEmitter<Impl,Result>::visitPseudoObjectExpr(const PseudoObjectExpr *E) {
3138
3139 // Find the result expression.
3140 const Expr *resultExpr = E->getResultExpr();
3141 assert(resultExpr);
3142 Result result;
3143
3145 i = E->semantics_begin(), e = E->semantics_end(); i != e; ++i) {
3146 const Expr *semantic = *i;
3147
3148 // If this semantic expression is an opaque value, bind it
3149 // to the result of its source expression.
3150 if (const OpaqueValueExpr *ov = dyn_cast<OpaqueValueExpr>(semantic)) {
3151 typedef CodeGenFunction::OpaqueValueMappingData OVMA;
3152 OVMA opaqueData;
3153
3154 // If this semantic is the result of the pseudo-object
3155 // expression, try to evaluate the source as +1.
3156 if (ov == resultExpr) {
3157 assert(!OVMA::shouldBindAsLValue(ov));
3158 result = asImpl().visit(ov->getSourceExpr());
3159 opaqueData = OVMA::bind(CGF, ov,
3160 RValue::get(asImpl().getValueOfResult(result)));
3161
3162 // Otherwise, just bind it.
3163 } else {
3164 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr());
3165 }
3166 opaques.push_back(opaqueData);
3167
3168 // Otherwise, if the expression is the result, evaluate it
3169 // and remember the result.
3170 } else if (semantic == resultExpr) {
3171 result = asImpl().visit(semantic);
3172
3173 // Otherwise, evaluate the expression in an ignored context.
3174 } else {
3175 CGF.EmitIgnoredExpr(semantic);
3176 }
3177 }
3178
3179 // Unbind all the opaques now.
3180 for (unsigned i = 0, e = opaques.size(); i != e; ++i)
3181 opaques[i].unbind(CGF);
3182
3183 return result;
3184}
3185
3186template <typename Impl, typename Result>
3187Result ARCExprEmitter<Impl, Result>::visitBlockExpr(const BlockExpr *e) {
3188 // The default implementation just forwards the expression to visitExpr.
3189 return asImpl().visitExpr(e);
3190}
3191
3192template <typename Impl, typename Result>
3193Result ARCExprEmitter<Impl,Result>::visitCastExpr(const CastExpr *e) {
3194 switch (e->getCastKind()) {
3195
3196 // No-op casts don't change the type, so we just ignore them.
3197 case CK_NoOp:
3198 return asImpl().visit(e->getSubExpr());
3199
3200 // These casts can change the type.
3201 case CK_CPointerToObjCPointerCast:
3202 case CK_BlockPointerToObjCPointerCast:
3203 case CK_AnyPointerToBlockPointerCast:
3204 case CK_BitCast: {
3205 llvm::Type *resultType = CGF.ConvertType(e->getType());
3206 assert(e->getSubExpr()->getType()->hasPointerRepresentation());
3207 Result result = asImpl().visit(e->getSubExpr());
3208 return asImpl().emitBitCast(result, resultType);
3209 }
3210
3211 // Handle some casts specially.
3212 case CK_LValueToRValue:
3213 return asImpl().visitLValueToRValue(e->getSubExpr());
3214 case CK_ARCConsumeObject:
3215 return asImpl().visitConsumeObject(e->getSubExpr());
3216 case CK_ARCExtendBlockObject:
3217 return asImpl().visitExtendBlockObject(e->getSubExpr());
3218 case CK_ARCReclaimReturnedObject:
3219 return asImpl().visitReclaimReturnedObject(e->getSubExpr());
3220
3221 // Otherwise, use the default logic.
3222 default:
3223 return asImpl().visitExpr(e);
3224 }
3225}
3226
3227template <typename Impl, typename Result>
3228Result
3229ARCExprEmitter<Impl,Result>::visitBinaryOperator(const BinaryOperator *e) {
3230 switch (e->getOpcode()) {
3231 case BO_Comma:
3232 CGF.EmitIgnoredExpr(e->getLHS());
3233 CGF.EnsureInsertPoint();
3234 return asImpl().visit(e->getRHS());
3235
3236 case BO_Assign:
3237 return asImpl().visitBinAssign(e);
3238
3239 default:
3240 return asImpl().visitExpr(e);
3241 }
3242}
3243
3244template <typename Impl, typename Result>
3245Result ARCExprEmitter<Impl,Result>::visitBinAssign(const BinaryOperator *e) {
3246 switch (e->getLHS()->getType().getObjCLifetime()) {
3248 return asImpl().visitBinAssignUnsafeUnretained(e);
3249
3251 return asImpl().visitBinAssignWeak(e);
3252
3254 return asImpl().visitBinAssignAutoreleasing(e);
3255
3257 return asImpl().visitBinAssignStrong(e);
3258
3260 return asImpl().visitExpr(e);
3261 }
3262 llvm_unreachable("bad ObjC ownership qualifier");
3263}
3264
3265/// The default rule for __unsafe_unretained emits the RHS recursively,
3266/// stores into the unsafe variable, and propagates the result outward.
3267template <typename Impl, typename Result>
3268Result ARCExprEmitter<Impl,Result>::
3269 visitBinAssignUnsafeUnretained(const BinaryOperator *e) {
3270 // Recursively emit the RHS.
3271 // For __block safety, do this before emitting the LHS.
3272 Result result = asImpl().visit(e->getRHS());
3273
3274 // Perform the store.
3275 LValue lvalue =
3276 CGF.EmitCheckedLValue(e->getLHS(), CodeGenFunction::TCK_Store);
3277 CGF.EmitStoreThroughLValue(RValue::get(asImpl().getValueOfResult(result)),
3278 lvalue);
3279
3280 return result;
3281}
3282
3283template <typename Impl, typename Result>
3284Result
3285ARCExprEmitter<Impl,Result>::visitBinAssignAutoreleasing(const BinaryOperator *e) {
3286 return asImpl().visitExpr(e);
3287}
3288
3289template <typename Impl, typename Result>
3290Result
3291ARCExprEmitter<Impl,Result>::visitBinAssignWeak(const BinaryOperator *e) {
3292 return asImpl().visitExpr(e);
3293}
3294
3295template <typename Impl, typename Result>
3296Result
3297ARCExprEmitter<Impl,Result>::visitBinAssignStrong(const BinaryOperator *e) {
3298 return asImpl().visitExpr(e);
3299}
3300
3301/// The general expression-emission logic.
3302template <typename Impl, typename Result>
3303Result ARCExprEmitter<Impl,Result>::visit(const Expr *e) {
3304 // We should *never* see a nested full-expression here, because if
3305 // we fail to emit at +1, our caller must not retain after we close
3306 // out the full-expression. This isn't as important in the unsafe
3307 // emitter.
3308 assert(!isa<ExprWithCleanups>(e));
3309
3310 // Look through parens, __extension__, generic selection, etc.
3311 e = e->IgnoreParens();
3312
3313 // Handle certain kinds of casts.
3314 if (const CastExpr *ce = dyn_cast<CastExpr>(e)) {
3315 return asImpl().visitCastExpr(ce);
3316
3317 // Handle the comma operator.
3318 } else if (auto op = dyn_cast<BinaryOperator>(e)) {
3319 return asImpl().visitBinaryOperator(op);
3320
3321 // TODO: handle conditional operators here
3322
3323 // For calls and message sends, use the retained-call logic.
3324 // Delegate inits are a special case in that they're the only
3325 // returns-retained expression that *isn't* surrounded by
3326 // a consume.
3327 } else if (isa<CallExpr>(e) ||
3328 (isa<ObjCMessageExpr>(e) &&
3329 !cast<ObjCMessageExpr>(e)->isDelegateInitCall())) {
3330 return asImpl().visitCall(e);
3331
3332 // Look through pseudo-object expressions.
3333 } else if (const PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
3334 return asImpl().visitPseudoObjectExpr(pseudo);
3335 } else if (auto *be = dyn_cast<BlockExpr>(e))
3336 return asImpl().visitBlockExpr(be);
3337
3338 return asImpl().visitExpr(e);
3339}
3340
3341namespace {
3342
3343/// An emitter for +1 results.
3344struct ARCRetainExprEmitter :
3345 public ARCExprEmitter<ARCRetainExprEmitter, TryEmitResult> {
3346
3347 ARCRetainExprEmitter(CodeGenFunction &CGF) : ARCExprEmitter(CGF) {}
3348
3349 llvm::Value *getValueOfResult(TryEmitResult result) {
3350 return result.getPointer();
3351 }
3352
3353 TryEmitResult emitBitCast(TryEmitResult result, llvm::Type *resultType) {
3354 llvm::Value *value = result.getPointer();
3355 value = CGF.Builder.CreateBitCast(value, resultType);
3356 result.setPointer(value);
3357 return result;
3358 }
3359
3360 TryEmitResult visitLValueToRValue(const Expr *e) {
3361 return tryEmitARCRetainLoadOfScalar(CGF, e);
3362 }
3363
3364 /// For consumptions, just emit the subexpression and thus elide
3365 /// the retain/release pair.
3366 TryEmitResult visitConsumeObject(const Expr *e) {
3367 llvm::Value *result = CGF.EmitScalarExpr(e);
3368 return TryEmitResult(result, true);
3369 }
3370
3371 TryEmitResult visitBlockExpr(const BlockExpr *e) {
3372 TryEmitResult result = visitExpr(e);
3373 // Avoid the block-retain if this is a block literal that doesn't need to be
3374 // copied to the heap.
3375 if (CGF.CGM.getCodeGenOpts().ObjCAvoidHeapifyLocalBlocks &&
3377 result.setInt(true);
3378 return result;
3379 }
3380
3381 /// Block extends are net +0. Naively, we could just recurse on
3382 /// the subexpression, but actually we need to ensure that the
3383 /// value is copied as a block, so there's a little filter here.
3384 TryEmitResult visitExtendBlockObject(const Expr *e) {
3385 llvm::Value *result; // will be a +0 value
3386
3387 // If we can't safely assume the sub-expression will produce a
3388 // block-copied value, emit the sub-expression at +0.
3390 result = CGF.EmitScalarExpr(e);
3391
3392 // Otherwise, try to emit the sub-expression at +1 recursively.
3393 } else {
3394 TryEmitResult subresult = asImpl().visit(e);
3395
3396 // If that produced a retained value, just use that.
3397 if (subresult.getInt()) {
3398 return subresult;
3399 }
3400
3401 // Otherwise it's +0.
3402 result = subresult.getPointer();
3403 }
3404
3405 // Retain the object as a block.
3406 result = CGF.EmitARCRetainBlock(result, /*mandatory*/ true);
3407 return TryEmitResult(result, true);
3408 }
3409
3410 /// For reclaims, emit the subexpression as a retained call and
3411 /// skip the consumption.
3412 TryEmitResult visitReclaimReturnedObject(const Expr *e) {
3413 llvm::Value *result = emitARCRetainCallResult(CGF, e);
3414 return TryEmitResult(result, true);
3415 }
3416
3417 /// When we have an undecorated call, retroactively do a claim.
3418 TryEmitResult visitCall(const Expr *e) {
3419 llvm::Value *result = emitARCRetainCallResult(CGF, e);
3420 return TryEmitResult(result, true);
3421 }
3422
3423 // TODO: maybe special-case visitBinAssignWeak?
3424
3425 TryEmitResult visitExpr(const Expr *e) {
3426 // We didn't find an obvious production, so emit what we've got and
3427 // tell the caller that we didn't manage to retain.
3428 llvm::Value *result = CGF.EmitScalarExpr(e);
3429 return TryEmitResult(result, false);
3430 }
3431};
3432}
3433
3434static TryEmitResult
3436 return ARCRetainExprEmitter(CGF).visit(e);
3437}
3438
3440 LValue lvalue,
3441 QualType type) {
3442 TryEmitResult result = tryEmitARCRetainLoadOfScalar(CGF, lvalue, type);
3443 llvm::Value *value = result.getPointer();
3444 if (!result.getInt())
3445 value = CGF.EmitARCRetain(type, value);
3446 return value;
3447}
3448
3449/// EmitARCRetainScalarExpr - Semantically equivalent to
3450/// EmitARCRetainObject(e->getType(), EmitScalarExpr(e)), but making a
3451/// best-effort attempt to peephole expressions that naturally produce
3452/// retained objects.
3453llvm::Value *CodeGenFunction::EmitARCRetainScalarExpr(const Expr *e) {
3454 // The retain needs to happen within the full-expression.
3455 if (const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(e)) {
3456 RunCleanupsScope scope(*this);
3457 return EmitARCRetainScalarExpr(cleanups->getSubExpr());
3458 }
3459
3460 TryEmitResult result = tryEmitARCRetainScalarExpr(*this, e);
3461 llvm::Value *value = result.getPointer();
3462 if (!result.getInt())
3463 value = EmitARCRetain(e->getType(), value);
3464 return value;
3465}
3466
3467llvm::Value *
3469 // The retain needs to happen within the full-expression.
3470 if (const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(e)) {
3471 RunCleanupsScope scope(*this);
3472 return EmitARCRetainAutoreleaseScalarExpr(cleanups->getSubExpr());
3473 }
3474
3475 TryEmitResult result = tryEmitARCRetainScalarExpr(*this, e);
3476 llvm::Value *value = result.getPointer();
3477 if (result.getInt())
3478 value = EmitARCAutorelease(value);
3479 else
3480 value = EmitARCRetainAutorelease(e->getType(), value);
3481 return value;
3482}
3483
3484llvm::Value *CodeGenFunction::EmitARCExtendBlockObject(const Expr *e) {
3485 llvm::Value *result;
3486 bool doRetain;
3487
3489 result = EmitScalarExpr(e);
3490 doRetain = true;
3491 } else {
3492 TryEmitResult subresult = tryEmitARCRetainScalarExpr(*this, e);
3493 result = subresult.getPointer();
3494 doRetain = !subresult.getInt();
3495 }
3496
3497 if (doRetain)
3498 result = EmitARCRetainBlock(result, /*mandatory*/ true);
3499 return EmitObjCConsumeObject(e->getType(), result);
3500}
3501
3502llvm::Value *CodeGenFunction::EmitObjCThrowOperand(const Expr *expr) {
3503 // In ARC, retain and autorelease the expression.
3504 if (getLangOpts().ObjCAutoRefCount) {
3505 // Do so before running any cleanups for the full-expression.
3506 // EmitARCRetainAutoreleaseScalarExpr does this for us.
3508 }
3509
3510 // Otherwise, use the normal scalar-expression emission. The
3511 // exception machinery doesn't do anything special with the
3512 // exception like retaining it, so there's no safety associated with
3513 // only running cleanups after the throw has started, and when it
3514 // matters it tends to be substantially inferior code.
3515 return EmitScalarExpr(expr);
3516}
3517
3518namespace {
3519
3520/// An emitter for assigning into an __unsafe_unretained context.
3521struct ARCUnsafeUnretainedExprEmitter :
3522 public ARCExprEmitter<ARCUnsafeUnretainedExprEmitter, llvm::Value*> {
3523
3524 ARCUnsafeUnretainedExprEmitter(CodeGenFunction &CGF) : ARCExprEmitter(CGF) {}
3525
3526 llvm::Value *getValueOfResult(llvm::Value *value) {
3527 return value;
3528 }
3529
3530 llvm::Value *emitBitCast(llvm::Value *value, llvm::Type *resultType) {
3531 return CGF.Builder.CreateBitCast(value, resultType);
3532 }
3533
3534 llvm::Value *visitLValueToRValue(const Expr *e) {
3535 return CGF.EmitScalarExpr(e);
3536 }
3537
3538 /// For consumptions, just emit the subexpression and perform the
3539 /// consumption like normal.
3540 llvm::Value *visitConsumeObject(const Expr *e) {
3541 llvm::Value *value = CGF.EmitScalarExpr(e);
3542 return CGF.EmitObjCConsumeObject(e->getType(), value);
3543 }
3544
3545 /// No special logic for block extensions. (This probably can't
3546 /// actually happen in this emitter, though.)
3547 llvm::Value *visitExtendBlockObject(const Expr *e) {
3548 return CGF.EmitARCExtendBlockObject(e);
3549 }
3550
3551 /// For reclaims, perform an unsafeClaim if that's enabled.
3552 llvm::Value *visitReclaimReturnedObject(const Expr *e) {
3553 return CGF.EmitARCReclaimReturnedObject(e, /*unsafe*/ true);
3554 }
3555
3556 /// When we have an undecorated call, just emit it without adding
3557 /// the unsafeClaim.
3558 llvm::Value *visitCall(const Expr *e) {
3559 return CGF.EmitScalarExpr(e);
3560 }
3561
3562 /// Just do normal scalar emission in the default case.
3563 llvm::Value *visitExpr(const Expr *e) {
3564 return CGF.EmitScalarExpr(e);
3565 }
3566};
3567}
3568
3570 const Expr *e) {
3571 return ARCUnsafeUnretainedExprEmitter(CGF).visit(e);
3572}
3573
3574/// EmitARCUnsafeUnretainedScalarExpr - Semantically equivalent to
3575/// immediately releasing the resut of EmitARCRetainScalarExpr, but
3576/// avoiding any spurious retains, including by performing reclaims
3577/// with objc_unsafeClaimAutoreleasedReturnValue.
3579 // Look through full-expressions.
3580 if (const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(e)) {
3581 RunCleanupsScope scope(*this);
3582 return emitARCUnsafeUnretainedScalarExpr(*this, cleanups->getSubExpr());
3583 }
3584
3585 return emitARCUnsafeUnretainedScalarExpr(*this, e);
3586}
3587
3588std::pair<LValue,llvm::Value*>
3590 bool ignored) {
3591 // Evaluate the RHS first. If we're ignoring the result, assume
3592 // that we can emit at an unsafe +0.
3593 llvm::Value *value;
3594 if (ignored) {
3596 } else {
3597 value = EmitScalarExpr(e->getRHS());
3598 }
3599
3600 // Emit the LHS and perform the store.
3601 LValue lvalue = EmitLValue(e->getLHS());
3602 EmitStoreOfScalar(value, lvalue);
3603
3604 return std::pair<LValue,llvm::Value*>(std::move(lvalue), value);
3605}
3606
3607std::pair<LValue,llvm::Value*>
3609 bool ignored) {
3610 // Evaluate the RHS first.
3611 TryEmitResult result = tryEmitARCRetainScalarExpr(*this, e->getRHS());
3612 llvm::Value *value = result.getPointer();
3613
3614 bool hasImmediateRetain = result.getInt();
3615
3616 // If we didn't emit a retained object, and the l-value is of block
3617 // type, then we need to emit the block-retain immediately in case
3618 // it invalidates the l-value.
3619 if (!hasImmediateRetain && e->getType()->isBlockPointerType()) {
3620 value = EmitARCRetainBlock(value, /*mandatory*/ false);
3621 hasImmediateRetain = true;
3622 }
3623
3624 LValue lvalue = EmitLValue(e->getLHS());
3625
3626 // If the RHS was emitted retained, expand this.
3627 if (hasImmediateRetain) {
3628 llvm::Value *oldValue = EmitLoadOfScalar(lvalue, SourceLocation());
3629 EmitStoreOfScalar(value, lvalue);
3630 EmitARCRelease(oldValue, lvalue.isARCPreciseLifetime());
3631 } else {
3632 value = EmitARCStoreStrong(lvalue, value, ignored);
3633 }
3634
3635 return std::pair<LValue,llvm::Value*>(lvalue, value);
3636}
3637
3638std::pair<LValue,llvm::Value*>
3640 llvm::Value *value = EmitARCRetainAutoreleaseScalarExpr(e->getRHS());
3641 LValue lvalue = EmitLValue(e->getLHS());
3642
3643 EmitStoreOfScalar(value, lvalue);
3644
3645 return std::pair<LValue,llvm::Value*>(lvalue, value);
3646}
3647
3649 const ObjCAutoreleasePoolStmt &ARPS) {
3650 const Stmt *subStmt = ARPS.getSubStmt();
3651 const CompoundStmt &S = cast<CompoundStmt>(*subStmt);
3652
3653 CGDebugInfo *DI = getDebugInfo();
3654 if (DI)
3655 DI->EmitLexicalBlockStart(Builder, S.getLBracLoc());
3656
3657 // Keep track of the current cleanup stack depth.
3658 RunCleanupsScope Scope(*this);
3660 llvm::Value *token = EmitObjCAutoreleasePoolPush();
3661 EHStack.pushCleanup<CallObjCAutoreleasePoolObject>(NormalCleanup, token);
3662 } else {
3663 llvm::Value *token = EmitObjCMRRAutoreleasePoolPush();
3664 EHStack.pushCleanup<CallObjCMRRAutoreleasePoolObject>(NormalCleanup, token);
3665 }
3666
3667 for (const auto *I : S.body())
3668 EmitStmt(I);
3669
3670 if (DI)
3671 DI->EmitLexicalBlockEnd(Builder, S.getRBracLoc());
3672}
3673
3674/// EmitExtendGCLifetime - Given a pointer to an Objective-C object,
3675/// make sure it survives garbage collection until this point.
3676void CodeGenFunction::EmitExtendGCLifetime(llvm::Value *object) {
3677 // We just use an inline assembly.
3678 llvm::FunctionType *extenderType
3679 = llvm::FunctionType::get(VoidTy, VoidPtrTy, RequiredArgs::All);
3680 llvm::InlineAsm *extender = llvm::InlineAsm::get(extenderType,
3681 /* assembly */ "",
3682 /* constraints */ "r",
3683 /* side effects */ true);
3684
3685 EmitNounwindRuntimeCall(extender, object);
3686}
3687
3688/// GenerateObjCAtomicSetterCopyHelperFunction - Given a c++ object type with
3689/// non-trivial copy assignment function, produce following helper function.
3690/// static void copyHelper(Ty *dest, const Ty *source) { *dest = *source; }
3691///
3692llvm::Constant *
3694 const ObjCPropertyImplDecl *PID) {
3695 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
3697 return nullptr;
3698
3699 QualType Ty = PID->getPropertyIvarDecl()->getType();
3700 ASTContext &C = getContext();
3701
3703 // Call the move assignment operator instead of calling the copy assignment
3704 // operator and destructor.
3705 CharUnits Alignment = C.getTypeAlignInChars(Ty);
3706 llvm::Constant *Fn = getNonTrivialCStructMoveAssignmentOperator(
3707 CGM, Alignment, Alignment, Ty.isVolatileQualified(), Ty);
3708 return Fn;
3709 }
3710
3711 if (!getLangOpts().CPlusPlus ||
3713 return nullptr;
3714 if (!Ty->isRecordType())
3715 return nullptr;
3716 llvm::Constant *HelperFn = nullptr;
3717 if (hasTrivialSetExpr(PID))
3718 return nullptr;
3719 assert(PID->getSetterCXXAssignment() && "SetterCXXAssignment - null");
3720 if ((HelperFn = CGM.getAtomicSetterHelperFnMap(Ty)))
3721 return HelperFn;
3722
3723 IdentifierInfo *II
3724 = &CGM.getContext().Idents.get("__assign_helper_atomic_property_");
3725
3726 QualType ReturnTy = C.VoidTy;
3727 QualType DestTy = C.getPointerType(Ty);
3728 QualType SrcTy = Ty;
3729 SrcTy.addConst();
3730 SrcTy = C.getPointerType(SrcTy);
3731
3733 ArgTys.push_back(DestTy);
3734 ArgTys.push_back(SrcTy);
3735 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {});
3736
3738 C, C.getTranslationUnitDecl(), SourceLocation(), SourceLocation(), II,
3739 FunctionTy, nullptr, SC_Static, false, false, false);
3740
3741 FunctionArgList args;
3742 ParmVarDecl *Params[2];
3744 C, FD, SourceLocation(), SourceLocation(), nullptr, DestTy,
3745 C.getTrivialTypeSourceInfo(DestTy, SourceLocation()), SC_None,
3746 /*DefArg=*/nullptr);
3747 args.push_back(Params[0] = DstDecl);
3749 C, FD, SourceLocation(), SourceLocation(), nullptr, SrcTy,
3750 C.getTrivialTypeSourceInfo(SrcTy, SourceLocation()), SC_None,
3751 /*DefArg=*/nullptr);
3752 args.push_back(Params[1] = SrcDecl);
3753 FD->setParams(Params);
3754
3755 const CGFunctionInfo &FI =
3757
3758 llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
3759
3760 llvm::Function *Fn =
3761 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
3762 "__assign_helper_atomic_property_",
3763 &CGM.getModule());
3764
3766
3767 StartFunction(FD, ReturnTy, Fn, FI, args);
3768
3769 DeclRefExpr DstExpr(C, DstDecl, false, DestTy, VK_PRValue, SourceLocation());
3771 C, &DstExpr, UO_Deref, DestTy->getPointeeType(), VK_LValue, OK_Ordinary,
3772 SourceLocation(), false, FPOptionsOverride());
3773
3774 DeclRefExpr SrcExpr(C, SrcDecl, false, SrcTy, VK_PRValue, SourceLocation());
3776 C, &SrcExpr, UO_Deref, SrcTy->getPointeeType(), VK_LValue, OK_Ordinary,
3777 SourceLocation(), false, FPOptionsOverride());
3778
3779 Expr *Args[2] = {DST, SRC};
3780 CallExpr *CalleeExp = cast<CallExpr>(PID->getSetterCXXAssignment());
3782 C, OO_Equal, CalleeExp->getCallee(), Args, DestTy->getPointeeType(),
3784
3785 EmitStmt(TheCall);
3786
3788 HelperFn = Fn;
3789 CGM.setAtomicSetterHelperFnMap(Ty, HelperFn);
3790 return HelperFn;
3791}
3792
3794 const ObjCPropertyImplDecl *PID) {
3795 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
3797 return nullptr;
3798
3799 QualType Ty = PD->getType();
3800 ASTContext &C = getContext();
3801
3803 CharUnits Alignment = C.getTypeAlignInChars(Ty);
3804 llvm::Constant *Fn = getNonTrivialCStructCopyConstructor(
3805 CGM, Alignment, Alignment, Ty.isVolatileQualified(), Ty);
3806 return Fn;
3807 }
3808
3809 if (!getLangOpts().CPlusPlus ||
3811 return nullptr;
3812 if (!Ty->isRecordType())
3813 return nullptr;
3814 llvm::Constant *HelperFn = nullptr;
3815 if (hasTrivialGetExpr(PID))
3816 return nullptr;
3817 assert(PID->getGetterCXXConstructor() && "getGetterCXXConstructor - null");
3818 if ((HelperFn = CGM.getAtomicGetterHelperFnMap(Ty)))
3819 return HelperFn;
3820
3821 IdentifierInfo *II =
3822 &CGM.getContext().Idents.get("__copy_helper_atomic_property_");
3823
3824 QualType ReturnTy = C.VoidTy;
3825 QualType DestTy = C.getPointerType(Ty);
3826 QualType SrcTy = Ty;
3827 SrcTy.addConst();
3828 SrcTy = C.getPointerType(SrcTy);
3829
3831 ArgTys.push_back(DestTy);
3832 ArgTys.push_back(SrcTy);
3833 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {});
3834
3836 C, C.getTranslationUnitDecl(), SourceLocation(), SourceLocation(), II,
3837 FunctionTy, nullptr, SC_Static, false, false, false);
3838
3839 FunctionArgList args;
3840 ParmVarDecl *Params[2];
3842 C, FD, SourceLocation(), SourceLocation(), nullptr, DestTy,
3843 C.getTrivialTypeSourceInfo(DestTy, SourceLocation()), SC_None,
3844 /*DefArg=*/nullptr);
3845 args.push_back(Params[0] = DstDecl);
3847 C, FD, SourceLocation(), SourceLocation(), nullptr, SrcTy,
3848 C.getTrivialTypeSourceInfo(SrcTy, SourceLocation()), SC_None,
3849 /*DefArg=*/nullptr);
3850 args.push_back(Params[1] = SrcDecl);
3851 FD->setParams(Params);
3852
3853 const CGFunctionInfo &FI =
3855
3856 llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
3857
3858 llvm::Function *Fn = llvm::Function::Create(
3859 LTy, llvm::GlobalValue::InternalLinkage, "__copy_helper_atomic_property_",
3860 &CGM.getModule());
3861
3863
3864 StartFunction(FD, ReturnTy, Fn, FI, args);
3865
3866 DeclRefExpr SrcExpr(getContext(), SrcDecl, false, SrcTy, VK_PRValue,
3867 SourceLocation());
3868
3870 C, &SrcExpr, UO_Deref, SrcTy->getPointeeType(), VK_LValue, OK_Ordinary,
3871 SourceLocation(), false, FPOptionsOverride());
3872
3873 CXXConstructExpr *CXXConstExpr =
3874 cast<CXXConstructExpr>(PID->getGetterCXXConstructor());
3875
3876 SmallVector<Expr*, 4> ConstructorArgs;
3877 ConstructorArgs.push_back(SRC);
3878 ConstructorArgs.append(std::next(CXXConstExpr->arg_begin()),
3879 CXXConstExpr->arg_end());
3880
3881 CXXConstructExpr *TheCXXConstructExpr =
3883 CXXConstExpr->getConstructor(),
3884 CXXConstExpr->isElidable(),
3885 ConstructorArgs,
3886 CXXConstExpr->hadMultipleCandidates(),
3887 CXXConstExpr->isListInitialization(),
3888 CXXConstExpr->isStdInitListInitialization(),
3889 CXXConstExpr->requiresZeroInitialization(),
3890 CXXConstExpr->getConstructionKind(),
3891 SourceRange());
3892
3893 DeclRefExpr DstExpr(getContext(), DstDecl, false, DestTy, VK_PRValue,
3894 SourceLocation());
3895
3896 RValue DV = EmitAnyExpr(&DstExpr);
3897 CharUnits Alignment =
3898 getContext().getTypeAlignInChars(TheCXXConstructExpr->getType());
3899 EmitAggExpr(TheCXXConstructExpr,
3901 Address(DV.getScalarVal(), ConvertTypeForMem(Ty), Alignment),
3905
3907 HelperFn = Fn;
3908 CGM.setAtomicGetterHelperFnMap(Ty, HelperFn);
3909 return HelperFn;
3910}
3911
3912llvm::Value *
3914 // Get selectors for retain/autorelease.
3915 IdentifierInfo *CopyID = &getContext().Idents.get("copy");
3916 Selector CopySelector =
3918 IdentifierInfo *AutoreleaseID = &getContext().Idents.get("autorelease");
3919 Selector AutoreleaseSelector =
3920 getContext().Selectors.getNullarySelector(AutoreleaseID);
3921
3922 // Emit calls to retain/autorelease.
3923 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
3924 llvm::Value *Val = Block;
3925 RValue Result;
3926 Result = Runtime.GenerateMessageSend(*this, ReturnValueSlot(),
3927 Ty, CopySelector,
3928 Val, CallArgList(), nullptr, nullptr);
3929 Val = Result.getScalarVal();
3930 Result = Runtime.GenerateMessageSend(*this, ReturnValueSlot(),
3931 Ty, AutoreleaseSelector,
3932 Val, CallArgList(), nullptr, nullptr);
3933 Val = Result.getScalarVal();
3934 return Val;
3935}
3936
3937static unsigned getBaseMachOPlatformID(const llvm::Triple &TT) {
3938 switch (TT.getOS()) {
3939 case llvm::Triple::Darwin:
3940 case llvm::Triple::MacOSX:
3941 return llvm::MachO::PLATFORM_MACOS;
3942 case llvm::Triple::IOS:
3943 return llvm::MachO::PLATFORM_IOS;
3944 case llvm::Triple::TvOS:
3945 return llvm::MachO::PLATFORM_TVOS;
3946 case llvm::Triple::WatchOS:
3947 return llvm::MachO::PLATFORM_WATCHOS;
3948 case llvm::Triple::XROS:
3949 return llvm::MachO::PLATFORM_XROS;
3950 case llvm::Triple::DriverKit:
3951 return llvm::MachO::PLATFORM_DRIVERKIT;
3952 default:
3953 return llvm::MachO::PLATFORM_UNKNOWN;
3954 }
3955}
3956
3958 const VersionTuple &Version) {
3959 CodeGenModule &CGM = CGF.CGM;
3960 // Note: we intend to support multi-platform version checks, so reserve
3961 // the room for a dual platform checking invocation that will be
3962 // implemented in the future.
3964
3965 auto EmitArgs = [&](const VersionTuple &Version, const llvm::Triple &TT) {
3966 std::optional<unsigned> Min = Version.getMinor(),
3967 SMin = Version.getSubminor();
3968 Args.push_back(
3969 llvm::ConstantInt::get(CGM.Int32Ty, getBaseMachOPlatformID(TT)));
3970 Args.push_back(llvm::ConstantInt::get(CGM.Int32Ty, Version.getMajor()));
3971 Args.push_back(llvm::ConstantInt::get(CGM.Int32Ty, Min.value_or(0)));
3972 Args.push_back(llvm::ConstantInt::get(CGM.Int32Ty, SMin.value_or(0)));
3973 };
3974
3975 assert(!Version.empty() && "unexpected empty version");
3976 EmitArgs(Version, CGM.getTarget().getTriple());
3977
3978 if (!CGM.IsPlatformVersionAtLeastFn) {
3979 llvm::FunctionType *FTy = llvm::FunctionType::get(
3980 CGM.Int32Ty, {CGM.Int32Ty, CGM.Int32Ty, CGM.Int32Ty, CGM.Int32Ty},
3981 false);
3983 CGM.CreateRuntimeFunction(FTy, "__isPlatformVersionAtLeast");
3984 }
3985
3986 llvm::Value *Check =
3988 return CGF.Builder.CreateICmpNE(Check,
3989 llvm::Constant::getNullValue(CGM.Int32Ty));
3990}
3991
3992llvm::Value *
3993CodeGenFunction::EmitBuiltinAvailable(const VersionTuple &Version) {
3994 // Darwin uses the new __isPlatformVersionAtLeast family of routines.
3995 if (CGM.getTarget().getTriple().isOSDarwin())
3996 return emitIsPlatformVersionAtLeast(*this, Version);
3997
3999 llvm::FunctionType *FTy =
4000 llvm::FunctionType::get(Int32Ty, {Int32Ty, Int32Ty, Int32Ty}, false);
4002 CGM.CreateRuntimeFunction(FTy, "__isOSVersionAtLeast");
4003 }
4004
4005 std::optional<unsigned> Min = Version.getMinor(),
4006 SMin = Version.getSubminor();
4007 llvm::Value *Args[] = {
4008 llvm::ConstantInt::get(CGM.Int32Ty, Version.getMajor()),
4009 llvm::ConstantInt::get(CGM.Int32Ty, Min.value_or(0)),
4010 llvm::ConstantInt::get(CGM.Int32Ty, SMin.value_or(0))};
4011
4012 llvm::Value *CallRes =
4014
4015 return Builder.CreateICmpNE(CallRes, llvm::Constant::getNullValue(Int32Ty));
4016}
4017
4019 const llvm::Triple &TT, const VersionTuple &TargetVersion) {
4020 VersionTuple FoundationDroppedInVersion;
4021 switch (TT.getOS()) {
4022 case llvm::Triple::IOS:
4023 case llvm::Triple::TvOS:
4024 FoundationDroppedInVersion = VersionTuple(/*Major=*/13);
4025 break;
4026 case llvm::Triple::WatchOS:
4027 FoundationDroppedInVersion = VersionTuple(/*Major=*/6);
4028 break;
4029 case llvm::Triple::Darwin:
4030 case llvm::Triple::MacOSX:
4031 FoundationDroppedInVersion = VersionTuple(/*Major=*/10, /*Minor=*/15);
4032 break;
4033 case llvm::Triple::XROS:
4034 // XROS doesn't need Foundation.
4035 return false;
4036 case llvm::Triple::DriverKit:
4037 // DriverKit doesn't need Foundation.
4038 return false;
4039 default:
4040 llvm_unreachable("Unexpected OS");
4041 }
4042 return TargetVersion < FoundationDroppedInVersion;
4043}
4044
4045void CodeGenModule::emitAtAvailableLinkGuard() {
4047 return;
4048 // @available requires CoreFoundation only on Darwin.
4049 if (!Target.getTriple().isOSDarwin())
4050 return;
4051 // @available doesn't need Foundation on macOS 10.15+, iOS/tvOS 13+, or
4052 // watchOS 6+.
4054 Target.getTriple(), Target.getPlatformMinVersion()))
4055 return;
4056 // Add -framework CoreFoundation to the linker commands. We still want to
4057 // emit the core foundation reference down below because otherwise if
4058 // CoreFoundation is not used in the code, the linker won't link the
4059 // framework.
4060 auto &Context = getLLVMContext();
4061 llvm::Metadata *Args[2] = {llvm::MDString::get(Context, "-framework"),
4062 llvm::MDString::get(Context, "CoreFoundation")};
4063 LinkerOptionsMetadata.push_back(llvm::MDNode::get(Context, Args));
4064 // Emit a reference to a symbol from CoreFoundation to ensure that
4065 // CoreFoundation is linked into the final binary.
4066 llvm::FunctionType *FTy =
4067 llvm::FunctionType::get(Int32Ty, {VoidPtrTy}, false);
4068 llvm::FunctionCallee CFFunc =
4069 CreateRuntimeFunction(FTy, "CFBundleGetVersionNumber");
4070
4071 llvm::FunctionType *CheckFTy = llvm::FunctionType::get(VoidTy, {}, false);
4072 llvm::FunctionCallee CFLinkCheckFuncRef = CreateRuntimeFunction(
4073 CheckFTy, "__clang_at_available_requires_core_foundation_framework",
4074 llvm::AttributeList(), /*Local=*/true);
4075 llvm::Function *CFLinkCheckFunc =
4076 cast<llvm::Function>(CFLinkCheckFuncRef.getCallee()->stripPointerCasts());
4077 if (CFLinkCheckFunc->empty()) {
4078 CFLinkCheckFunc->setLinkage(llvm::GlobalValue::LinkOnceAnyLinkage);
4079 CFLinkCheckFunc->setVisibility(llvm::GlobalValue::HiddenVisibility);
4080 CodeGenFunction CGF(*this);
4081 CGF.Builder.SetInsertPoint(CGF.createBasicBlock("", CFLinkCheckFunc));
4082 CGF.EmitNounwindRuntimeCall(CFFunc,
4083 llvm::Constant::getNullValue(VoidPtrTy));
4084 CGF.Builder.CreateUnreachable();
4085 addCompilerUsedGlobal(CFLinkCheckFunc);
4086 }
4087}
4088
Defines the clang::ASTContext interface.
#define V(N, I)
Definition: ASTContext.h:3259
CudaArch arch
Definition: Cuda.cpp:74
Defines the Diagnostic-related interfaces.
CodeGenFunction::ComplexPairTy ComplexPairTy
static llvm::Value * emitARCUnsafeClaimCallResult(CodeGenFunction &CGF, const Expr *e)
Given that the given expression is some sort of call (which does not return retained),...
Definition: CGObjC.cpp:3037
static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl)
Definition: CGObjC.cpp:1062
static bool shouldRetainObjCLifetime(Qualifiers::ObjCLifetime lifetime)
Definition: CGObjC.cpp:2883
static bool shouldEmitSeparateBlockRetain(const Expr *e)
Determine whether it might be important to emit a separate objc_retain_block on the result of the giv...
Definition: CGObjC.cpp:3063
static std::optional< llvm::Value * > tryEmitSpecializedAllocInit(CodeGenFunction &CGF, const ObjCMessageExpr *OME)
Instead of '[[MyClass alloc] init]', try to generate 'objc_alloc_init(MyClass)'.
Definition: CGObjC.cpp:525
static llvm::Value * emitObjCValueOperation(CodeGenFunction &CGF, llvm::Value *value, llvm::Type *returnType, llvm::FunctionCallee &fn, StringRef fnName)
Perform an operation having the signature i8* (i8*) where a null input causes a no-op and returns nul...
Definition: CGObjC.cpp:2249
llvm::function_ref< llvm::Value *(CodeGenFunction &CGF, llvm::Value *value)> ValueTransform
Definition: CGObjC.cpp:2961
static llvm::Value * emitARCUnsafeUnretainedScalarExpr(CodeGenFunction &CGF, const Expr *e)
Definition: CGObjC.cpp:3569
static llvm::Value * emitARCLoadOperation(CodeGenFunction &CGF, Address addr, llvm::Function *&fn, llvm::Intrinsic::ID IntID)
Perform an operation having the following signature: i8* (i8**)
Definition: CGObjC.cpp:2195
static llvm::Constant * getNullForVariable(Address addr)
Given the address of a variable of pointer type, find the correct null to store into it.
Definition: CGObjC.cpp:45
static void emitAutoreleasedReturnValueMarker(CodeGenFunction &CGF)
Definition: CGObjC.cpp:2333
static const Expr * findWeakLValue(const Expr *E)
Given an expression of ObjC pointer type, check whether it was immediately loaded from an ARC __weak ...
Definition: CGObjC.cpp:350
llvm::PointerIntPair< llvm::Value *, 1, bool > TryEmitResult
Definition: CGObjC.cpp:36
static bool hasUnalignedAtomics(llvm::Triple::ArchType arch)
Determine whether the given architecture supports unaligned atomic accesses.
Definition: CGObjC.cpp:848
static void emitARCCopyOperation(CodeGenFunction &CGF, Address dst, Address src, llvm::Function *&fn, llvm::Intrinsic::ID IntID)
Perform an operation having the following signature: void (i8**, i8**)
Definition: CGObjC.cpp:2231
static void AppendFirstImpliedRuntimeProtocols(const ObjCProtocolDecl *PD, llvm::UniqueVector< const ObjCProtocolDecl * > &PDs)
Definition: CGObjC.cpp:452
static TryEmitResult tryEmitARCRetainScalarExpr(CodeGenFunction &CGF, const Expr *e)
Definition: CGObjC.cpp:3435
static llvm::Value * emitOptimizedARCReturnCall(llvm::Value *value, bool IsRetainRV, CodeGenFunction &CGF)
Definition: CGObjC.cpp:2373
static llvm::Value * emitCmdValueForGetterSetterBody(CodeGenFunction &CGF, ObjCMethodDecl *MD)
Definition: CGObjC.cpp:1121
static llvm::Function * getARCIntrinsic(llvm::Intrinsic::ID IntID, CodeGenModule &CGM)
Definition: CGObjC.cpp:2161
static bool isFoundationNeededForDarwinAvailabilityCheck(const llvm::Triple &TT, const VersionTuple &TargetVersion)
Definition: CGObjC.cpp:4018
static bool shouldExtendReceiverForInnerPointerMessage(const ObjCMessageExpr *message)
Decide whether to extend the lifetime of the receiver of a returns-inner-pointer message.
Definition: CGObjC.cpp:291
static llvm::Value * emitARCStoreOperation(CodeGenFunction &CGF, Address addr, llvm::Value *value, llvm::Function *&fn, llvm::Intrinsic::ID IntID, bool ignored)
Perform an operation having the following signature: i8* (i8**, i8*)
Definition: CGObjC.cpp:2206
static unsigned getBaseMachOPlatformID(const llvm::Triple &TT)
Definition: CGObjC.cpp:3937
static TryEmitResult tryEmitARCRetainLoadOfScalar(CodeGenFunction &CGF, LValue lvalue, QualType type)
Definition: CGObjC.cpp:2898
static void setARCRuntimeFunctionLinkage(CodeGenModule &CGM, llvm::Value *RTF)
Definition: CGObjC.cpp:2144
static std::optional< llvm::Value * > tryGenerateSpecializedMessageSend(CodeGenFunction &CGF, QualType ResultType, llvm::Value *Receiver, const CallArgList &Args, Selector Sel, const ObjCMethodDecl *method, bool isClassMessage)
The ObjC runtime may provide entrypoints that are likely to be faster than an ordinary message send o...
Definition: CGObjC.cpp:377
static CharUnits getMaxAtomicAccessSize(CodeGenModule &CGM, llvm::Triple::ArchType arch)
Return the maximum size that permits atomic accesses for the given architecture.
Definition: CGObjC.cpp:856
static llvm::Value * emitARCRetainCallResult(CodeGenFunction &CGF, const Expr *e)
Given that the given expression is some sort of call (which does not return retained),...
Definition: CGObjC.cpp:3023
static void emitCPPObjectAtomicGetterCall(CodeGenFunction &CGF, llvm::Value *returnAddr, ObjCIvarDecl *ivar, llvm::Constant *AtomicHelperFn)
emitCPPObjectAtomicGetterCall - Call the runtime function to copy the ivar into the resturn slot.
Definition: CGObjC.cpp:1087
static llvm::Value * emitIsPlatformVersionAtLeast(CodeGenFunction &CGF, const VersionTuple &Version)
Definition: CGObjC.cpp:3957
static void destroyARCStrongWithStore(CodeGenFunction &CGF, Address addr, QualType type)
Like CodeGenFunction::destroyARCStrong, but do it with a call.
Definition: CGObjC.cpp:1665
static llvm::Value * emitARCRetainLoadOfScalar(CodeGenFunction &CGF, LValue lvalue, QualType type)
Definition: CGObjC.cpp:3439
static void emitCXXDestructMethod(CodeGenFunction &CGF, ObjCImplementationDecl *impl)
Definition: CGObjC.cpp:1672
static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar, bool isAtomic, bool hasStrong)
emitStructGetterCall - Call the runtime function to load a property into the return value slot.
Definition: CGObjC.cpp:818
static llvm::Value * emitARCValueOperation(CodeGenFunction &CGF, llvm::Value *value, llvm::Type *returnType, llvm::Function *&fn, llvm::Intrinsic::ID IntID, llvm::CallInst::TailCallKind tailKind=llvm::CallInst::TCK_None)
Perform an operation having the signature i8* (i8*) where a null input causes a no-op and returns nul...
Definition: CGObjC.cpp:2171
static llvm::Value * emitARCOperationAfterCall(CodeGenFunction &CGF, llvm::Value *value, ValueTransform doAfterCall, ValueTransform doFallback)
Insert code immediately after a call.
Definition: CGObjC.cpp:2967
static void emitStructSetterCall(CodeGenFunction &CGF, ObjCMethodDecl *OMD, ObjCIvarDecl *ivar)
emitStructSetterCall - Call the runtime function to store the value from the first formal parameter i...
Definition: CGObjC.cpp:1324
static void emitCPPObjectAtomicSetterCall(CodeGenFunction &CGF, ObjCMethodDecl *OMD, ObjCIvarDecl *ivar, llvm::Constant *AtomicHelperFn)
emitCPPObjectAtomicSetterCall - Call the runtime function to store the value from the first formal pa...
Definition: CGObjC.cpp:1367
static RValue AdjustObjCObjectType(CodeGenFunction &CGF, QualType ET, RValue Result)
Adjust the type of an Objective-C object that doesn't match up due to type erasure at various points,...
Definition: CGObjC.cpp:273
static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID)
Definition: CGObjC.cpp:1401
static bool UseOptimizedSetter(CodeGenModule &CGM)
Definition: CGObjC.cpp:1425
static Decl::Kind getKind(const Decl *D)
Definition: DeclBase.cpp:1110
llvm::MachO::Target Target
Definition: MachO.h:40
Defines the Objective-C statement AST node classes.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:182
CharUnits getTypeAlignInChars(QualType T) const
Return the ABI-specified alignment of a (complete) type T, in characters.
void getObjCEncodingForType(QualType T, std::string &S, const FieldDecl *Field=nullptr, QualType *NotEncodedT=nullptr) const
Emit the Objective-CC type encoding for the given type T into S.
CanQualType VoidPtrTy
Definition: ASTContext.h:1113
IdentifierTable & Idents
Definition: ASTContext.h:639
QualType getConstantArrayType(QualType EltTy, const llvm::APInt &ArySize, const Expr *SizeExpr, ArraySizeModifier ASM, unsigned IndexTypeQuals) const
Return the unique reference to the type for a constant array of the specified element type.
SelectorTable & Selectors
Definition: ASTContext.h:640
Qualifiers::GC getObjCGCAttrKind(QualType Ty) const
Return one of the GCNone, Weak or Strong Objective-C garbage collection attributes.
CanQualType BoolTy
Definition: ASTContext.h:1087
QualType getObjCSelType() const
Retrieve the type that corresponds to the predefined Objective-C 'SEL' type.
Definition: ASTContext.h:2058
CanQualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
TypeInfoChars getTypeInfoInChars(const Type *T) const
int64_t toBits(CharUnits CharSize) const
Convert a size in characters to a size in bits.
QualType getObjCIdType() const
Represents the Objective-CC id type.
Definition: ASTContext.h:2048
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
Definition: ASTContext.h:2315
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
CanQualType VoidTy
Definition: ASTContext.h:1086
A builtin binary operation expression such as "x + y" or "x <= y".
Definition: Expr.h:3834
Expr * getLHS() const
Definition: Expr.h:3883
Expr * getRHS() const
Definition: Expr.h:3885
static BinaryOperator * Create(const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptionsOverride FPFeatures)
Definition: Expr.cpp:4767
Opcode getOpcode() const
Definition: Expr.h:3878
bool canAvoidCopyToHeap() const
Definition: Decl.h:4613
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Definition: Expr.h:6167
const BlockDecl * getBlockDecl() const
Definition: Expr.h:6179
Represents a call to a C++ constructor.
Definition: ExprCXX.h:1530
arg_iterator arg_begin()
Definition: ExprCXX.h:1659
bool isElidable() const
Whether this construction is elidable.
Definition: ExprCXX.h:1599
bool hadMultipleCandidates() const
Whether the referred constructor was resolved from an overloaded set having size greater than 1.
Definition: ExprCXX.h:1604
static CXXConstructExpr * Create(const ASTContext &Ctx, QualType Ty, SourceLocation Loc, CXXConstructorDecl *Ctor, bool Elidable, ArrayRef< Expr * > Args, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization, CXXConstructionKind ConstructKind, SourceRange ParenOrBraceRange)
Create a C++ construction expression.
Definition: ExprCXX.cpp:1110
bool isStdInitListInitialization() const
Whether this constructor call was written as list-initialization, but was interpreted as forming a st...
Definition: ExprCXX.h:1623
bool requiresZeroInitialization() const
Whether this construction first requires zero-initialization before the initializer is called.
Definition: ExprCXX.h:1632
arg_iterator arg_end()
Definition: ExprCXX.h:1660
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
Definition: ExprCXX.h:1593
bool isListInitialization() const
Whether this constructor call was written as list-initialization.
Definition: ExprCXX.h:1612
CXXConstructionKind getConstructionKind() const
Determine whether this constructor is actually constructing a base class (rather than a complete obje...
Definition: ExprCXX.h:1641
A call to an overloaded operator written using operator syntax.
Definition: ExprCXX.h:81
static CXXOperatorCallExpr * Create(const ASTContext &Ctx, OverloadedOperatorKind OpKind, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation OperatorLoc, FPOptionsOverride FPFeatures, ADLCallKind UsesADL=NotADL)
Definition: ExprCXX.cpp:562
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition: Expr.h:2819
Expr * getCallee()
Definition: Expr.h:2969
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
Definition: Expr.h:3489
CastKind getCastKind() const
Definition: Expr.h:3533
Expr * getSubExpr()
Definition: Expr.h:3539
CharUnits - This is an opaque type for sizes expressed in character units.
Definition: CharUnits.h:38
bool isZero() const
isZero - Test whether the quantity equals zero.
Definition: CharUnits.h:122
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
Definition: CharUnits.h:63
An aligned address.
Definition: Address.h:29
static Address invalid()
Definition: Address.h:46
llvm::Type * getElementType() const
Return the type of the values stored in this address.
Definition: Address.h:62
Address withElementType(llvm::Type *ElemTy) const
Return address with different element type, but same pointer and alignment.
Definition: Address.h:100
llvm::Value * getPointer() const
Definition: Address.h:51
llvm::PointerType * getType() const
Return the type of the pointer value.
Definition: Address.h:57
static AggValueSlot forLValue(const LValue &LV, CodeGenFunction &CGF, IsDestructed_t isDestructed, NeedsGCBarriers_t needsGC, IsAliased_t isAliased, Overlap_t mayOverlap, IsZeroed_t isZeroed=IsNotZeroed, IsSanitizerChecked_t isChecked=IsNotSanitizerChecked)
Definition: CGValue.h:610
static AggValueSlot forAddr(Address addr, Qualifiers quals, IsDestructed_t isDestructed, NeedsGCBarriers_t needsGC, IsAliased_t isAliased, Overlap_t mayOverlap, IsZeroed_t isZeroed=IsNotZeroed, IsSanitizerChecked_t isChecked=IsNotSanitizerChecked)
forAddr - Make a slot for an aggregate value.
Definition: CGValue.h:595
llvm::StoreInst * CreateStore(llvm::Value *Val, Address Addr, bool IsVolatile=false)
Definition: CGBuilder.h:97
Address CreateConstArrayGEP(Address Addr, uint64_t Index, const llvm::Twine &Name="")
Given addr = [n x T]* ... produce name = getelementptr inbounds addr, i64 0, i64 index where i64 is a...
Definition: CGBuilder.h:193
Address CreateStructGEP(Address Addr, unsigned Index, const llvm::Twine &Name="")
Definition: CGBuilder.h:172
llvm::LoadInst * CreateLoad(Address Addr, const llvm::Twine &Name="")
Definition: CGBuilder.h:71
llvm::LoadInst * CreateAlignedLoad(llvm::Type *Ty, llvm::Value *Addr, CharUnits Align, const llvm::Twine &Name="")
Definition: CGBuilder.h:89
Address CreateGEP(Address Addr, llvm::Value *Index, const llvm::Twine &Name="")
Definition: CGBuilder.h:246
All available information about a concrete callee.
Definition: CGCall.h:62
static CGCallee forDirect(llvm::Constant *functionPtr, const CGCalleeInfo &abstractInfo=CGCalleeInfo())
Definition: CGCall.h:129
This class gathers all debug information during compilation and is responsible for emitting to llvm g...
Definition: CGDebugInfo.h:55
void EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc)
Emit metadata to indicate the end of a new lexical block and pop the current block.
void EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc)
Emit metadata to indicate the beginning of a new lexical block and push the block onto the stack.
CGFunctionInfo - Class to encapsulate the information about a function definition.
Implements runtime-specific code generation functions.
Definition: CGObjCRuntime.h:65
virtual llvm::FunctionCallee GetCppAtomicObjectGetFunction()=0
API for atomic copying of qualified aggregates with non-trivial copy assignment (c++) in getter.
virtual llvm::FunctionCallee GetPropertySetFunction()=0
Return the runtime function for setting properties.
virtual llvm::FunctionCallee GetCppAtomicObjectSetFunction()=0
API for atomic copying of qualified aggregates with non-trivial copy assignment (c++) in setter.
virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtTryStmt &S)=0
virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF, ReturnValueSlot ReturnSlot, QualType ResultType, Selector Sel, llvm::Value *Receiver, const CallArgList &CallArgs, const ObjCInterfaceDecl *Class=nullptr, const ObjCMethodDecl *Method=nullptr)=0
Generate an Objective-C message send operation.
CodeGen::RValue GeneratePossiblySpecializedMessageSend(CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, Selector Sel, llvm::Value *Receiver, const CallArgList &Args, const ObjCInterfaceDecl *OID, const ObjCMethodDecl *Method, bool isClassMessage)
Generate an Objective-C message send operation.
Definition: CGObjC.cpp:438
virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S, bool ClearInsertionPoint=true)=0
virtual llvm::Function * GenerateMethod(const ObjCMethodDecl *OMD, const ObjCContainerDecl *CD)=0
Generate a function preamble for a method with the specified types.
virtual llvm::Value * GenerateProtocolRef(CodeGenFunction &CGF, const ObjCProtocolDecl *OPD)=0
Emit the code to return the named protocol as an object, as in a @protocol expression.
virtual CodeGen::RValue GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, ReturnValueSlot ReturnSlot, QualType ResultType, Selector Sel, const ObjCInterfaceDecl *Class, bool isCategoryImpl, llvm::Value *Self, bool IsClassMessage, const CallArgList &CallArgs, const ObjCMethodDecl *Method=nullptr)=0
Generate an Objective-C message send operation to the super class initiated in a method for Class and...
virtual llvm::FunctionCallee EnumerationMutationFunction()=0
EnumerationMutationFunction - Return the function that's called by the compiler when a mutation is de...
virtual llvm::FunctionCallee GetGetStructFunction()=0
virtual ConstantAddress GenerateConstantString(const StringLiteral *)=0
Generate a constant string object.
virtual llvm::Value * GetClass(CodeGenFunction &CGF, const ObjCInterfaceDecl *OID)=0
GetClass - Return a reference to the class for the given interface decl.
virtual llvm::FunctionCallee GetOptimizedPropertySetFunction(bool atomic, bool copy)=0
Return the runtime function for optimized setting properties.
virtual llvm::Value * GetSelector(CodeGenFunction &CGF, Selector Sel)=0
Get a selector for the specified name and type values.
virtual void GenerateDirectMethodPrologue(CodeGenFunction &CGF, llvm::Function *Fn, const ObjCMethodDecl *OMD, const ObjCContainerDecl *CD)=0
Generates prologue for direct Objective-C Methods.
virtual llvm::Value * EmitNSAutoreleasePoolClassRef(CodeGenFunction &CGF)
virtual llvm::FunctionCallee GetPropertyGetFunction()=0
Return the runtime function for getting properties.
virtual llvm::FunctionCallee GetSetStructFunction()=0
std::vector< const ObjCProtocolDecl * > GetRuntimeProtocolList(ObjCProtocolDecl::protocol_iterator begin, ObjCProtocolDecl::protocol_iterator end)
Walk the list of protocol references from a class, category or protocol to traverse the DAG formed fr...
Definition: CGObjC.cpp:466
virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtSynchronizedStmt &S)=0
CallArgList - Type for representing both the value and type of arguments in a call.
Definition: CGCall.h:258
void add(RValue rvalue, QualType type)
Definition: CGCall.h:282
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
void GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP, ObjCMethodDecl *MD, bool ctor)
void StartObjCMethod(const ObjCMethodDecl *MD, const ObjCContainerDecl *CD)
void EmitARCDestroyWeak(Address addr)
void FinishFunction(SourceLocation EndLoc=SourceLocation())
FinishFunction - Complete IR generation of the current function.
void EmitNullInitialization(Address DestPtr, QualType Ty)
EmitNullInitialization - Generate code to set a value of the given type to null, If the type contains...
GlobalDecl CurGD
CurGD - The GlobalDecl for the current function being compiled.
llvm::Value * EmitARCExtendBlockObject(const Expr *expr)
void DeactivateCleanupBlock(EHScopeStack::stable_iterator Cleanup, llvm::Instruction *DominatingIP)
DeactivateCleanupBlock - Deactivates the given cleanup block.
static TypeEvaluationKind getEvaluationKind(QualType T)
getEvaluationKind - Return the TypeEvaluationKind of QualType T.
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...
SanitizerSet SanOpts
Sanitizers enabled for this function.
void EmitARCMoveWeak(Address dst, Address src)
void generateObjCGetterBody(const ObjCImplementationDecl *classImpl, const ObjCPropertyImplDecl *propImpl, const ObjCMethodDecl *GetterMothodDecl, llvm::Constant *AtomicHelperFn)
llvm::Value * EmitIvarOffsetAsPointerDiff(const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar)
Address EmitCompoundStmtWithoutScope(const CompoundStmt &S, bool GetLast=false, AggValueSlot AVS=AggValueSlot::ignored())
void EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit=false)
EmitStoreThroughLValue - Store the specified rvalue into the specified lvalue, where both are guarant...
llvm::Value * EmitObjCAutoreleasePoolPush()
llvm::Value * EmitARCRetainAutoreleaseNonBlock(llvm::Value *value)
void EmitObjCMRRAutoreleasePoolPop(llvm::Value *Ptr)
void EmitCallArgs(CallArgList &Args, PrototypeWrapper Prototype, llvm::iterator_range< CallExpr::const_arg_iterator > ArgRange, AbstractCallee AC=AbstractCallee(), unsigned ParamsToSkip=0, EvaluationOrder Order=EvaluationOrder::Default)
llvm::Value * EmitARCRetainAutoreleasedReturnValue(llvm::Value *value)
llvm::Value * EmitObjCAllocWithZone(llvm::Value *value, llvm::Type *returnType)
CleanupKind getARCCleanupKind()
Retrieves the default cleanup kind for an ARC cleanup.
llvm::Value * EmitARCAutoreleaseReturnValue(llvm::Value *value)
void GenerateObjCMethod(const ObjCMethodDecl *OMD)
LValue EmitLValue(const Expr *E, KnownNonNull_t IsKnownNonNull=NotKnownNonNull)
EmitLValue - Emit code to compute a designator that specifies the location of the expression.
llvm::Value * EmitARCAutorelease(llvm::Value *value)
void EmitExtendGCLifetime(llvm::Value *object)
EmitExtendGCLifetime - Given a pointer to an Objective-C object, make sure it survives garbage collec...
void EmitARCNoopIntrinsicUse(ArrayRef< llvm::Value * > values)
llvm::Constant * GenerateObjCAtomicGetterCopyHelperFunction(const ObjCPropertyImplDecl *PID)
llvm::Value * EmitARCStoreWeak(Address addr, llvm::Value *value, bool ignored)
void callCStructCopyConstructor(LValue Dst, LValue Src)
llvm::BasicBlock * createBasicBlock(const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
createBasicBlock - Create an LLVM basic block.
llvm::Value * EmitARCLoadWeakRetained(Address addr)
const LangOptions & getLangOpts() const
llvm::Value * EmitObjCProtocolExpr(const ObjCProtocolExpr *E)
llvm::Constant * EmitCheckTypeDescriptor(QualType T)
Emit a description of a type in a format suitable for passing to a runtime sanitizer handler.
llvm::Value * EmitARCRetainAutorelease(QualType type, llvm::Value *value)
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S)
SmallVector< llvm::OperandBundleDef, 1 > getBundlesForFunclet(llvm::Value *Callee)
llvm::Value * EmitObjCBoxedExpr(const ObjCBoxedExpr *E)
RValue EmitLoadOfLValue(LValue V, SourceLocation Loc)
EmitLoadOfLValue - Given an expression that represents a value lvalue, this method emits the address ...
llvm::Value * EmitObjCRetainNonBlock(llvm::Value *value, llvm::Type *returnType)
llvm::Value * EmitObjCAutorelease(llvm::Value *value, llvm::Type *returnType)
void EmitAnyExprToMem(const Expr *E, Address Location, Qualifiers Quals, bool IsInitializer)
EmitAnyExprToMem - Emits the code necessary to evaluate an arbitrary expression into the given memory...
@ TCK_Store
Checking the destination of a store. Must be suitably sized and aligned.
RValue EmitObjCMessageExpr(const ObjCMessageExpr *E, ReturnValueSlot Return=ReturnValueSlot())
llvm::Value * EmitARCStoreStrongCall(Address addr, llvm::Value *value, bool resultIgnored)
RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee, ReturnValueSlot ReturnValue, const CallArgList &Args, llvm::CallBase **callOrInvoke, bool IsMustTail, SourceLocation Loc)
EmitCall - Generate a call of the given function, expecting the given result type,...
llvm::Type * ConvertTypeForMem(QualType T)
llvm::Value * EmitARCUnsafeUnretainedScalarExpr(const Expr *expr)
const Decl * CurCodeDecl
CurCodeDecl - This is the inner-most code context, which includes blocks.
void EmitAutoVarInit(const AutoVarEmission &emission)
llvm::AssertingVH< llvm::Instruction > AllocaInsertPt
AllocaInsertPoint - This is an instruction in the entry block before which we prefer to insert alloca...
llvm::Value * EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E)
llvm::Value * EmitARCRetainBlock(llvm::Value *value, bool mandatory)
QualType TypeOfSelfObject()
TypeOfSelfObject - Return type of object that this self represents.
llvm::Value * EmitObjCArrayLiteral(const ObjCArrayLiteral *E)
Destroyer * getDestroyer(QualType::DestructionKind destructionKind)
void EmitObjCRelease(llvm::Value *value, ARCPreciseLifetime_t precise)
llvm::Value * EmitObjCConsumeObject(QualType T, llvm::Value *Ptr)
ConstantEmission tryEmitAsConstant(DeclRefExpr *refExpr)
llvm::Value * EmitARCLoadWeak(Address addr)
std::pair< LValue, llvm::Value * > EmitARCStoreAutoreleasing(const BinaryOperator *e)
void emitDestroy(Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray)
llvm::Value * EmitObjCAllocInit(llvm::Value *value, llvm::Type *resultType)
llvm::Value * EmitObjCCollectionLiteral(const Expr *E, const ObjCMethodDecl *MethodWithObjects)
void EmitARCRelease(llvm::Value *value, ARCPreciseLifetime_t precise)
llvm::Value * EmitObjCThrowOperand(const Expr *expr)
std::pair< LValue, llvm::Value * > EmitARCStoreUnsafeUnretained(const BinaryOperator *e, bool ignored)
llvm::BasicBlock * getInvokeDest()
void EmitCheck(ArrayRef< std::pair< llvm::Value *, SanitizerMask > > Checked, SanitizerHandler Check, ArrayRef< llvm::Constant * > StaticArgs, ArrayRef< llvm::Value * > DynamicArgs)
Create a basic block that will either trap or call a handler function in the UBSan runtime with the p...
llvm::Value * LoadObjCSelf()
LoadObjCSelf - Load the value of self.
llvm::Value * EmitARCRetainAutoreleaseReturnValue(llvm::Value *value)
void EmitARCCopyWeak(Address dst, Address src)
RValue EmitAnyExpr(const Expr *E, AggValueSlot aggSlot=AggValueSlot::ignored(), bool ignoreResult=false)
EmitAnyExpr - Emit code to compute the specified expression which can have any type.
uint64_t getCurrentProfileCount()
Get the profiler's current count.
void StartFunction(GlobalDecl GD, QualType RetTy, llvm::Function *Fn, const CGFunctionInfo &FnInfo, const FunctionArgList &Args, SourceLocation Loc=SourceLocation(), SourceLocation StartLoc=SourceLocation())
Emit code for the start of a function.
ComplexPairTy EmitLoadOfComplex(LValue src, SourceLocation loc)
EmitLoadOfComplex - Load a complex number from the specified l-value.
llvm::Constant * EmitCheckSourceLocation(SourceLocation Loc)
Emit a description of a source location in a format suitable for passing to a runtime sanitizer handl...
LValue EmitDeclRefLValue(const DeclRefExpr *E)
void EmitAggregateCopy(LValue Dest, LValue Src, QualType EltTy, AggValueSlot::Overlap_t MayOverlap, bool isVolatile=false)
EmitAggregateCopy - Emit an aggregate copy.
llvm::Value * EmitARCReclaimReturnedObject(const Expr *e, bool allowUnsafeClaim)
void EmitObjCAutoreleasePoolPop(llvm::Value *Ptr)
llvm::Value * EmitARCRetainAutoreleaseScalarExpr(const Expr *expr)
void EmitAggExpr(const Expr *E, AggValueSlot AS)
EmitAggExpr - Emit the computation of the specified expression of aggregate type.
llvm::Value * EmitARCRetain(QualType type, llvm::Value *value)
llvm::Value * EmitObjCSelectorExpr(const ObjCSelectorExpr *E)
llvm::Value * EmitARCUnsafeClaimAutoreleasedReturnValue(llvm::Value *value)
llvm::CallInst * EmitNounwindRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
llvm::Value * EmitBuiltinAvailable(const VersionTuple &Version)
llvm::Value * EmitARCStoreStrong(LValue lvalue, llvm::Value *value, bool resultIgnored)
llvm::Value * EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty, SourceLocation Loc, AlignmentSource Source=AlignmentSource::Type, bool isNontemporal=false)
EmitLoadOfScalar - Load a scalar value from an address, taking care to appropriately convert from the...
Address CreateMemTemp(QualType T, const Twine &Name="tmp", Address *Alloca=nullptr)
CreateMemTemp - Create a temporary memory object of the given type, with appropriate alignmen and cas...
void Destroyer(CodeGenFunction &CGF, Address addr, QualType ty)
const Decl * CurFuncDecl
CurFuncDecl - Holds the Decl for the current outermost non-closure context.
llvm::Constant * GenerateObjCAtomicSetterCopyHelperFunction(const ObjCPropertyImplDecl *PID)
void emitARCMoveAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr)
AutoVarEmission EmitAutoVarAlloca(const VarDecl &var)
void callCStructMoveAssignmentOperator(LValue Dst, LValue Src)
void EmitAutoVarCleanups(const AutoVarEmission &emission)
void EmitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt &S)
bool AutoreleaseResult
In ARC, whether we should autorelease the return value.
CleanupKind getCleanupKind(QualType::DestructionKind kind)
llvm::CallInst * EmitRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
llvm::Value * EmitObjCMRRAutoreleasePoolPush()
llvm::Type * ConvertType(QualType T)
CodeGenTypes & getTypes() const
void EmitARCInitWeak(Address addr, llvm::Value *value)
llvm::CallBase * EmitRuntimeCallOrInvoke(llvm::FunctionCallee callee, ArrayRef< llvm::Value * > args, const Twine &name="")
llvm::CallBase * EmitCallOrInvoke(llvm::FunctionCallee Callee, ArrayRef< llvm::Value * > Args, const Twine &Name="")
void generateObjCSetterBody(const ObjCImplementationDecl *classImpl, const ObjCPropertyImplDecl *propImpl, llvm::Constant *AtomicHelperFn)
LValue MakeNaturalAlignAddrLValue(llvm::Value *V, QualType T)
static Destroyer destroyARCStrongPrecise
void EmitARCIntrinsicUse(ArrayRef< llvm::Value * > values)
void EmitObjCAutoreleasePoolStmt(const ObjCAutoreleasePoolStmt &S)
void EmitReturnStmt(const ReturnStmt &S)
AggValueSlot::Overlap_t getOverlapForReturnValue()
Determine whether a return value slot may overlap some other object.
llvm::Value * EmitARCRetainNonBlock(llvm::Value *value)
llvm::Value * EmitObjCExtendObjectLifetime(QualType T, llvm::Value *Ptr)
void GenerateObjCSetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID)
GenerateObjCSetter - Synthesize an Objective-C property setter function for the given property.
llvm::Value * EmitBlockCopyAndAutorelease(llvm::Value *Block, QualType Ty)
uint64_t getProfileCount(const Stmt *S)
Get the profiler's count for the given statement.
void emitARCCopyAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr)
LValue MakeAddrLValue(Address Addr, QualType T, AlignmentSource Source=AlignmentSource::Type)
void EmitStoreOfComplex(ComplexPairTy V, LValue dest, bool isInit)
EmitStoreOfComplex - Store a complex number into the specified l-value.
void GenerateObjCGetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID)
GenerateObjCGetter - Synthesize an Objective-C property getter function.
Address GetAddrOfLocalVar(const VarDecl *VD)
GetAddrOfLocalVar - Return the address of a local variable.
void EmitObjCAutoreleasePoolCleanup(llvm::Value *Ptr)
Address ReturnValue
ReturnValue - The temporary alloca to hold the return value.
static Destroyer destroyARCStrongImprecise
LValue EmitLValueForIvar(QualType ObjectTy, llvm::Value *Base, const ObjCIvarDecl *Ivar, unsigned CVRQualifiers)
llvm::Value * EmitObjCAlloc(llvm::Value *value, llvm::Type *returnType)
llvm::Value * emitScalarConstant(const ConstantEmission &Constant, Expr *E)
void EmitStmt(const Stmt *S, ArrayRef< const Attr * > Attrs=std::nullopt)
EmitStmt - Emit the code for the statement.
void EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S)
llvm::LLVMContext & getLLVMContext()
llvm::Value * EmitScalarExpr(const Expr *E, bool IgnoreResultAssign=false)
EmitScalarExpr - Emit the computation of the specified expression of LLVM scalar type,...
void incrementProfileCounter(const Stmt *S, llvm::Value *StepV=nullptr)
Increment the profiler's counter for the given statement by StepV.
llvm::Value * EmitARCRetainScalarExpr(const Expr *expr)
void EmitARCDestroyStrong(Address addr, ARCPreciseLifetime_t precise)
void EmitObjCAtTryStmt(const ObjCAtTryStmt &S)
void EmitStoreOfScalar(llvm::Value *Value, Address Addr, bool Volatile, QualType Ty, AlignmentSource Source=AlignmentSource::Type, bool isInit=false, bool isNontemporal=false)
EmitStoreOfScalar - Store a scalar value to an address, taking care to appropriately convert from the...
This class organizes the cross-function state that is used while generating LLVM code.
void SetInternalFunctionAttributes(GlobalDecl GD, llvm::Function *F, const CGFunctionInfo &FI)
Set the attributes on the LLVM function for the given decl and function info.
llvm::Module & getModule() const
llvm::FunctionCallee CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name, llvm::AttributeList ExtraAttrs=llvm::AttributeList(), bool Local=false, bool AssumeConvergent=false)
Create or return a runtime function declaration with the specified type and name.
void addCompilerUsedGlobal(llvm::GlobalValue *GV)
Add a global to a list to be added to the llvm.compiler.used metadata.
void ErrorUnsupported(const Stmt *S, const char *Type)
Print out an error that codegen doesn't support the specified stmt yet.
llvm::Constant * getAtomicGetterHelperFnMap(QualType Ty)
const LangOptions & getLangOpts() const
QualType getObjCFastEnumerationStateType()
Retrieve the record type that describes the state of an Objective-C fast enumeration loop (for....
const TargetInfo & getTarget() const
llvm::FunctionCallee IsOSVersionAtLeastFn
const llvm::DataLayout & getDataLayout() const
ObjCEntrypoints & getObjCEntrypoints() const
const llvm::Triple & getTriple() const
void setAtomicSetterHelperFnMap(QualType Ty, llvm::Constant *Fn)
llvm::Constant * getAtomicSetterHelperFnMap(QualType Ty)
llvm::Constant * CreateRuntimeVariable(llvm::Type *Ty, StringRef Name)
Create a new runtime global variable with the specified type and name.
ASTContext & getContext() const
const TargetCodeGenInfo & getTargetCodeGenInfo()
const CodeGenOptions & getCodeGenOpts() const
llvm::LLVMContext & getLLVMContext()
void setAtomicGetterHelperFnMap(QualType Ty, llvm::Constant *Fn)
CGObjCRuntime & getObjCRuntime()
Return a reference to the configured Objective-C runtime.
void SetLLVMFunctionAttributes(GlobalDecl GD, const CGFunctionInfo &Info, llvm::Function *F, bool IsThunk)
Set the LLVM function attributes (sext, zext, etc).
llvm::FunctionCallee IsPlatformVersionAtLeastFn
void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F)
Set the LLVM function attributes which only apply to a function definition.
llvm::Function * getIntrinsic(unsigned IID, ArrayRef< llvm::Type * > Tys=std::nullopt)
ConstantAddress GetAddrOfConstantCString(const std::string &Str, const char *GlobalName=nullptr)
Returns a pointer to a character array containing the literal and a terminating '\0' character.
llvm::ConstantInt * getSize(CharUnits numChars)
Emit the given number of characters as a value of type size_t.
void assignRegionCounters(GlobalDecl GD, llvm::Function *Fn)
Assign counters to regions and configure them for PGO of a given function.
This class organizes the cross-module state that is used while lowering AST types to LLVM types.
Definition: CodeGenTypes.h:54
llvm::Type * ConvertType(QualType T)
ConvertType - Convert type T into a llvm::Type.
llvm::FunctionType * GetFunctionType(const CGFunctionInfo &Info)
GetFunctionType - Get the LLVM function type for.
Definition: CGCall.cpp:1625
const CGFunctionInfo & arrangeBuiltinFunctionDeclaration(QualType resultType, const FunctionArgList &args)
A builtin function is a freestanding function using the default C conventions.
Definition: CGCall.cpp:674
const CGFunctionInfo & arrangeObjCMethodDeclaration(const ObjCMethodDecl *MD)
Objective-C methods are C functions with some implicit parameters.
Definition: CGCall.cpp:481
const CGFunctionInfo & arrangeBuiltinFunctionCall(QualType resultType, const CallArgList &args)
Definition: CGCall.cpp:662
llvm::Constant * getPointer() const
Definition: Address.h:132
Information for lazily generating a cleanup.
Definition: EHScopeStack.h:141
FunctionArgList - Type for representing both the decl and type of parameters to a function.
Definition: CGCall.h:352
LValue - This represents an lvalue references.
Definition: CGValue.h:171
CharUnits getAlignment() const
Definition: CGValue.h:331
Address getAddress(CodeGenFunction &CGF) const
Definition: CGValue.h:350
const Qualifiers & getQuals() const
Definition: CGValue.h:326
llvm::Value * getPointer(CodeGenFunction &CGF) const
Definition: CGValue.h:346
ARCPreciseLifetime_t isARCPreciseLifetime() const
Definition: CGValue.h:300
QualType getType() const
Definition: CGValue.h:279
RValue - This trivial value class is used to represent the result of an expression that is evaluated.
Definition: CGValue.h:39
static RValue get(llvm::Value *V)
Definition: CGValue.h:89
llvm::Value * getScalarVal() const
getScalarVal() - Return the Value* of this scalar value.
Definition: CGValue.h:61
ReturnValueSlot - Contains the address where the return value of a function can be stored,...
Definition: CGCall.h:356
virtual StringRef getARCRetainAutoreleasedReturnValueMarker() const
Retrieve the address of a function to call immediately before calling objc_retainAutoreleasedReturnVa...
Definition: TargetInfo.h:200
virtual bool markARCOptimizedReturnCallsAsNoTail() const
Determine whether a call to objc_retainAutoreleasedReturnValue or objc_unsafeClaimAutoreleasedReturnV...
Definition: TargetInfo.h:206
CompoundStmt - This represents a group of statements like { stmt stmt }.
Definition: Stmt.h:1604
A reference to a declared variable, function, enum, etc.
Definition: Expr.h:1260
ValueDecl * getDecl()
Definition: Expr.h:1328
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
Definition: Stmt.h:1495
SourceLocation getBodyRBrace() const
getBodyRBrace - Gets the right brace of the body, if a body exists.
Definition: DeclBase.cpp:1029
SourceLocation getLocation() const
Definition: DeclBase.h:444
DeclContext * getDeclContext()
Definition: DeclBase.h:453
bool hasAttr() const
Definition: DeclBase.h:582
Represents an expression – generally a full-expression – that introduces cleanups to be run at the en...
Definition: ExprCXX.h:3436
This represents one expression.
Definition: Expr.h:110
bool isXValue() const
Definition: Expr.h:279
bool isGLValue() const
Definition: Expr.h:280
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
Definition: Expr.cpp:3050
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Definition: Expr.cpp:3041
QualType getType() const
Definition: Expr.h:142
Represents difference between two FPOptions values.
Definition: LangOptions.h:870
Represents a member of a struct/union/class.
Definition: Decl.h:3025
bool isBitField() const
Determines whether this field is a bitfield.
Definition: Decl.h:3116
Represents a function declaration or definition.
Definition: Decl.h:1959
static FunctionDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation NLoc, DeclarationName N, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin=false, bool isInlineSpecified=false, bool hasWrittenPrototype=true, ConstexprSpecKind ConstexprKind=ConstexprSpecKind::Unspecified, Expr *TrailingRequiresClause=nullptr)
Definition: Decl.h:2135
GlobalDecl - represents a global declaration.
Definition: GlobalDecl.h:56
One of these records is kept for each identifier that is lexed.
bool isStr(const char(&Str)[StrLen]) const
Return true if this is the identifier for the specified string.
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
Definition: Expr.h:3649
clang::ObjCRuntime ObjCRuntime
Definition: LangOptions.h:453
ObjCArrayLiteral - used for objective-c array containers; as in: @["Hello", NSApp,...
Definition: ExprObjC.h:191
Expr * getElement(unsigned Index)
getElement - Return the Element at the specified index.
Definition: ExprObjC.h:231
unsigned getNumElements() const
getNumElements - Return number of elements of objective-c array literal.
Definition: ExprObjC.h:228
ObjCMethodDecl * getArrayWithObjectsMethod() const
Definition: ExprObjC.h:240
Represents Objective-C's @synchronized statement.
Definition: StmtObjC.h:303
Represents Objective-C's @throw statement.
Definition: StmtObjC.h:358
Represents Objective-C's @try ... @catch ... @finally statement.
Definition: StmtObjC.h:167
Represents Objective-C's @autoreleasepool Statement.
Definition: StmtObjC.h:394
const Stmt * getSubStmt() const
Definition: StmtObjC.h:405
ObjCBoxedExpr - used for generalized expression boxing.
Definition: ExprObjC.h:127
Expr * getSubExpr()
Definition: ExprObjC.h:143
ObjCMethodDecl * getBoxingMethod() const
Definition: ExprObjC.h:146
bool isExpressibleAsConstantInitializer() const
Definition: ExprObjC.h:152
ObjCContainerDecl - Represents a container for method declarations.
Definition: DeclObjC.h:944
ObjCDictionaryLiteral - AST node to represent objective-c dictionary literals; as in:"name" : NSUserN...
Definition: ExprObjC.h:309
unsigned getNumElements() const
getNumElements - Return number of elements of objective-c dictionary literal.
Definition: ExprObjC.h:360
ObjCMethodDecl * getDictWithObjectsMethod() const
Definition: ExprObjC.h:377
ObjCDictionaryElement getKeyValueElement(unsigned Index) const
Definition: ExprObjC.h:362
Represents Objective-C's collection statement.
Definition: StmtObjC.h:23
const ObjCInterfaceDecl * getClassInterface() const
Definition: DeclObjC.h:2483
ObjCImplementationDecl - Represents a class definition - this is where method definitions are specifi...
Definition: DeclObjC.h:2595
Represents an ObjC class declaration.
Definition: DeclObjC.h:1150
ObjCIvarDecl * all_declared_ivar_begin()
all_declared_ivar_begin - return first ivar declared in this class, its extensions and its implementa...
Definition: DeclObjC.cpp:1678
ObjCInterfaceDecl * getSuperClass() const
Definition: DeclObjC.cpp:351
Interfaces are the core concept in Objective-C for object oriented design.
Definition: Type.h:6495
ObjCInterfaceDecl * getDecl() const
Get the declaration of this interface.
Definition: Type.cpp:849
ObjCIvarDecl - Represents an ObjC instance variable.
Definition: DeclObjC.h:1947
ObjCIvarDecl * getNextIvar()
Definition: DeclObjC.h:1983
ObjCIvarRefExpr - A reference to an ObjC instance variable.
Definition: ExprObjC.h:549
An expression that sends a message to the given Objective-C object or class.
Definition: ExprObjC.h:945
bool isDelegateInitCall() const
isDelegateInitCall - Answers whether this message send has been tagged as a "delegate init call",...
Definition: ExprObjC.h:1413
Expr * getInstanceReceiver()
Returns the object expression (receiver) for an instance message, or null for a message that is not a...
Definition: ExprObjC.h:1260
Selector getSelector() const
Definition: ExprObjC.cpp:293
@ SuperInstance
The receiver is the instance of the superclass object.
Definition: ExprObjC.h:959
@ Instance
The receiver is an object instance.
Definition: ExprObjC.h:953
@ SuperClass
The receiver is a superclass.
Definition: ExprObjC.h:956
@ Class
The receiver is a class.
Definition: ExprObjC.h:950
QualType getClassReceiver() const
Returns the type of a class message send, or NULL if the message is not a class message.
Definition: ExprObjC.h:1279
llvm::iterator_range< arg_iterator > arguments()
Definition: ExprObjC.h:1462
QualType getSuperType() const
Retrieve the type referred to by 'super'.
Definition: ExprObjC.h:1336
const ObjCMethodDecl * getMethodDecl() const
Definition: ExprObjC.h:1356
ReceiverKind getReceiverKind() const
Determine the kind of receiver that this message is being sent to.
Definition: ExprObjC.h:1234
ObjCMethodDecl - Represents an instance or class method declaration.
Definition: DeclObjC.h:140
ImplicitParamDecl * getSelfDecl() const
Definition: DeclObjC.h:418
ArrayRef< ParmVarDecl * > parameters() const
Definition: DeclObjC.h:373
param_const_iterator param_end() const
Definition: DeclObjC.h:358
param_const_iterator param_begin() const
Definition: DeclObjC.h:354
Stmt * getBody() const override
Retrieve the body of this method, if it has one.
Definition: DeclObjC.cpp:909
SourceLocation getEndLoc() const LLVM_READONLY
Definition: DeclObjC.cpp:1047
const ParmVarDecl *const * param_const_iterator
Definition: DeclObjC.h:349
SourceLocation getBeginLoc() const LLVM_READONLY
Definition: DeclObjC.h:282
bool isDirectMethod() const
True if the method is tagged as objc_direct.
Definition: DeclObjC.cpp:871
Selector getSelector() const
Definition: DeclObjC.h:327
ImplicitParamDecl * getCmdDecl() const
Definition: DeclObjC.h:420
bool isInstanceMethod() const
Definition: DeclObjC.h:426
ObjCMethodFamily getMethodFamily() const
Determines the family of this method.
Definition: DeclObjC.cpp:1053
void createImplicitParams(ASTContext &Context, const ObjCInterfaceDecl *ID)
createImplicitParams - Used to lazily create the self and cmd implicit parameters.
Definition: DeclObjC.cpp:1190
QualType getReturnType() const
Definition: DeclObjC.h:329
bool isClassMethod() const
Definition: DeclObjC.h:434
ObjCInterfaceDecl * getClassInterface()
Definition: DeclObjC.cpp:1211
Represents a pointer to an Objective C object.
Definition: Type.h:6551
const ObjCObjectType * getObjectType() const
Gets the type pointed to by this ObjC pointer.
Definition: Type.h:6588
QualType getPointeeType() const
Gets the type pointed to by this ObjC pointer.
Definition: Type.h:6563
const ObjCInterfaceType * getInterfaceType() const
If this pointer points to an Objective C @interface type, gets the type for that interface.
Definition: Type.cpp:1736
Represents a class type in Objective C.
Definition: Type.h:6297
ObjCInterfaceDecl * getInterface() const
Gets the interface declaration for this object type, if the base type really is an interface.
Definition: Type.h:6530
Represents one property declaration in an Objective-C interface.
Definition: DeclObjC.h:729
bool isAtomic() const
isAtomic - Return true if the property is atomic.
Definition: DeclObjC.h:839
SetterKind getSetterKind() const
getSetterKind - Return the method used for doing assignment in the property setter.
Definition: DeclObjC.h:869
QualType getType() const
Definition: DeclObjC.h:800
ObjCPropertyAttribute::Kind getPropertyAttributes() const
Definition: DeclObjC.h:811
ObjCPropertyImplDecl - Represents implementation declaration of a property in a class or category imp...
Definition: DeclObjC.h:2802
ObjCIvarDecl * getPropertyIvarDecl() const
Definition: DeclObjC.h:2875
Expr * getSetterCXXAssignment() const
Definition: DeclObjC.h:2911
ObjCPropertyDecl * getPropertyDecl() const
Definition: DeclObjC.h:2866
Expr * getGetterCXXConstructor() const
Definition: DeclObjC.h:2903
ObjCMethodDecl * getSetterMethodDecl() const
Definition: DeclObjC.h:2900
ObjCMethodDecl * getGetterMethodDecl() const
Definition: DeclObjC.h:2897
Represents an Objective-C protocol declaration.
Definition: DeclObjC.h:2079
bool isNonRuntimeProtocol() const
This is true iff the protocol is tagged with the objc_non_runtime_protocol attribute.
Definition: DeclObjC.cpp:1967
ObjCProtocolList::iterator protocol_iterator
Definition: DeclObjC.h:2152
ObjCProtocolDecl * getCanonicalDecl() override
Retrieves the canonical declaration of this Objective-C protocol.
Definition: DeclObjC.h:2291
protocol_range protocols() const
Definition: DeclObjC.h:2155
ObjCProtocolExpr used for protocol expression in Objective-C.
Definition: ExprObjC.h:505
ObjCProtocolDecl * getProtocol() const
Definition: ExprObjC.h:522
The basic abstraction for the target Objective-C runtime.
Definition: ObjCRuntime.h:28
bool hasEmptyCollections() const
Are the empty collection symbols available?
Definition: ObjCRuntime.h:436
bool hasAtomicCopyHelper() const
Definition: ObjCRuntime.h:405
bool hasARCUnsafeClaimAutoreleasedReturnValue() const
Is objc_unsafeClaimAutoreleasedReturnValue available?
Definition: ObjCRuntime.h:419
bool hasNativeARC() const
Does this runtime natively provide the ARC entrypoints?
Definition: ObjCRuntime.h:170
bool hasOptimizedSetter() const
Does this runtime supports optimized setter entrypoints?
Definition: ObjCRuntime.h:283
ObjCSelectorExpr used for @selector in Objective-C.
Definition: ExprObjC.h:455
Selector getSelector() const
Definition: ExprObjC.h:469
ObjCStringLiteral, used for Objective-C string literals i.e.
Definition: ExprObjC.h:51
StringLiteral * getString()
Definition: ExprObjC.h:64
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
Definition: Expr.h:1168
Represents a parameter to a function.
Definition: Decl.h:1749
static ParmVarDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass S, Expr *DefArg)
Definition: Decl.cpp:2915
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
Definition: Expr.h:6299
semantics_iterator semantics_end()
Definition: Expr.h:6371
semantics_iterator semantics_begin()
Definition: Expr.h:6365
const Expr *const * const_semantics_iterator
Definition: Expr.h:6364
Expr * getResultExpr()
Return the result-bearing expression, or null if there is none.
Definition: Expr.h:6352
A (possibly-)qualified type.
Definition: Type.h:737
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
Definition: Type.h:6985
@ DK_objc_strong_lifetime
Definition: Type.h:1314
QualType withConst() const
Definition: Type.h:951
void addConst()
Add the const type qualifier to this QualType.
Definition: Type.h:948
PrimitiveCopyKind isNonTrivialToPrimitiveCopy() const
Check if this is a non-trivial type that would cause a C struct transitively containing this type to ...
Definition: Type.cpp:2807
Qualifiers::ObjCLifetime getObjCLifetime() const
Returns lifetime attribute of this type.
Definition: Type.h:1229
QualType getNonReferenceType() const
If Type is a reference type (e.g., const int&), returns the type that the reference refers to ("const...
Definition: Type.h:7102
QualType getCanonicalType() const
Definition: Type.h:6954
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
Definition: Type.h:6995
bool hasNonTrivialObjCLifetime() const
Definition: Type.h:1233
@ PCK_Struct
The type is a struct containing a field whose type is neither PCK_Trivial nor PCK_VolatileTrivial.
Definition: Type.h:1295
The collection of all-type qualifiers we support.
Definition: Type.h:147
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
Definition: Type.h:175
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
Definition: Type.h:168
@ OCL_None
There is no lifetime qualification on this type.
Definition: Type.h:164
@ OCL_Weak
Reading or writing from this object requires a barrier call.
Definition: Type.h:178
@ OCL_Autoreleasing
Assigning into this object requires a lifetime extension.
Definition: Type.h:181
ObjCLifetime getObjCLifetime() const
Definition: Type.h:352
void setObjCLifetime(ObjCLifetime type)
Definition: Type.h:355
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
Definition: Type.h:5092
static ReturnStmt * Create(const ASTContext &Ctx, SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate)
Create a return statement.
Definition: Stmt.cpp:1204
Scope - A scope is a transient data structure that is used while parsing the program.
Definition: Scope.h:41
Selector getSelector(unsigned NumArgs, IdentifierInfo **IIV)
Can create any sort of selector.
Selector getNullarySelector(IdentifierInfo *ID)
Smart pointer class that efficiently represents Objective-C method names.
StringRef getNameForSlot(unsigned argIndex) const
Retrieve the name at a given position in the selector.
IdentifierInfo * getIdentifierInfoForSlot(unsigned argIndex) const
Retrieve the identifier at a given position in the selector.
bool isKeywordSelector() const
ObjCMethodFamily getMethodFamily() const
Derive the conventional family of this method.
bool isUnarySelector() const
unsigned getNumArgs() const
Encodes a location in the source.
A trivial tuple used to represent a source range.
Stmt - This represents one statement.
Definition: Stmt.h:84
SourceLocation getBeginLoc() const LLVM_READONLY
Definition: Stmt.cpp:338
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
Definition: TargetInfo.h:1220
Token - This structure provides full information about a lexed token.
Definition: Token.h:36
bool isBlockPointerType() const
Definition: Type.h:7162
bool isVoidType() const
Definition: Type.h:7443
const T * castAs() const
Member-template castAs<specific type>.
Definition: Type.h:7724
bool isReferenceType() const
Definition: Type.h:7166
const ObjCObjectPointerType * getAsObjCInterfacePointerType() const
Definition: Type.cpp:1796
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
Definition: Type.cpp:651
bool isObjCObjectPointerType() const
Definition: Type.h:7282
bool isObjCClassType() const
Definition: Type.h:7321
const T * getAs() const
Member-template getAs<specific type>'.
Definition: Type.h:7657
bool isRecordType() const
Definition: Type.h:7244
bool isObjCRetainableType() const
Definition: Type.cpp:4758
bool hasPointerRepresentation() const
Whether this type is represented natively as a pointer.
Definition: Type.h:7598
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Definition: Expr.h:2182
static UnaryOperator * Create(const ASTContext &C, Expr *input, Opcode opc, QualType type, ExprValueKind VK, ExprObjectKind OK, SourceLocation l, bool CanOverflow, FPOptionsOverride FPFeatures)
Definition: Expr.cpp:4824
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition: Decl.h:706
QualType getType() const
Definition: Decl.h:717
Represents a variable declaration or definition.
Definition: Decl.h:918
bool isARCPseudoStrong() const
Determine whether this variable is an ARC pseudo-__strong variable.
Definition: Decl.h:1524
bool hasLocalStorage() const
Returns true if a variable with function scope is a non-static local variable.
Definition: Decl.h:1168
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
llvm::Function * getNonTrivialCStructCopyConstructor(CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment, bool IsVolatile, QualType QT)
Returns the copy constructor for a C struct with non-trivially copyable fields, generating it if nece...
@ NormalCleanup
Denotes a cleanup that should run when a scope is exited using normal control flow (falling off the e...
Definition: EHScopeStack.h:84
@ EHCleanup
Denotes a cleanup that should run when a scope is exited using exceptional control flow (a throw stat...
Definition: EHScopeStack.h:80
llvm::Function * getNonTrivialCStructMoveAssignmentOperator(CodeGenModule &CGM, CharUnits DstAlignment, CharUnits SrcAlignment, bool IsVolatile, QualType QT)
Return the move assignment operator for a C struct with non-trivially copyable fields,...
ARCPreciseLifetime_t
Does an ARC strong l-value have precise lifetime?
Definition: CGValue.h:124
@ ARCPreciseLifetime
Definition: CGValue.h:125
@ ARCImpreciseLifetime
Definition: CGValue.h:125
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const AstTypeMatcher< RecordType > recordType
Matches record types (e.g.
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
bool Cast(InterpState &S, CodePtr OpPC)
Definition: Interp.h:1675
The JSON file list parser is used to communicate input to InstallAPI.
@ Self
'self' clause, allowed on Compute and Combined Constructs, plus 'update'.
@ CPlusPlus
Definition: LangStandard.h:54
@ OK_Ordinary
An ordinary object is located at an address in memory.
Definition: Specifiers.h:148
@ SC_Static
Definition: Specifiers.h:249
@ SC_None
Definition: Specifiers.h:247
@ OMF_autorelease
Selector GetUnarySelector(StringRef name, ASTContext &Ctx)
Utility function for constructing an unary selector.
Definition: ASTContext.h:3405
@ Result
The result type of a method or function.
CastKind
CastKind - The kind of operation required for a conversion.
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
Definition: Specifiers.h:132
@ VK_LValue
An l-value expression is a reference to an object with independent storage.
Definition: Specifiers.h:136
U cast(CodeGen::Address addr)
Definition: Address.h:152
@ Class
The "class" keyword introduces the elaborated-type-specifier.
unsigned long uint64_t
__DEVICE__ _Tp arg(const std::complex< _Tp > &__c)
Definition: complex_cmath.h:40
llvm::Function * objc_retainAutoreleasedReturnValue
id objc_retainAutoreleasedReturnValue(id);
llvm::Function * objc_retainAutoreleaseReturnValue
id objc_retainAutoreleaseReturnValue(id);
llvm::FunctionCallee objc_alloc
void objc_alloc(id);
llvm::Function * objc_retain
id objc_retain(id);
llvm::FunctionCallee objc_alloc_init
void objc_alloc_init(id);
llvm::Function * objc_autorelease
id objc_autorelease(id);
llvm::Function * objc_moveWeak
void objc_moveWeak(id *dest, id *src);
llvm::FunctionCallee objc_autoreleasePoolPopInvoke
void objc_autoreleasePoolPop(void*); Note this method is used when we are using exception handling
llvm::InlineAsm * retainAutoreleasedReturnValueMarker
A void(void) inline asm to use to mark that the return value of a call will be immediately retain.
llvm::Function * clang_arc_use
void clang.arc.use(...);
llvm::Function * objc_initWeak
id objc_initWeak(id*, id);
llvm::FunctionCallee objc_retainRuntimeFunction
id objc_retain(id); Note this is the runtime method not the intrinsic.
llvm::Function * objc_copyWeak
void objc_copyWeak(id *dest, id *src);
llvm::Function * objc_destroyWeak
void objc_destroyWeak(id*);
llvm::Function * objc_retainAutorelease
id objc_retainAutorelease(id);
llvm::Function * objc_autoreleasePoolPush
void *objc_autoreleasePoolPush(void);
llvm::Function * objc_retainBlock
id objc_retainBlock(id);
llvm::Function * objc_storeStrong
void objc_storeStrong(id*, id);
llvm::Function * objc_loadWeak
id objc_loadWeak(id*);
llvm::Function * clang_arc_noop_use
void clang.arc.noop.use(...);
llvm::Function * objc_loadWeakRetained
id objc_loadWeakRetained(id*);
llvm::Function * objc_release
void objc_release(id);
llvm::FunctionCallee objc_autoreleaseRuntimeFunction
id objc_autorelease(id); Note this is the runtime method not the intrinsic.
llvm::Function * objc_autoreleaseReturnValue
id objc_autoreleaseReturnValue(id);
llvm::FunctionCallee objc_releaseRuntimeFunction
void objc_release(id); Note this is the runtime method not the intrinsic.
llvm::FunctionCallee objc_allocWithZone
void objc_allocWithZone(id);
llvm::FunctionCallee objc_autoreleasePoolPop
void objc_autoreleasePoolPop(void*);
llvm::Function * objc_storeWeak
id objc_storeWeak(id*, id);
llvm::Function * objc_unsafeClaimAutoreleasedReturnValue
id objc_unsafeClaimAutoreleasedReturnValue(id);
Expr * Value
The value of the dictionary element.
Definition: ExprObjC.h:267
Expr * Key
The key for the dictionary element.
Definition: ExprObjC.h:264
bool has(SanitizerMask K) const
Check if a certain (single) sanitizer is enabled.
Definition: Sanitizers.h:159