| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| D | CheckObjCDealloc.cpp | 175 const char* name = LOpts.getGC() == LangOptions::NonGC in checkObjCDealloc() 191 const char* name = LOpts.getGC() == LangOptions::NonGC in checkObjCDealloc() 247 name = LOpts.getGC() == LangOptions::NonGC in checkObjCDealloc() 255 name = LOpts.getGC() == LangOptions::NonGC in checkObjCDealloc()
|
| D | NSAutoreleasePoolChecker.cpp | 78 if (mgr.getLangOpts().getGC() != LangOptions::NonGC) in registerNSAutoreleasePoolChecker()
|
| D | RetainCountChecker.cpp | 1734 case LangOptions::NonGC: in addGCModeDescription()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | CGValue.h | 146 bool NonGC: 1; variable 179 this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false; 214 bool isNonGC () const { return NonGC; } in isNonGC() 215 void setNonGC(bool Value) { NonGC = Value; } in setNonGC()
|
| D | CGObjCGNU.cpp | 782 assert ((CGM.getLangOpts().getGC() == LangOptions::NonGC)); in GetOptimizedPropertySetFunction() 1000 if ((Opts.getGC() != LangOptions::NonGC) || Opts.ObjCAutoRefCount) in CGObjCGNU() 1004 if (Opts.getGC() != LangOptions::NonGC) { in CGObjCGNU() 2549 case LangOptions::NonGC: in ModuleInitFunction()
|
| D | CGClass.cpp | 949 CGF.getLangOpts().getGC() == LangOptions::NonGC), in ConstructorMemcpyizer() 1087 AssignmentsMemcpyable(CGF.getLangOpts().getGC() == LangOptions::NonGC) { in AssignmentMemcpyizer()
|
| D | CGBlocks.cpp | 112 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in buildBlockDescriptor() 346 CGM.getLangOpts().getGC() == LangOptions::NonGC) in computeBlockInfo()
|
| D | CGObjCMac.cpp | 1946 if (CGM.getLangOpts().getGC() == LangOptions::NonGC && in BuildGCBlockLayout() 2467 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in BuildRCBlockLayout() 2522 assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); in BuildByrefLayout() 4324 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitImageInfo() 4837 if (CGM.getLangOpts().getGC() == LangOptions::NonGC && in BuildIvarLayout() 5615 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { in isVTableDispatchedSelector()
|
| D | CGExpr.cpp | 1589 if (Ctx.getLangOpts().getGC() == LangOptions::NonGC) in setObjCGCLValueClass() 1859 getLangOpts().getGC() != LangOptions::NonGC && in EmitUnaryOpLValue() 2360 getLangOpts().getGC() != LangOptions::NonGC) { in EmitArraySubscriptExpr()
|
| D | CGExprAgg.cpp | 1438 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { in EmitAggregateCopy()
|
| D | CGObjC.cpp | 1080 if (CGM.getLangOpts().getGC() != LangOptions::NonGC) in UseOptimizedSetter() 1395 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) in IvarTypeWithAggrGCObjects()
|
| D | CGDecl.cpp | 1283 if (getLangOpts().getGC() != LangOptions::NonGC && in EmitAutoVarCleanups()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/ |
| D | LangOptions.h | 60 enum GCMode { NonGC, GCOnly, HybridGC }; enumerator
|
| D | LangOptions.def | 155 ENUM_LANGOPT(GC, GCMode, 2, NonGC, "Objective-C Garbage Collection mode")
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaObjCProperty.cpp | 107 if ((S.getLangOpts().getGC() != LangOptions::NonGC && in deduceWeakPropertyFromType() 554 if (getLangOpts().getGC() != LangOptions::NonGC && in CreatePropertyDecl() 971 getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl() 1045 getLangOpts().getGC() == LangOptions::NonGC) { in ActOnPropertyImplDecl() 1122 getLangOpts().getGC() != LangOptions::NonGC)) { in ActOnPropertyImplDecl() 1131 getLangOpts().getGC() != LangOptions::NonGC) { in ActOnPropertyImplDecl() 1718 if (getLangOpts().getGC() != LangOptions::NonGC) in AtomicPropertySetterGetterRules() 2160 if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes() 2170 if (getLangOpts().getGC() == LangOptions::NonGC) in CheckObjCPropertyAttributes()
|
| D | SemaDeclObjC.cpp | 406 if (Context.getLangOpts().getGC() != LangOptions::NonGC) in ActOnStartOfObjCMethodDef()
|
| D | SemaDecl.cpp | 5752 if (getLangOpts().getGC() != LangOptions::NonGC) in CheckVariableDeclarationType() 11985 getLangOpts().getGC() != LangOptions::NonGC && in ActOnFields()
|
| D | SemaCodeComplete.cpp | 4754 if (getLangOpts().ObjCARCWeak || getLangOpts().getGC() != LangOptions::NonGC) in CodeCompleteObjCPropertyFlags()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| D | Internals.h | 163 bool isGCMigration() const { return OrigGCMode != LangOptions::NonGC; } in isGCMigration()
|
| D | ARCMT.cpp | 194 CInvok->getLangOpts()->setGC(LangOptions::NonGC); in createInvocationForMigration()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ |
| D | AnalysisConsumer.cpp | 683 case LangOptions::NonGC: in RunPathSensitiveChecks()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/ |
| D | InitPreprocessor.cpp | 445 if (LangOpts.getGC() != LangOptions::NonGC) in InitializePredefinedMacros()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | ASTContext.cpp | 4674 getLangOpts().getGC() != LangOptions::NonGC) in getByrefLifetime() 6383 if (getLangOpts().getGC() == LangOptions::NonGC) in getObjCGCAttrKind()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/ |
| D | Targets.cpp | 104 if (Opts.getGC() != LangOptions::NonGC) in getDarwinDefines()
|