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;
224 PMBuilder.DisableSimplifyLibCalls = !CodeGenOpts.SimplifyLibCalls;
225 PMBuilder.DisableUnitAtATime = !CodeGenOpts.UnitAtATime
    [all...]
ModuleBuilder.cpp 33 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
42 : Diags(diags), CodeGenOpts(CGO), TargetOpts(TO),
61 Builder.reset(new CodeGen::CodeGenModule(Context, CodeGenOpts, TargetOpts,
CodeGenTBAA.h 42 const CodeGenOptions &CodeGenOpts;
CodeGenTypes.h 69 const CodeGenOptions &CodeGenOpts;
117 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
CodeGenTBAA.cpp 34 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
82 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
CodeGenAction.cpp 40 const CodeGenOptions &CodeGenOpts;
64 CodeGenOpts(compopts),
161 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
CGCall.cpp     [all...]
CodeGenModule.cpp 76 : Context(C), LangOpts(C.getLangOpts()), CodeGenOpts(CGO), TargetOpts(TO),
121 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
122 TBAA = new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(),
127 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo ||
128 CodeGenOpts.EmitGcovArcs ||
129 CodeGenOpts.EmitGcovNotes)
190 if (CodeGenOpts.ModulesAutolink) {
314 TLM = GetLLVMTLSModel(CodeGenOpts.getDefaultTLSModel());
332 if (!CodeGenOpts.HiddenWeakVTables
    [all...]
CodeGenModule.h 232 const CodeGenOptions &CodeGenOpts;
389 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
477 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
CodeGenTypes.cpp 36 CodeGenOpts(CGM.getCodeGenOpts()), CGM(CGM) {
TargetInfo.cpp     [all...]
CGVTables.cpp 740 if (!def && CodeGenOpts.OptimizationLevel)
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 106 CodeGenOptions CodeGenOpts;
174 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
176 return CodeGenOpts;
CompilerInstance.h 516 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
525 const CodeGenOptions *CodeGenOpts = 0);
  /frameworks/compile/slang/
slang.cpp 112 clang::CodeGenOptions Slang::CodeGenOpts;
162 CodeGenOpts.OptimizationLevel = 3;
257 Slang::createBackend(const clang::CodeGenOptions& CodeGenOpts,
259 return new Backend(mDiagEngine, CodeGenOpts, getTargetOptions(),
440 mBackend.reset(createBackend(CodeGenOpts, &mOS->os(), mOT));
466 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::FullDebugInfo);
468 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::NoDebugInfo);
472 CodeGenOpts.OptimizationLevel = OptimizationLevel;
slang_backend.h 105 const clang::CodeGenOptions &CodeGenOpts,
slang_rs_backend.h 81 const clang::CodeGenOptions &CodeGenOpts,
slang.h 62 static clang::CodeGenOptions CodeGenOpts;
162 createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_rs.h 87 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_backend.cpp 206 const clang::CodeGenOptions &CodeGenOpts,
222 mCodeGenOpts(CodeGenOpts),
slang_rs.cpp 236 *SlangRS::createBackend(const clang::CodeGenOptions& CodeGenOpts,
241 CodeGenOpts,
slang_rs_backend.cpp 51 const clang::CodeGenOptions &CodeGenOpts,
59 : Backend(DiagEngine, CodeGenOpts, TargetOpts, Pragmas, OS, OT),
  /external/clang/lib/Frontend/
CompilerInstance.cpp 103 const CodeGenOptions *CodeGenOpts,
127 if (CodeGenOpts)
128 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
167 const CodeGenOptions *CodeGenOpts) {
188 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
    [all...]

Completed in 271 milliseconds