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 41 const CodeGenOptions &CodeGenOpts;
89 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
115 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
116 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining;
120 if (CodeGenOpts.DisableLLVMOpts) {
122 Inlining = CodeGenOpts.NoInlining;
127 PMBuilder.SizeLevel = CodeGenOpts.OptimizeSize;
129 PMBuilder.DisableSimplifyLibCalls = !CodeGenOpts.SimplifyLibCalls;
130 PMBuilder.DisableUnitAtATime = !CodeGenOpts.UnitAtATime;
131 PMBuilder.DisableUnrollLoops = !CodeGenOpts.UnrollLoops
    [all...]
ModuleBuilder.cpp 33 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
40 : Diags(diags), CodeGenOpts(CGO), M(new llvm::Module(ModuleName, C)) {}
58 Builder.reset(new CodeGen::CodeGenModule(Context, CodeGenOpts,
CodeGenTypes.h 65 const CodeGenOptions &CodeGenOpts;
113 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
CodeGenAction.cpp 35 const CodeGenOptions &CodeGenOpts;
57 CodeGenOpts(compopts),
133 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
CodeGenModule.cpp 62 : Context(C), Features(C.getLangOptions()), CodeGenOpts(CGO), TheModule(M),
79 if (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)
85 if (CodeGenOpts.DebugInfo || CodeGenOpts.EmitGcovArcs ||
86 CodeGenOpts.EmitGcovNotes)
224 if (!CodeGenOpts.HiddenWeakVTables)
266 if (!CodeGenOpts.HiddenWeakTemplateVTables)
465 if (CodeGenOpts.UnwindTables)
815 if (CodeGenOpts.OptimizationLevel == 0 &&
    [all...]
CodeGenModule.h 211 const CodeGenOptions &CodeGenOpts;
324 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
367 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
CGCall.cpp 735 if (CodeGenOpts.OptimizeSize)
737 if (CodeGenOpts.DisableRedZone)
739 if (CodeGenOpts.NoImplicitFloat)
777 RegParm = CodeGenOpts.NumRegisterParameters;
    [all...]
CodeGenTypes.cpp 33 TheABIInfo(Info), TheCXXABI(CXXABI), CodeGenOpts(CGO) {
TargetInfo.cpp     [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 50 CodeGenOptions CodeGenOpts;
139 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
141 return CodeGenOpts;
CompilerInstance.h 482 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
490 const CodeGenOptions *CodeGenOpts = 0);
  /frameworks/compile/slang/
slang_backend.h 103 const clang::CodeGenOptions &CodeGenOpts,
slang_rs.h 85 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_rs_backend.h 75 const clang::CodeGenOptions &CodeGenOpts,
slang.cpp 111 clang::CodeGenOptions Slang::CodeGenOpts;
158 CodeGenOpts.OptimizationLevel = 3; /* -O3 */
257 *Slang::createBackend(const clang::CodeGenOptions& CodeGenOpts,
261 CodeGenOpts,
435 mBackend.reset(createBackend(CodeGenOpts, &mOS->os(), mOT));
slang.h 56 static clang::CodeGenOptions CodeGenOpts;
150 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_backend.cpp 196 const clang::CodeGenOptions &CodeGenOpts,
202 mCodeGenOpts(CodeGenOpts),
slang_rs.cpp 217 *SlangRS::createBackend(const clang::CodeGenOptions& CodeGenOpts,
222 CodeGenOpts,
slang_rs_backend.cpp 47 const clang::CodeGenOptions &CodeGenOpts,
55 CodeGenOpts,
  /external/clang/lib/Frontend/
CompilerInstance.cpp 112 const CodeGenOptions *CodeGenOpts,
136 if (CodeGenOpts)
137 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
151 const CodeGenOptions *CodeGenOpts) {
168 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);

Completed in 192 milliseconds