| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NSAutoreleasePoolChecker.cpp | 82 return LO.getGC() != LangOptions::NonGC; in shouldRegisterNSAutoreleasePoolChecker()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGValue.h | 212 bool NonGC: 1; variable 258 this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false; in Initialize() 291 bool isNonGC () const { return NonGC; } in isNonGC() 292 void setNonGC(bool Value) { NonGC = Value; } in setNonGC()
|
| H A D | CGObjCMac.cpp | 2255 if (Ctx.getLangOpts().getGC() != LangOptions::NonGC) { in GetGCAttrTypeForType() 2336 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) in BuildGCBlockLayout() 2877 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in fillRunSkipBlockVars() 2942 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in BuildByrefLayout() 3467 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in hasMRCWeakIvars() 5101 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitImageInfo() 5494 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in buildBitmap() 5533 if (CGM.getLangOpts().getGC() == LangOptions::NonGC && in BuildIvarLayout() 5552 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in BuildIvarLayout() 6259 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in isVTableDispatchedSelector()
|
| H A D | CGBlocks.cpp | 164 CGM.getLangOpts().getGC() == LangOptions::NonGC) { in buildBlockDescriptor() 209 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in buildBlockDescriptor() 564 CGM.getLangOpts().getGC() == LangOptions::NonGC) in computeBlockInfo()
|
| H A D | CGObjC.cpp | 411 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend() 418 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend() 425 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend() 1422 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in UseOptimizedSetter()
|
| H A D | CGObjCGNU.cpp | 896 assert ((CGM.getLangOpts().getGC() == LangOptions::NonGC)); in GetOptimizedPropertySetFunction() 2377 if ((Opts.getGC() != LangOptions::NonGC) || Opts.ObjCAutoRefCount) in CGObjCGNU() 2381 if (Opts.getGC() != LangOptions::NonGC) { in CGObjCGNU() 3984 case LangOptions::NonGC: in ModuleInitFunction()
|
| H A D | CGClass.cpp | 1080 CGF.getLangOpts().getGC() == LangOptions::NonGC), in ConstructorMemcpyizer() 1220 AssignmentsMemcpyable(CGF.getLangOpts().getGC() == LangOptions::NonGC) { in AssignmentMemcpyizer()
|
| H A D | CGExprAgg.cpp | 2193 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitAggregateCopy()
|
| H A D | CGExpr.cpp | 2654 if (Ctx.getLangOpts().getGC() == LangOptions::NonGC) in setObjCGCLValueClass() 3217 getLangOpts().getGC() != LangOptions::NonGC && in EmitUnaryOpLValue() 4309 getLangOpts().getGC() != LangOptions::NonGC) { in EmitArraySubscriptExpr()
|
| H A D | CGDecl.cpp | 2125 if (getLangOpts().getGC() != LangOptions::NonGC && in EmitAutoVarCleanups()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | Internals.h | 165 bool isGCMigration() const { return OrigGCMode != LangOptions::NonGC; } in isGCMigration()
|
| H A D | ARCMT.cpp | 195 CInvok->getLangOpts().setGC(LangOptions::NonGC); in createInvocationForMigration()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 128 if (S.getLangOpts().getGC() != LangOptions::NonGC) { in deducePropertyOwnershipFromType() 591 if (getLangOpts().getGC() != LangOptions::NonGC && isAssign && in CreatePropertyDecl() 1234 if (getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl() 1399 getLangOpts().getGC() != LangOptions::NonGC)) { in ActOnPropertyImplDecl() 1408 getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl() 2165 if (getLangOpts().getGC() != LangOptions::NonGC) in AtomicPropertySetterGetterRules() 2780 if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes() 2790 if (getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes()
|
| H A D | SemaDeclObjC.cpp | 485 if (Context.getLangOpts().getGC() != LangOptions::NonGC) in ActOnStartOfObjCMethodDef()
|
| H A D | SemaDecl.cpp | 8798 if (getLangOpts().getGC() != LangOptions::NonGC) in CheckVariableDeclarationType() 19366 getLangOpts().getGC() != LangOptions::NonGC && Record && in ActOnFields()
|
| H A D | SemaCodeComplete.cpp | 7471 if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC) in CodeCompleteObjCPropertyFlags()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | LangOptions.h | 88 enum GCMode { NonGC, GCOnly, HybridGC }; enumerator
|
| H A D | LangOptions.def | 358 ENUM_LANGOPT(GC, GCMode, 2, NonGC, "Objective-C Garbage Collection mode")
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 871 if (LangOpts.getGC() != LangOptions::NonGC) in InitializePredefinedMacros() 1258 LangOpts.getGC() != LangOptions::NonGC) { in InitializePredefinedMacros()
|
| H A D | CompilerInvocation.cpp | 3810 } else if (Opts.getGC() != LangOptions::NonGC) { in ParseLangArgs()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 7544 getLangOpts().getGC() != LangOptions::NonGC) in getByrefLifetime() 9351 if (getLangOpts().getGC() == LangOptions::NonGC) in getObjCGCAttrKind()
|