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

  /external/clang/lib/CodeGen/
BackendUtil.cpp 45 const CodeGenOptions &CodeGenOpts;
94 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
135 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
136 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining;
140 if (CodeGenOpts.DisableLLVMOpts) {
142 Inlining = CodeGenOpts.NoInlining;
147 PMBuilder.SizeLevel = CodeGenOpts.OptimizeSize;
149 PMBuilder.DisableSimplifyLibCalls = !CodeGenOpts.SimplifyLibCalls;
150 PMBuilder.DisableUnitAtATime = !CodeGenOpts.UnitAtATime;
151 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 68 const CodeGenOptions &CodeGenOpts;
115 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
CodeGenAction.cpp 40 const CodeGenOptions &CodeGenOpts;
64 CodeGenOpts(compopts),
159 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
CodeGenModule.cpp 67 : Context(C), LangOpts(C.getLangOpts()), CodeGenOpts(CGO), TheModule(M),
106 if (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)
112 if (CodeGenOpts.DebugInfo || CodeGenOpts.EmitGcovArcs ||
113 CodeGenOpts.EmitGcovNotes)
255 if (!CodeGenOpts.HiddenWeakVTables)
297 if (!CodeGenOpts.HiddenWeakTemplateVTables)
504 if (CodeGenOpts.UnwindTables)
806 if (CodeGenOpts.CUDAIsDevice)
    [all...]
CodeGenModule.h 219 const CodeGenOptions &CodeGenOpts;
356 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
444 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
CGCall.cpp     [all...]
CodeGenTypes.cpp 35 CodeGenOpts(CGM.getCodeGenOpts()), CGM(CGM) {
TargetInfo.cpp     [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 74 CodeGenOptions CodeGenOpts;
169 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
171 return CodeGenOpts;
CompilerInstance.h 508 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
518 const CodeGenOptions *CodeGenOpts = 0);
  /frameworks/compile/slang/
slang.cpp 110 clang::CodeGenOptions Slang::CodeGenOpts;
160 CodeGenOpts.OptimizationLevel = 3;
250 Slang::createBackend(const clang::CodeGenOptions& CodeGenOpts,
252 return new Backend(mDiagEngine, CodeGenOpts, mTargetOpts,
431 mBackend.reset(createBackend(CodeGenOpts, &mOS->os(), mOT));
456 CodeGenOpts.DebugInfo = EmitDebug;
460 CodeGenOpts.OptimizationLevel = OptimizationLevel;
slang_backend.h 105 const clang::CodeGenOptions &CodeGenOpts,
slang_rs.h 85 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_rs_backend.h 76 const clang::CodeGenOptions &CodeGenOpts,
slang.h 60 static clang::CodeGenOptions CodeGenOpts;
160 createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_backend.cpp 205 const clang::CodeGenOptions &CodeGenOpts,
221 mCodeGenOpts(CodeGenOpts),
slang_rs.cpp 223 *SlangRS::createBackend(const clang::CodeGenOptions& CodeGenOpts,
228 CodeGenOpts,
slang_rs_backend.cpp 50 const clang::CodeGenOptions &CodeGenOpts,
57 : Backend(DiagEngine, CodeGenOpts, TargetOpts, Pragmas, OS, OT),
  /gdk/sources/llvm-ndk-cc/
Backend.h 34 Backend(const clang::CodeGenOptions &CodeGenOpts,
Compiler.h 154 clang::ASTConsumer *createBackend(const clang::CodeGenOptions& CodeGenOpts,
Backend.cpp 179 Backend::Backend(const clang::CodeGenOptions &CodeGenOpts,
185 mCodeGenOpts(CodeGenOpts),
Compiler.cpp 153 *Compiler::createBackend(const clang::CodeGenOptions& CodeGenOpts,
156 return new Backend(CodeGenOpts,
  /external/clang/lib/Frontend/
CompilerInstance.cpp 119 const CodeGenOptions *CodeGenOpts,
143 if (CodeGenOpts)
144 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
185 const CodeGenOptions *CodeGenOpts) {
206 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
    [all...]

Completed in 282 milliseconds