| /src/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGValue.h | 221 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 D | CGObjCMac.cpp | 2262 if (Ctx.getLangOpts().getGC() != LangOptions::NonGC) { in GetGCAttrTypeForType() 2343 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) in BuildGCBlockLayout() 2884 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in fillRunSkipBlockVars() 2949 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in BuildByrefLayout() 3474 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in hasMRCWeakIvars() 5108 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitImageInfo() 5501 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in buildBitmap() 5540 if (CGM.getLangOpts().getGC() == LangOptions::NonGC && in BuildIvarLayout() 5559 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in BuildIvarLayout() 6266 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in isVTableDispatchedSelector()
|
| H A D | CGBlocks.cpp | 169 CGM.getLangOpts().getGC() == LangOptions::NonGC) { in buildBlockDescriptor() 218 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in buildBlockDescriptor() 573 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() 1426 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in UseOptimizedSetter()
|
| H A D | CGObjCGNU.cpp | 895 assert ((CGM.getLangOpts().getGC() == LangOptions::NonGC)); in GetOptimizedPropertySetFunction() 2376 if ((Opts.getGC() != LangOptions::NonGC) || Opts.ObjCAutoRefCount) in CGObjCGNU() 2380 if (Opts.getGC() != LangOptions::NonGC) { in CGObjCGNU() 3983 case LangOptions::NonGC: in ModuleInitFunction()
|
| H A D | CGClass.cpp | 1089 CGF.getLangOpts().getGC() == LangOptions::NonGC), in ConstructorMemcpyizer() 1229 AssignmentsMemcpyable(CGF.getLangOpts().getGC() == LangOptions::NonGC) { in AssignmentMemcpyizer()
|
| H A D | CGExprAgg.cpp | 2184 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitAggregateCopy()
|
| H A D | CGExpr.cpp | 2669 if (Ctx.getLangOpts().getGC() == LangOptions::NonGC) in setObjCGCLValueClass() 3217 getLangOpts().getGC() != LangOptions::NonGC && in EmitUnaryOpLValue() 4351 getLangOpts().getGC() != LangOptions::NonGC) { in EmitArraySubscriptExpr()
|
| H A D | CGDecl.cpp | 2156 if (getLangOpts().getGC() != LangOptions::NonGC && in EmitAutoVarCleanups()
|
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NSAutoreleasePoolChecker.cpp | 82 return LO.getGC() != LangOptions::NonGC; in shouldRegisterNSAutoreleasePoolChecker()
|
| /src/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()
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 130 if (S.getLangOpts().getGC() != LangOptions::NonGC) { in deducePropertyOwnershipFromType() 576 if (getLangOpts().getGC() != LangOptions::NonGC && isAssign && in CreatePropertyDecl() 1216 if (getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl() 1380 getLangOpts().getGC() != LangOptions::NonGC)) { in ActOnPropertyImplDecl() 1389 getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl() 2147 if (getLangOpts().getGC() != LangOptions::NonGC) in AtomicPropertySetterGetterRules() 2767 if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes() 2777 if (getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes()
|
| H A D | SemaDeclObjC.cpp | 493 if (Context.getLangOpts().getGC() != LangOptions::NonGC) in ActOnStartOfObjCMethodDef()
|
| H A D | SemaDecl.cpp | 8640 if (getLangOpts().getGC() != LangOptions::NonGC) in CheckVariableDeclarationType() 19024 getLangOpts().getGC() != LangOptions::NonGC && Record && in ActOnFields()
|
| H A D | SemaCodeComplete.cpp | 7539 if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC) in CodeCompleteObjCPropertyFlags()
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | LangOptions.h | 77 enum GCMode { NonGC, GCOnly, HybridGC }; enumerator
|
| H A D | LangOptions.def | 375 ENUM_LANGOPT(GC, GCMode, 2, NonGC, "Objective-C Garbage Collection mode")
|
| /src/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 959 if (LangOpts.getGC() != LangOptions::NonGC) in InitializePredefinedMacros() 1405 LangOpts.getGC() != LangOptions::NonGC) { in InitializePredefinedMacros()
|
| H A D | CompilerInvocation.cpp | 3985 } else if (Opts.getGC() != LangOptions::NonGC) { in ParseLangArgs()
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 8000 getLangOpts().getGC() != LangOptions::NonGC) in getByrefLifetime() 9811 if (getLangOpts().getGC() == LangOptions::NonGC) in getObjCGCAttrKind()
|