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

  /external/clang/lib/CodeGen/
BackendUtil.cpp 57 const CodeGenOptions &CodeGenOpts;
127 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
136 if (CodeGenOpts.DisableFree)
281 const CodeGenOptions &CodeGenOpts) {
283 if (!CodeGenOpts.SimplifyLibCalls)
288 for (auto &FuncName : CodeGenOpts.getNoBuiltinFuncs())
293 switch (CodeGenOpts.getVecLib()) {
315 if (CodeGenOpts.DisableLLVMPasses)
318 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
319 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.getInlining()
    [all...]
ObjectFilePCHContainerOperations.cpp 52 CodeGenOptions CodeGenOpts;
152 CodeGenOpts.CodeModel = "default";
153 CodeGenOpts.ThreadModel = "single";
154 CodeGenOpts.DebugTypeExtRefs = true;
155 CodeGenOpts.setDebugInfo(codegenoptions::FullDebugInfo);
156 CodeGenOpts.setDebuggerTuning(CI.getCodeGenOpts().getDebuggerTuning());
169 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags));
285 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
292 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
ModuleBuilder.cpp 38 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
76 PreprocessorOpts(PPO), CodeGenOpts(CGO), HandlingTopLevelDecls(0),
124 PreprocessorOpts, CodeGenOpts,
127 for (auto &&Lib : CodeGenOpts.DependentLibraries)
129 for (auto &&Opt : CodeGenOpts.LinkerOptions)
CodeGenAction.cpp 46 const CodeGenOptions &CodeGenOpts;
67 const PreprocessorOptions &PPOpts, const CodeGenOptions &CodeGenOpts,
73 : Diags(Diags), Action(Action), CodeGenOpts(CodeGenOpts),
77 CodeGenOpts, C, CoverageInfo)) {
176 EmbedBitcode(getModule(), CodeGenOpts, llvm::MemoryBufferRef());
178 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
516 if (CodeGenOpts.OptimizationRemarkPattern &&
517 CodeGenOpts.OptimizationRemarkPattern->match(D.getPassName()))
526 if (CodeGenOpts.OptimizationRemarkMissedPattern &
    [all...]
CodeGenTBAA.cpp 35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
94 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
295 if (!CodeGenOpts.StructPathTBAA)
CodeGenModule.cpp 88 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags),
126 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
127 TBAA.reset(new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(),
132 if (CodeGenOpts.getDebugInfo() != codegenoptions::NoDebugInfo ||
133 CodeGenOpts.EmitGcovArcs || CodeGenOpts.EmitGcovNotes)
141 if (CodeGenOpts.hasProfileClangUse()) {
143 CodeGenOpts.ProfileInstrumentUsePath);
148 getDiags().Report(DiagID) << CodeGenOpts.ProfileInstrumentUsePat
    [all...]
CodeGenTBAA.h 47 const CodeGenOptions &CodeGenOpts;
CGCall.cpp     [all...]
CodeGenModule.h 269 const CodeGenOptions &CodeGenOpts;
496 const CodeGenOptions &CodeGenOpts, llvm::Module &M,
606 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
CGVTables.cpp 744 assert((def || CodeGenOpts.OptimizationLevel > 0) &&
747 if (!def && CodeGenOpts.OptimizationLevel > 0)
    [all...]
CodeGenFunction.cpp 715 const CodeGenOptions& CodeGenOpts = CGM.getCodeGenOpts();
716 if (!CodeGenOpts.NoInline) {
722 if (CodeGenOpts.getInlining() == CodeGenOptions::OnlyHintInlining &&
    [all...]
TargetInfo.cpp     [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 110 CodeGenOptions CodeGenOpts;
181 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
183 return CodeGenOpts;
CompilerInstance.h 619 /// \param CodeGenOpts If non-NULL, the code gen options in use, which may be
627 const CodeGenOptions *CodeGenOpts = nullptr);
  /external/clang/lib/Frontend/
CompilerInstance.cpp 145 const CodeGenOptions *CodeGenOpts,
168 if (CodeGenOpts)
169 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
200 const CodeGenOptions *CodeGenOpts) {
218 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
    [all...]

Completed in 717 milliseconds