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

1 2

  /external/clang/lib/CodeGen/
BackendUtil.cpp 45 const CodeGenOptions &CodeGenOpts;
94 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
141 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
142 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining;
146 if (CodeGenOpts.DisableLLVMOpts) {
148 Inlining = CodeGenOpts.NoInlining;
153 PMBuilder.SizeLevel = CodeGenOpts.OptimizeSize;
155 PMBuilder.DisableSimplifyLibCalls = !CodeGenOpts.SimplifyLibCalls;
156 PMBuilder.DisableUnitAtATime = !CodeGenOpts.UnitAtATime;
157 PMBuilder.DisableUnrollLoops = !CodeGenOpts.UnrollLoops
    [all...]
CodeGenTBAA.cpp 32 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
80 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
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,
CodeGenTBAA.h 42 const CodeGenOptions &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),
107 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
108 TBAA = new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(),
113 if (CodeGenOpts.DebugInfo != CodeGenOptions::NoDebugInfo ||
114 CodeGenOpts.EmitGcovArcs ||
115 CodeGenOpts.EmitGcovNotes)
290 TLM = GetLLVMTLSModel(CodeGenOpts.DefaultTLSModel);
308 if (!CodeGenOpts.HiddenWeakVTables)
350 if (!CodeGenOpts.HiddenWeakTemplateVTables
    [all...]
CodeGenModule.h 220 const CodeGenOptions &CodeGenOpts;
359 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
447 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 76 CodeGenOptions CodeGenOpts;
160 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
162 return CodeGenOpts;
  /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));
457 CodeGenOpts.DebugInfo = clang::CodeGenOptions::FullDebugInfo;
459 CodeGenOpts.DebugInfo = clang::CodeGenOptions::NoDebugInfo;
463 CodeGenOpts.OptimizationLevel = OptimizationLevel;
slang_backend.h 105 const clang::CodeGenOptions &CodeGenOpts,
slang_rs.h 87 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_rs_backend.h 81 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 236 *SlangRS::createBackend(const clang::CodeGenOptions& CodeGenOpts,
241 CodeGenOpts,
  /frameworks/compile/llvm-ndk-cc/
Backend.h 34 Backend(const clang::CodeGenOptions &CodeGenOpts,
Compiler.h 154 clang::ASTConsumer *createBackend(const clang::CodeGenOptions& CodeGenOpts,
Backend.cpp 182 Backend::Backend(const clang::CodeGenOptions &CodeGenOpts,
188 mCodeGenOpts(CodeGenOpts),
Compiler.cpp 162 *Compiler::createBackend(const clang::CodeGenOptions& CodeGenOpts,
165 return new Backend(CodeGenOpts,
  /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 200 milliseconds

1 2