Home
last modified time | relevance | path

Searched refs:CodeGenOpts (Results 1 – 12 of 12) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DBackendUtil.cpp51 const CodeGenOptions &CodeGenOpts; member in __anonfbf255770111::EmitAssemblyHelper
116 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts), in EmitAssemblyHelper()
125 if (CodeGenOpts.DisableFree) in ~EmitAssemblyHelper()
231 const CodeGenOptions &CodeGenOpts) { in createTLI() argument
233 if (!CodeGenOpts.SimplifyLibCalls) in createTLI()
250 unsigned OptLevel = CodeGenOpts.OptimizationLevel; in CreatePasses()
251 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.getInlining(); in CreatePasses()
255 if (CodeGenOpts.DisableLLVMOpts) { in CreatePasses()
257 Inlining = CodeGenOpts.NoInlining; in CreatePasses()
260 PassManagerBuilderWrapper PMBuilder(CodeGenOpts, LangOpts); in CreatePasses()
[all …]
H A DModuleBuilder.cpp35 const CodeGenOptions CodeGenOpts; // Intentionally copied in. member in __anoncaca9f7e0111::CodeGeneratorImpl
62 : Diags(diags), Ctx(nullptr), CodeGenOpts(CGO), HandlingTopLevelDecls(0), in CodeGeneratorImpl()
99 Builder.reset(new CodeGen::CodeGenModule(Context, CodeGenOpts, *M, *TD, in Initialize()
102 for (size_t i = 0, e = CodeGenOpts.DependentLibraries.size(); i < e; ++i) in Initialize()
103 HandleDependentLibrary(CodeGenOpts.DependentLibraries[i]); in Initialize()
H A DCodeGenAction.cpp46 const CodeGenOptions &CodeGenOpts; member in clang::BackendConsumer
66 : Diags(_Diags), Action(action), CodeGenOpts(compopts), in BackendConsumer()
175 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts, in HandleTranslationUnit()
467 if (CodeGenOpts.OptimizationRemarkPattern && in OptimizationRemarkHandler()
468 CodeGenOpts.OptimizationRemarkPattern->match(D.getPassName())) in OptimizationRemarkHandler()
477 if (CodeGenOpts.OptimizationRemarkMissedPattern && in OptimizationRemarkHandler()
478 CodeGenOpts.OptimizationRemarkMissedPattern->match(D.getPassName())) in OptimizationRemarkHandler()
488 if (CodeGenOpts.OptimizationRemarkAnalysisPattern && in OptimizationRemarkHandler()
489 CodeGenOpts.OptimizationRemarkAnalysisPattern->match(D.getPassName())) in OptimizationRemarkHandler()
H A DCodeGenTBAA.cpp35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext), in CodeGenTBAA()
90 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing) in getTBAAInfo()
293 if (!CodeGenOpts.StructPathTBAA) in getTBAAStructTagInfo()
H A DCodeGenModule.cpp81 : Context(C), LangOpts(C.getLangOpts()), CodeGenOpts(CGO), TheModule(M), in CodeGenModule()
126 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)) in CodeGenModule()
127 TBAA = new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(), in CodeGenModule()
132 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo || in CodeGenModule()
133 CodeGenOpts.EmitGcovArcs || in CodeGenModule()
134 CodeGenOpts.EmitGcovNotes) in CodeGenModule()
143 if (!CodeGenOpts.InstrProfileInput.empty()) { in CodeGenModule()
145 CodeGenOpts.InstrProfileInput, PGOReader)) { in CodeGenModule()
154 if (CodeGenOpts.CoverageMapping) in CodeGenModule()
360 if (CodeGenOpts.Autolink && in Release()
[all …]
H A DCodeGenTBAA.h50 const CodeGenOptions &CodeGenOpts; variable
H A DCGCall.cpp1416 if (CodeGenOpts.OptimizeSize) in ConstructAttributeList()
1418 if (CodeGenOpts.OptimizeSize == 2) in ConstructAttributeList()
1422 if (CodeGenOpts.DisableRedZone) in ConstructAttributeList()
1424 if (CodeGenOpts.NoImplicitFloat) in ConstructAttributeList()
1426 if (CodeGenOpts.EnableSegmentedStacks && in ConstructAttributeList()
1432 if (!CodeGenOpts.SimplifyLibCalls) in ConstructAttributeList()
1436 if (!CodeGenOpts.DisableFPElim) { in ConstructAttributeList()
1438 } else if (CodeGenOpts.OmitLeafFramePointer) { in ConstructAttributeList()
1447 llvm::toStringRef(CodeGenOpts.LessPreciseFPMAD)); in ConstructAttributeList()
1449 llvm::toStringRef(CodeGenOpts.NoInfsFPMath)); in ConstructAttributeList()
[all …]
H A DCodeGenModule.h281 const CodeGenOptions &CodeGenOpts; variable
490 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
602 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts()
H A DTargetInfo.cpp7108 else if (CodeGenOpts.FloatABI == "hard" || in getTargetCodeGenInfo()
7109 (CodeGenOpts.FloatABI != "soft" && in getTargetCodeGenInfo()
7161 X86_32TargetCodeGenInfo::isStructReturnInRegABI(Triple, CodeGenOpts); in getTargetCodeGenInfo()
7169 CodeGenOpts.NumRegisterParameters)); in getTargetCodeGenInfo()
7175 CodeGenOpts.NumRegisterParameters)); in getTargetCodeGenInfo()
/minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/
H A DCompilerInvocation.h109 CodeGenOptions CodeGenOpts; variable
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; } in getCodeGenOpts()
179 return CodeGenOpts; in getCodeGenOpts()
H A DCompilerInstance.h566 const CodeGenOptions *CodeGenOpts = nullptr);
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp135 const CodeGenOptions *CodeGenOpts, in SetUpDiagnosticLog() argument
159 if (CodeGenOpts) in SetUpDiagnosticLog()
160 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags); in SetUpDiagnosticLog()
191 const CodeGenOptions *CodeGenOpts) { in createDiagnostics() argument
209 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags); in createDiagnostics()