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

  /external/clang/lib/CodeGen/
BackendUtil.cpp 46 const CodeGenOptions &CodeGenOpts;
113 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
210 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
211 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.getInlining();
215 if (CodeGenOpts.DisableLLVMOpts) {
217 Inlining = CodeGenOpts.NoInlining;
220 PassManagerBuilderWrapper PMBuilder(CodeGenOpts, LangOpts);
222 PMBuilder.SizeLevel = CodeGenOpts.OptimizeSize;
223 PMBuilder.BBVectorize = CodeGenOpts.VectorizeBB;
224 PMBuilder.SLPVectorize = CodeGenOpts.VectorizeSLP
    [all...]
ModuleBuilder.cpp 35 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
42 : Diags(diags), CodeGenOpts(CGO),
61 Builder.reset(new CodeGen::CodeGenModule(Context, CodeGenOpts, *M, *TD,
CodeGenTBAA.cpp 35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
59 if (CodeGenOpts.StructPathTBAA)
95 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
214 llvm::MDNode *TBAATag = CodeGenOpts.StructPathTBAA ?
294 if (!CodeGenOpts.StructPathTBAA)
CodeGenTypes.h 69 const CodeGenOptions &CodeGenOpts;
119 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
CodeGenAction.cpp 40 const CodeGenOptions &CodeGenOpts;
64 CodeGenOpts(compopts),
161 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
CodeGenTBAA.h 50 const CodeGenOptions &CodeGenOpts;
CodeGenModule.cpp 74 : Context(C), LangOpts(C.getLangOpts()), CodeGenOpts(CGO), TheModule(M),
118 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
119 TBAA = new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(),
124 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo ||
125 CodeGenOpts.EmitGcovArcs ||
126 CodeGenOpts.EmitGcovNotes)
189 if (CodeGenOpts.Autolink &&
193 if (CodeGenOpts.DwarfVersion)
197 CodeGenOpts.DwarfVersion)
    [all...]
CGCall.cpp     [all...]
CodeGenModule.h 234 const CodeGenOptions &CodeGenOpts;
421 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
507 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
CodeGenTypes.cpp 35 CodeGenOpts(cgm.getCodeGenOpts()),
CGVTables.cpp 759 if (!def && CodeGenOpts.OptimizationLevel)
    [all...]
TargetInfo.cpp     [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 107 CodeGenOptions CodeGenOpts;
175 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
177 return CodeGenOpts;
CompilerInstance.h 515 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
523 const CodeGenOptions *CodeGenOpts = 0);
  /frameworks/compile/slang/
slang.cpp 112 clang::CodeGenOptions Slang::CodeGenOpts;
163 CodeGenOpts.OptimizationLevel = 3;
259 Slang::createBackend(const clang::CodeGenOptions& CodeGenOpts,
261 return new Backend(mDiagEngine, CodeGenOpts, getTargetOptions(),
442 mBackend.reset(createBackend(CodeGenOpts, &mOS->os(), mOT));
468 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::FullDebugInfo);
470 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::NoDebugInfo);
474 CodeGenOpts.OptimizationLevel = OptimizationLevel;
slang_backend.h 105 const clang::CodeGenOptions &CodeGenOpts,
slang_rs_backend.h 86 const clang::CodeGenOptions &CodeGenOpts,
slang.h 62 static clang::CodeGenOptions CodeGenOpts;
163 createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_rs.h 84 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_backend.cpp 205 const clang::CodeGenOptions &CodeGenOpts,
221 mCodeGenOpts(CodeGenOpts),
slang_rs.cpp 232 *SlangRS::createBackend(const clang::CodeGenOptions& CodeGenOpts,
237 CodeGenOpts,
slang_rs_backend.cpp 51 const clang::CodeGenOptions &CodeGenOpts,
59 : Backend(DiagEngine, CodeGenOpts, TargetOpts, Pragmas, OS, OT),
  /external/clang/lib/Frontend/
CompilerInstance.cpp 106 const CodeGenOptions *CodeGenOpts,
130 if (CodeGenOpts)
131 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
167 const CodeGenOptions *CodeGenOpts) {
185 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
    [all...]

Completed in 1629 milliseconds