Home
last modified time | relevance | path

Searched refs:LOpts (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
DRetainCountDiagnostics.h55 RefCountReport(const RefCountBug &D, const LangOptions &LOpts,
59 RefCountReport(const RefCountBug &D, const LangOptions &LOpts,
84 RefLeakReport(const RefCountBug &D, const LangOptions &LOpts, ExplodedNode *n,
DRetainCountDiagnostics.cpp810 RefCountReport::RefCountReport(const RefCountBug &D, const LangOptions &LOpts, in RefCountReport() argument
818 RefCountReport::RefCountReport(const RefCountBug &D, const LangOptions &LOpts, in RefCountReport() argument
904 RefLeakReport::RefLeakReport(const RefCountBug &D, const LangOptions &LOpts, in RefLeakReport() argument
907 : RefCountReport(D, LOpts, n, sym, /*isLeak=*/true) { in RefLeakReport()
DRetainCountChecker.cpp1096 const LangOptions &LOpts = C.getASTContext().getLangOpts(); in checkReturnWithRetEffect() local
1098 std::make_unique<RefLeakReport>(*LeakAtReturn, LOpts, N, Sym, C); in checkReturnWithRetEffect()
1275 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts(); in handleAutoreleaseCounts() local
1276 auto R = std::make_unique<RefCountReport>(*OverAutorelease, LOpts, N, Sym, in handleAutoreleaseCounts()
1319 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts(); in processLeaks() local
1324 Ctx.emitReport(std::make_unique<RefLeakReport>(BT, LOpts, N, L, Ctx)); in processLeaks()
/external/clang/include/clang/Rewrite/Frontend/
DASTConsumers.h32 DiagnosticsEngine &Diags, const LangOptions &LOpts,
36 DiagnosticsEngine &Diags, const LangOptions &LOpts,
/external/llvm-project/clang/include/clang/Rewrite/Frontend/
DASTConsumers.h31 DiagnosticsEngine &Diags, const LangOptions &LOpts,
36 DiagnosticsEngine &Diags, const LangOptions &LOpts,
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp1795 void addGCModeDescription(const LangOptions &LOpts, bool GCEnabled);
1798 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled, in CFRefReport() argument
1804 addGCModeDescription(LOpts, GCEnabled); in CFRefReport()
1807 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled, in CFRefReport() argument
1812 addGCModeDescription(LOpts, GCEnabled); in CFRefReport()
1826 CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1838 void CFRefReport::addGCModeDescription(const LangOptions &LOpts, in addGCModeDescription() argument
1842 switch (LOpts.getGC()) { in addGCModeDescription()
2390 CFRefLeakReport::CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, in CFRefLeakReport() argument
2395 : CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) { in CFRefLeakReport()
[all …]
/external/clang/include/clang/CodeGen/
DBackendUtil.h38 const TargetOptions &TOpts, const LangOptions &LOpts,
/external/llvm-project/clang/include/clang/CodeGen/
DBackendUtil.h41 const TargetOptions &TOpts, const LangOptions &LOpts,
/external/llvm-project/clang/lib/CodeGen/
DBackendUtil.cpp152 const LangOptions &LOpts, Module *M) in EmitAssemblyHelper() argument
154 TargetOpts(TOpts), LangOpts(LOpts), TheModule(M), in EmitAssemblyHelper()
1425 const clang::TargetOptions &TOpts, const LangOptions &LOpts, in runThinLTOBackend() argument
1463 initTargetOptions(Diags, Conf.Options, CGOpts, TOpts, LOpts, HeaderOpts); in runThinLTOBackend()
1529 const LangOptions &LOpts, in EmitBackendOutput() argument
1557 TOpts, LOpts, std::move(OS), CGOpts.SampleProfileFile, in EmitBackendOutput()
1573 EmitAssemblyHelper AsmHelper(Diags, HeaderOpts, CGOpts, TOpts, LOpts, M); in EmitBackendOutput()
DCodeGenModule.cpp956 const auto &LOpts = CGM.getLangOpts(); in shouldAssumeDSOLocal() local
957 if (RM != llvm::Reloc::Static && !LOpts.PIE) in shouldAssumeDSOLocal()
/external/clang/lib/CodeGen/
DBackendUtil.cpp126 const LangOptions &LOpts, Module *M) in EmitAssemblyHelper() argument
127 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts), in EmitAssemblyHelper()
773 const LangOptions &LOpts, const llvm::DataLayout &TDesc, in EmitBackendOutput() argument
776 EmitAssemblyHelper AsmHelper(Diags, CGOpts, TOpts, LOpts, M); in EmitBackendOutput()
/external/clang/lib/Frontend/
DCacheTokens.cpp504 const LangOptions &LOpts = PP.getLangOpts(); in GeneratePTH() local
520 Lexer L(FID, FromFile, SM, LOpts); in GeneratePTH()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp194 DiagnosticsEngine &D, const LangOptions &LOpts,
510 DiagnosticsEngine &D, const LangOptions &LOpts, in RewriteObjCFragileABI() argument
512 D, LOpts, in RewriteObjCFragileABI()
579 DiagnosticsEngine &D, const LangOptions &LOpts, in RewriteObjC() argument
581 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS), in RewriteObjC()
594 DiagnosticsEngine &Diags, const LangOptions &LOpts, in CreateObjCRewriter() argument
596 return llvm::make_unique<RewriteObjCFragileABI>(InFile, OS, Diags, LOpts, in CreateObjCRewriter()
DRewriteModernObjC.cpp243 DiagnosticsEngine &D, const LangOptions &LOpts,
642 DiagnosticsEngine &D, const LangOptions &LOpts, in RewriteModernObjC() argument
645 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS), in RewriteModernObjC()
663 const LangOptions &LOpts, bool SilenceRewriteMacroWarning, bool LineInfo) { in CreateModernObjCRewriter() argument
665 InFile, OS, Diags, LOpts, SilenceRewriteMacroWarning, LineInfo); in CreateModernObjCRewriter()
/external/llvm-project/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp194 DiagnosticsEngine &D, const LangOptions &LOpts,
511 DiagnosticsEngine &D, const LangOptions &LOpts, in RewriteObjCFragileABI() argument
513 : RewriteObjC(inFile, std::move(OS), D, LOpts, silenceMacroWarn) {} in RewriteObjCFragileABI()
579 DiagnosticsEngine &D, const LangOptions &LOpts, in RewriteObjC() argument
581 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(std::move(OS)), in RewriteObjC()
595 DiagnosticsEngine &Diags, const LangOptions &LOpts, in CreateObjCRewriter() argument
598 InFile, std::move(OS), Diags, LOpts, SilenceRewriteMacroWarning); in CreateObjCRewriter()
DRewriteModernObjC.cpp243 DiagnosticsEngine &D, const LangOptions &LOpts,
645 const LangOptions &LOpts, in RewriteModernObjC() argument
647 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(std::move(OS)), in RewriteModernObjC()
665 DiagnosticsEngine &Diags, const LangOptions &LOpts, in CreateModernObjCRewriter() argument
668 LOpts, SilenceRewriteMacroWarning, in CreateModernObjCRewriter()
/external/clang/lib/AST/
DASTContext.cpp697 const LangOptions &LOpts) { in getAddressSpaceMap() argument
698 if (LOpts.FakeAddressSpaceMap) { in getAddressSpaceMap()
729 ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM, in ASTContext() argument
745 TypePackElementDecl(nullptr), SourceMgr(SM), LangOpts(LOpts), in ASTContext()
748 PrintingPolicy(LOpts), Idents(idents), Selectors(sels), in ASTContext()
751 CommentCommandTraits(BumpAlloc, LOpts.CommentOpts), LastSDM(nullptr, 0) { in ASTContext()
/external/llvm-project/clang/lib/AST/
DASTContext.cpp917 const LangOptions &LOpts) { in getAddressSpaceMap() argument
918 if (LOpts.FakeAddressSpaceMap) { in getAddressSpaceMap()
956 ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM, in ASTContext() argument
963 CanonTemplateTemplateParms(this_()), SourceMgr(SM), LangOpts(LOpts), in ASTContext()
968 PrintingPolicy(LOpts), Idents(idents), Selectors(sels), in ASTContext()
970 CommentCommandTraits(BumpAlloc, LOpts.CommentOpts), in ASTContext()
/external/clang/include/clang/AST/
DASTContext.h929 ASTContext(LangOptions &LOpts, SourceManager &SM, IdentifierTable &idents,
/external/llvm-project/clang/include/clang/AST/
DASTContext.h1027 ASTContext(LangOptions &LOpts, SourceManager &SM, IdentifierTable &idents,