HomeSort by: relevance | last modified time | path
    Searched defs:StopAfter (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
DebugCounter.h 85 // and the StopAfter + Skip is larger than Count.
91 if (CounterInfo.StopAfter < 0)
93 return CounterInfo.StopAfter + CounterInfo.Skip >= CounterInfo.Count;
172 int64_t StopAfter = -1;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetPassConfig.h 90 AnalysisID StopAfter = nullptr;
109 /// Set the StartAfter, StartBefore and StopAfter passes to allow running only
457 /// determined by the StartAfter and StopAfter options. Takes ownership of the
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetPassConfig.cpp 419 StopAfter = getPassIDFromName(StopAfterName);
423 if (StopBefore && StopAfter)
468 StringRef StopAfter;
481 std::tie(StopAfter, StopAfterInstanceNum) =
485 StopAfter.empty())
494 std::tie(StopAfter, std::ignore) =
495 LLVMTM.getPassNameFromLegacyName(StopAfter);
499 if (!StopBefore.empty() && !StopAfter.empty())
511 bool StopAfterPass = !StopAfter.empty() && P.contains(StopAfter);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 6391 unsigned StopAfter = getContext().getLangOpts().TrivialAutoVarInitStopAfter;
6392 if (StopAfter) {
6395 if (NumAutoVarInit >= StopAfter) {
6404 << StopAfter

Completed in 30 milliseconds