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

  /external/clang/lib/CodeGen/
BackendUtil.cpp 53 const CodeGenOptions &CodeGenOpts;
122 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
131 if (CodeGenOpts.DisableFree)
248 const CodeGenOptions &CodeGenOpts) {
250 if (!CodeGenOpts.SimplifyLibCalls)
253 switch (CodeGenOpts.getVecLib()) {
275 if (CodeGenOpts.DisableLLVMPasses)
278 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
279 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.getInlining();
283 if (CodeGenOpts.DisableLLVMOpts)
    [all...]
ObjectFilePCHContainerOperations.cpp 49 CodeGenOptions CodeGenOpts;
141 CodeGenOpts.CodeModel = "default";
142 CodeGenOpts.ThreadModel = "single";
143 CodeGenOpts.DebugTypeExtRefs = true;
144 CodeGenOpts.setDebugInfo(CodeGenOptions::FullDebugInfo);
157 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags));
246 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
253 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
ModuleBuilder.cpp 36 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
66 PreprocessorOpts(PPO), CodeGenOpts(CGO), HandlingTopLevelDecls(0),
103 PreprocessorOpts, CodeGenOpts,
106 for (size_t i = 0, e = CodeGenOpts.DependentLibraries.size(); i < e; ++i)
107 HandleDependentLibrary(CodeGenOpts.DependentLibraries[i]);
CodeGenAction.cpp 48 const CodeGenOptions &CodeGenOpts;
70 const PreprocessorOptions &PPOpts, const CodeGenOptions &CodeGenOpts,
76 : Diags(Diags), Action(Action), CodeGenOpts(CodeGenOpts),
80 CodeGenOpts, C, CoverageInfo)) {
191 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
487 if (CodeGenOpts.OptimizationRemarkPattern &&
488 CodeGenOpts.OptimizationRemarkPattern->match(D.getPassName()))
497 if (CodeGenOpts.OptimizationRemarkMissedPattern &&
498 CodeGenOpts.OptimizationRemarkMissedPattern->match(D.getPassName())
    [all...]
CodeGenTBAA.cpp 35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
90 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
291 if (!CodeGenOpts.StructPathTBAA)
CodeGenModule.cpp 87 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags),
134 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
135 TBAA = new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(),
140 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo ||
141 CodeGenOpts.EmitGcovArcs ||
142 CodeGenOpts.EmitGcovNotes)
150 if (!CodeGenOpts.InstrProfileInput.empty()) {
152 llvm::IndexedInstrProfReader::create(CodeGenOpts.InstrProfileInput);
156 getDiags().Report(DiagID) << CodeGenOpts.InstrProfileInpu
    [all...]
CodeGenTBAA.h 50 const CodeGenOptions &CodeGenOpts;
CGCall.cpp     [all...]
CodeGenModule.h 264 const CodeGenOptions &CodeGenOpts;
490 const CodeGenOptions &CodeGenOpts, llvm::Module &M,
600 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
CGVTables.cpp 743 assert((def || CodeGenOpts.OptimizationLevel > 0) &&
746 if (!def && CodeGenOpts.OptimizationLevel > 0)
    [all...]
TargetInfo.cpp     [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 109 CodeGenOptions CodeGenOpts;
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
179 return CodeGenOpts;
CompilerInstance.h 619 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
627 const CodeGenOptions *CodeGenOpts = nullptr);
  /frameworks/compile/slang/
slang.cpp 232 Slang::createBackend(const RSCCOptions &Opts, const clang::CodeGenOptions &CodeGenOpts,
236 CodeGenOpts, getTargetOptions(), &mPragmas, OS, OT,
260 CodeGenOpts.OptimizationLevel = 3;
268 CodeGenOpts.StackRealignment = 1;
418 mBackend.reset(createBackend(Opts, CodeGenOpts, &mOS->os(), mOT));
442 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::FullDebugInfo);
444 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::NoDebugInfo);
448 CodeGenOpts.OptimizationLevel = OptimizationLevel;
692 CodeGenOpts.MainFileName = mInputFileName;
slang_backend.h 156 const clang::CodeGenOptions &CodeGenOpts,
slang.h 92 clang::CodeGenOptions CodeGenOpts;
208 const clang::CodeGenOptions &CodeGenOpts,
slang_backend.cpp 211 const clang::CodeGenOptions &CodeGenOpts,
230 mCodeGenOpts(CodeGenOpts), mPragmas(Pragmas) {
  /external/clang/lib/Frontend/
CompilerInstance.cpp 143 const CodeGenOptions *CodeGenOpts,
166 if (CodeGenOpts)
167 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
198 const CodeGenOptions *CodeGenOpts) {
216 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
    [all...]

Completed in 585 milliseconds