| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGValue.h | 207 bool NonGC: 1; variable 245 this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false; in Initialize() 278 bool isNonGC () const { return NonGC; } in isNonGC() 279 void setNonGC(bool Value) { NonGC = Value; } in setNonGC()
|
| H A D | CGObjCMac.cpp | 2322 if (Ctx.getLangOpts().getGC() != LangOptions::NonGC) { in GetGCAttrTypeForType() 2403 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) in BuildGCBlockLayout() 2944 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in fillRunSkipBlockVars() 3010 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in BuildByrefLayout() 3536 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in hasMRCWeakIvars() 5174 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitImageInfo() 5578 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in buildBitmap() 5617 if (CGM.getLangOpts().getGC() == LangOptions::NonGC && in BuildIvarLayout() 5636 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in BuildIvarLayout() 6344 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in isVTableDispatchedSelector()
|
| H A D | CGBlocks.cpp | 203 CGM.getLangOpts().getGC() == LangOptions::NonGC) { in buildBlockDescriptor() 249 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in buildBlockDescriptor() 541 CGM.getLangOpts().getGC() == LangOptions::NonGC) in computeBlockInfo()
|
| H A D | CGObjC.cpp | 409 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend() 416 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend() 423 CGM.getLangOpts().getGC() == LangOptions::NonGC && in tryGenerateSpecializedMessageSend() 1394 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in UseOptimizedSetter()
|
| H A D | CGObjCGNU.cpp | 886 assert ((CGM.getLangOpts().getGC() == LangOptions::NonGC)); in GetOptimizedPropertySetFunction() 2252 if ((Opts.getGC() != LangOptions::NonGC) || Opts.ObjCAutoRefCount) in CGObjCGNU() 2256 if (Opts.getGC() != LangOptions::NonGC) { in CGObjCGNU() 3794 case LangOptions::NonGC: in ModuleInitFunction()
|
| H A D | CGClass.cpp | 1096 CGF.getLangOpts().getGC() == LangOptions::NonGC), in ConstructorMemcpyizer() 1236 AssignmentsMemcpyable(CGF.getLangOpts().getGC() == LangOptions::NonGC) { in AssignmentMemcpyizer()
|
| H A D | CGExpr.cpp | 2337 if (Ctx.getLangOpts().getGC() == LangOptions::NonGC) in setObjCGCLValueClass() 2894 getLangOpts().getGC() != LangOptions::NonGC && in EmitUnaryOpLValue() 3859 getLangOpts().getGC() != LangOptions::NonGC) { in EmitArraySubscriptExpr()
|
| H A D | CGExprAgg.cpp | 2137 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitAggregateCopy()
|
| H A D | CGDecl.cpp | 2045 if (getLangOpts().getGC() != LangOptions::NonGC && in EmitAutoVarCleanups()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NSAutoreleasePoolChecker.cpp | 85 return LO.getGC() != LangOptions::NonGC; in shouldRegisterNSAutoreleasePoolChecker()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | Internals.h | 167 bool isGCMigration() const { return OrigGCMode != LangOptions::NonGC; } in isGCMigration()
|
| H A D | ARCMT.cpp | 197 CInvok->getLangOpts()->setGC(LangOptions::NonGC); in createInvocationForMigration()
|
| /netbsd-src/external/apache2/llvm/dist/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() 1400 getLangOpts().getGC() != LangOptions::NonGC)) { in ActOnPropertyImplDecl() 1409 getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl() 2170 if (getLangOpts().getGC() != LangOptions::NonGC) in AtomicPropertySetterGetterRules() 2789 if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes() 2799 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 | 8034 if (getLangOpts().getGC() != LangOptions::NonGC) in CheckVariableDeclarationType() 17379 getLangOpts().getGC() != LangOptions::NonGC && Record && in ActOnFields()
|
| H A D | SemaCodeComplete.cpp | 6840 if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC) in CodeCompleteObjCPropertyFlags()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | LangOptions.h | 63 enum GCMode { NonGC, GCOnly, HybridGC }; enumerator
|
| H A D | LangOptions.def | 316 ENUM_LANGOPT(GC, GCMode, 2, NonGC, "Objective-C Garbage Collection mode")
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 717 if (LangOpts.getGC() != LangOptions::NonGC) in InitializePredefinedMacros() 1096 LangOpts.getGC() != LangOptions::NonGC) { in InitializePredefinedMacros()
|
| H A D | CompilerInvocation.cpp | 3692 } else if (Opts.getGC() != LangOptions::NonGC) { in ParseLangArgs()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ASTContext.cpp | 6785 getLangOpts().getGC() != LangOptions::NonGC) in getByrefLifetime() 8579 if (getLangOpts().getGC() == LangOptions::NonGC) in getObjCGCAttrKind()
|