Home
last modified time | relevance | path

Searched refs:getLevel (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h319 if (TN && TN->getLevel() < MinLevel)
751 const unsigned ToLevel = To->getLevel(); in InsertReachable()
778 const unsigned NCDLevel = NCD->getLevel(); in VisitInsertion()
992 const unsigned Level = ToIDomTN->getLevel(); in DeleteReachable()
994 return DT.getNode(To)->getLevel() > Level; in DeleteReachable()
1054 const unsigned Level = ToTN->getLevel(); in DeleteUnreachable()
1061 if (TN->getLevel() > Level) return true; in DeleteUnreachable()
1087 if (NCD != TN && NCD->getLevel() < MinNode->getLevel()) MinNode = NCD; in DeleteUnreachable()
1335 if (!IDom && TN->getLevel() != 0) { in VerifyLevels()
1343 if (IDom && TN->getLevel() != IDom->getLevel() + 1) { in VerifyLevels()
[all …]
H A DGenericDomTree.h84 unsigned getLevel() const { return Level; }
175 << Node->getLevel() << "]\n";
413 if (A->getLevel() >= B->getLevel()) return false;
467 if (NodeA->getLevel() < NodeB->getLevel()) std::swap(NodeA, NodeB);
836 const unsigned ALevel = A->getLevel();
841 while ((IDom = B->getIDom()) != nullptr && IDom->getLevel() >= ALevel)
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DIteratedDominanceFrontier.cpp38 PQ.push({Node, std::make_pair(Node->getLevel(), Node->getDFSNumIn())}); in calculate()
73 const unsigned SuccLevel = SuccNode->getLevel(); in calculate()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DPlistReporter.cpp87 if (D.getLevel() == DiagnosticsEngine::Ignored) in writeARCDiagsToPlist()
99 EmitString(o, getLevelName(D.getLevel())) << '\n'; in writeARCDiagsToPlist()
H A DTransProtectedScope.cpp137 for (; DiagI != DiagE && DiagI->getLevel() == DiagnosticsEngine::Note; in handleProtectedScopeError()
148 assert(Diag.getLevel() == DiagnosticsEngine::Note); in handleProtectedNote()
H A DARCMT.cpp45 if (eraseS->getLevel() != DiagnosticsEngine::Note) in clearDiagnostic()
46 while (I != List.end() && I->getLevel() == DiagnosticsEngine::Note) in clearDiagnostic()
88 if (I->getLevel() >= DiagnosticsEngine::Error) in hasErrors()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp285 DiagnosticIDs::Level getLevel(unsigned DiagID) const { in getLevel() function in clang::diag::CustomDiagInfo
407 return CustomDiagInfo->getLevel(DiagID); in getDiagnosticLevel()
723 return CustomDiagInfo->getLevel(DiagID) >= DiagnosticIDs::Error; in isUnrecoverable()
H A DDiagnostic.cpp488 Level DiagLevel = storedDiag.getLevel(); in Report()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DBreadthFirstIterator.h144 unsigned getLevel() const { return Level; } in getLevel() function
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp145 emitDiagnostic(Diag.getLocation(), Diag.getLevel(), Diag.getMessage(), in emitStoredDiagnostic()
H A DASTUnit.cpp1240 OutDiag.Level = InDiag.getLevel(); in makeStandaloneDiagnostic()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnostic.h1459 DiagnosticsEngine::Level getLevel() const { return Level; } in getLevel() function