HomeSort by relevance Sort by last modified time
    Searched refs:CodeGenOpts (Results 1 - 20 of 20) sorted by null

  /external/clang/lib/CodeGen/
BackendUtil.cpp 49 const CodeGenOptions &CodeGenOpts;
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.VectorizeBB
    [all...]
ModuleBuilder.cpp 35 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
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]);
CodeGenAction.cpp 44 const CodeGenOptions &CodeGenOpts;
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()))
CodeGenTBAA.cpp 35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
90 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
293 if (!CodeGenOpts.StructPathTBAA)
CodeGenTBAA.h 50 const CodeGenOptions &CodeGenOpts;
CodeGenModule.cpp 78 : 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.Autolink &
    [all...]
CGCall.cpp     [all...]
CodeGenModule.h 274 const CodeGenOptions &CodeGenOpts;
480 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
585 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
TargetInfo.cpp     [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 109 CodeGenOptions CodeGenOpts;
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
179 return CodeGenOpts;
CompilerInstance.h 557 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
565 const CodeGenOptions *CodeGenOpts = nullptr);
  /frameworks/compile/slang/
slang.cpp 107 clang::CodeGenOptions Slang::CodeGenOpts;
158 CodeGenOpts.OptimizationLevel = 3;
255 Slang::createBackend(const clang::CodeGenOptions& CodeGenOpts,
257 return new Backend(mDiagEngine, CodeGenOpts, getTargetOptions(),
438 mBackend.reset(createBackend(CodeGenOpts, &mOS->os(), mOT));
464 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::FullDebugInfo);
466 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::NoDebugInfo);
470 CodeGenOpts.OptimizationLevel = OptimizationLevel;
slang_backend.h 103 const clang::CodeGenOptions &CodeGenOpts,
slang_rs.h 85 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_rs_backend.h 85 const clang::CodeGenOptions &CodeGenOpts,
slang.h 61 static clang::CodeGenOptions CodeGenOpts;
162 createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_backend.cpp 205 const clang::CodeGenOptions &CodeGenOpts,
221 mCodeGenOpts(CodeGenOpts),
slang_rs.cpp 231 *SlangRS::createBackend(const clang::CodeGenOptions& CodeGenOpts,
236 CodeGenOpts,
slang_rs_backend.cpp 51 const clang::CodeGenOptions &CodeGenOpts,
59 : Backend(DiagEngine, CodeGenOpts, TargetOpts, Pragmas, OS, OT),
  /external/clang/lib/Frontend/
CompilerInstance.cpp 131 const CodeGenOptions *CodeGenOpts,
155 if (CodeGenOpts)
156 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
191 const CodeGenOptions *CodeGenOpts) {
209 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
    [all...]

Completed in 152 milliseconds