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

/external/clang/lib/CodeGen/
H A DBackendUtil.cpp49 const CodeGenOptions &CodeGenOpts; member in class:__anon17806::EmitAssemblyHelper
114 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
123 if (CodeGenOpts.DisableFree)
221 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
222 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.getInlining();
226 if (CodeGenOpts.DisableLLVMOpts) {
228 Inlining = CodeGenOpts.NoInlining;
231 PassManagerBuilderWrapper PMBuilder(CodeGenOpts, LangOpts);
233 PMBuilder.SizeLevel = CodeGenOpts.OptimizeSize;
234 PMBuilder.BBVectorize = CodeGenOpts
[all...]
H A DModuleBuilder.cpp35 const CodeGenOptions CodeGenOpts; // Intentionally copied in. member in class:__anon17874::CodeGeneratorImpl
43 : Diags(diags), CodeGenOpts(CGO),
75 Builder.reset(new CodeGen::CodeGenModule(Context, CodeGenOpts, *M, *TD,
78 for (size_t i = 0, e = CodeGenOpts.DependentLibraries.size(); i < e; ++i)
79 HandleDependentLibrary(CodeGenOpts.DependentLibraries[i]);
H A DCodeGenAction.cpp44 const CodeGenOptions &CodeGenOpts; member in class:clang::BackendConsumer
63 : Diags(_Diags), Action(action), CodeGenOpts(compopts),
174 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
461 if (CodeGenOpts.OptimizationRemarkPattern &&
462 CodeGenOpts.OptimizationRemarkPattern->match(D.getPassName()))
471 if (CodeGenOpts.OptimizationRemarkMissedPattern &&
472 CodeGenOpts.OptimizationRemarkMissedPattern->match(D.getPassName()))
482 if (CodeGenOpts.OptimizationRemarkAnalysisPattern &&
483 CodeGenOpts.OptimizationRemarkAnalysisPattern->match(D.getPassName()))
H A DCodeGenTBAA.cpp35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
90 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
293 if (!CodeGenOpts.StructPathTBAA)
H A DCodeGenTBAA.h50 const CodeGenOptions &CodeGenOpts; member in class:clang::CodeGen::CodeGenTBAA
H A DCodeGenModule.cpp78 : Context(C), LangOpts(C.getLangOpts()), CodeGenOpts(CGO), TheModule(M),
123 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
124 TBAA = new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(),
129 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo ||
130 CodeGenOpts.EmitGcovArcs ||
131 CodeGenOpts.EmitGcovNotes)
140 if (!CodeGenOpts.InstrProfileInput.empty()) {
142 CodeGenOpts.InstrProfileInput, PGOReader)) {
348 if (CodeGenOpts
[all...]
H A DCGCall.cpp1112 if (CodeGenOpts.OptimizeSize)
1114 if (CodeGenOpts.OptimizeSize == 2)
1116 if (CodeGenOpts.DisableRedZone)
1118 if (CodeGenOpts.NoImplicitFloat)
1120 if (CodeGenOpts.EnableSegmentedStacks &&
1126 if (!CodeGenOpts.SimplifyLibCalls)
1130 if (!CodeGenOpts.DisableFPElim) {
1132 } else if (CodeGenOpts.OmitLeafFramePointer) {
1141 llvm::toStringRef(CodeGenOpts.LessPreciseFPMAD));
1143 llvm::toStringRef(CodeGenOpts
[all...]
H A DCodeGenModule.h274 const CodeGenOptions &CodeGenOpts; member in class:clang::CodeGen::CodeGenModule
480 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
585 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
H A DTargetInfo.cpp6593 else if (CodeGenOpts.FloatABI == "hard" ||
6594 (CodeGenOpts.FloatABI != "soft" &&
6635 X86_32TargetCodeGenInfo::isStructReturnInRegABI(Triple, CodeGenOpts);
6643 CodeGenOpts.NumRegisterParameters));
6649 CodeGenOpts.NumRegisterParameters));
/external/clang/include/clang/Frontend/
H A DCompilerInvocation.h109 CodeGenOptions CodeGenOpts; member in class:clang::CompilerInvocation
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
179 return CodeGenOpts;
H A DCompilerInstance.h557 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
565 const CodeGenOptions *CodeGenOpts = nullptr);
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp131 const CodeGenOptions *CodeGenOpts,
155 if (CodeGenOpts)
156 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
191 const CodeGenOptions *CodeGenOpts) {
209 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
130 SetUpDiagnosticLog(DiagnosticOptions *DiagOpts, const CodeGenOptions *CodeGenOpts, DiagnosticsEngine &Diags) argument
188 createDiagnostics(DiagnosticOptions *Opts, DiagnosticConsumer *Client, bool ShouldOwnClient, const CodeGenOptions *CodeGenOpts) argument

Completed in 467 milliseconds