Home
last modified time | relevance | path

Searched refs:NonGC (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGValue.h221 bool NonGC: 1;
260 this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false;
303 bool isNonGC () const { return NonGC; }
304 void setNonGC(bool Value) { NonGC = Value; }
H A DCGObjCMac.cpp2181 if (Ctx.getLangOpts().getGC() != LangOptions::NonGC) { in GetGCAttrTypeForType()
2259 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) in BuildGCBlockLayout()
2797 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in fillRunSkipBlockVars()
2863 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in BuildByrefLayout()
3373 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in hasMRCWeakIvars()
5005 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitImageInfo()
5412 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in buildBitmap()
5451 if (CGM.getLangOpts().getGC() == LangOptions::NonGC && in BuildIvarLayout()
5470 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in BuildIvarLayout()
6167 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in isVTableDispatchedSelector()
H A DCGBlocks.cpp168 CGM.getLangOpts().getGC() == LangOptions::NonGC) { in buildBlockDescriptor()
218 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in buildBlockDescriptor()
572 CGM.getLangOpts().getGC() == LangOptions::NonGC) in computeBlockInfo()
H A DCGObjC.cpp411 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend()
418 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend()
425 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend()
1462 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in UseOptimizedSetter()
H A DCGObjCGNU.cpp896 assert ((CGM.getLangOpts().getGC() == LangOptions::NonGC)); in GetOptimizedPropertySetFunction()
2478 if ((Opts.getGC() != LangOptions::NonGC) || Opts.ObjCAutoRefCount) in CGObjCGNU()
2482 if (Opts.getGC() != LangOptions::NonGC) { in CGObjCGNU()
4074 case LangOptions::NonGC: in ModuleInitFunction()
H A DCGClass.cpp1089 CGF.getLangOpts().getGC() == LangOptions::NonGC), in ConstructorMemcpyizer()
1230 AssignmentsMemcpyable(CGF.getLangOpts().getGC() == LangOptions::NonGC) { in AssignmentMemcpyizer()
H A DCGExpr.cpp2794 if (Ctx.getLangOpts().getGC() == LangOptions::NonGC) in setObjCGCLValueClass()
3375 getLangOpts().getGC() != LangOptions::NonGC && in EmitUnaryOpLValue()
4650 getLangOpts().getGC() != LangOptions::NonGC) { in EmitArraySubscriptExpr()
H A DCGExprAgg.cpp2377 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitAggregateCopy()
H A DCGDecl.cpp2221 if (getLangOpts().getGC() != LangOptions::NonGC && in EmitAutoVarCleanups()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp128 if (S.getLangOpts().getGC() != LangOptions::NonGC) { in deducePropertyOwnershipFromType()
577 if (getLangOpts().getGC() != LangOptions::NonGC && isAssign && in CreatePropertyDecl()
1217 if (getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl()
1390 getLangOpts().getGC() != LangOptions::NonGC)) { in ActOnPropertyImplDecl()
1399 getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl()
2156 if (getLangOpts().getGC() != LangOptions::NonGC) in AtomicPropertySetterGetterRules()
2776 if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes()
2786 if (getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes()
H A DSemaDeclObjC.cpp492 if (Context.getLangOpts().getGC() != LangOptions::NonGC) in ActOnStartOfObjCMethodDef()
H A DSemaDecl.cpp8840 if (getLangOpts().getGC() != LangOptions::NonGC) in CheckVariableDeclarationType()
19602 getLangOpts().getGC() != LangOptions::NonGC && Record && in ActOnFields()
H A DSemaCodeComplete.cpp7690 if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC) in CodeCompleteObjCPropertyFlags()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h96 enum GCMode { NonGC, GCOnly, HybridGC }; enumerator
H A DLangOptions.def341 ENUM_LANGOPT(GC, GCMode, 2, NonGC, NotCompatible, "Objective-C Garbage Collection mode")
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp969 if (LangOpts.getGC() != LangOptions::NonGC) in InitializePredefinedMacros()
1426 LangOpts.getGC() != LangOptions::NonGC) { in InitializePredefinedMacros()
H A DCompilerInvocation.cpp4243 } else if (Opts.getGC() != LangOptions::NonGC) { in ParseLangArgs()
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenExpr.cpp840 if (getLangOpts().ObjC && getLangOpts().getGC() != LangOptions::NonGC) { in emitArraySubscriptExpr()
861 if (getLangOpts().ObjC && getLangOpts().getGC() != LangOptions::NonGC) { in emitArraySubscriptExpr()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp8598 getLangOpts().getGC() != LangOptions::NonGC) in getByrefLifetime()
10440 if (getLangOpts().getGC() == LangOptions::NonGC) in getObjCGCAttrKind()