Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h616 return LHS->getLevel() < RHS->getLevel(); in operator()
737 const unsigned NCDLevel = NCD->getLevel(); in InsertReachable()
749 if (NCDLevel + 1 >= To->getLevel()) in InsertReachable()
762 const unsigned CurrentLevel = TN->getLevel(); in InsertReachable()
781 const unsigned SuccLevel = SuccTN->getLevel(); in InsertReachable()
838 assert(TN->getLevel() == TN->getIDom()->getLevel() + 1 && in UpdateInsertion()
973 const unsigned Level = ToIDomTN->getLevel(); in DeleteReachable()
975 return DT.getNode(To)->getLevel() > Level; in DeleteReachable()
1034 const unsigned Level = ToTN->getLevel(); in DeleteUnreachable()
1041 if (TN->getLevel() > Level) return true; in DeleteUnreachable()
[all …]
H A DCodeGen.h65 inline std::optional<CodeGenOptLevel> getLevel(int OL) { in getLevel() function
76 return getLevel(static_cast<int>(C - '0')); in parseLevel()
H A DGenericDomTree.h91 unsigned getLevel() const { return Level; }
181 << Node->getLevel() << "]\n";
449 if (A->getLevel() >= B->getLevel()) return false;
504 if (NodeA->getLevel() < NodeB->getLevel()) std::swap(NodeA, NodeB);
906 const unsigned ALevel = A->getLevel();
911 while ((IDom = B->getIDom()) != nullptr && IDom->getLevel() >= ALevel)
H A DGenericIteratedDominanceFrontier.h153 PQ.push({Node, std::make_pair(Node->getLevel(), Node->getDFSNumIn())}); in calculate()
179 const unsigned SuccLevel = SuccNode->getLevel(); in calculate()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVObject.cpp91 setLevel(Scope->getLevel() + 1); in setParent()
95 setLevel(Symbol->getLevel() + 1); in setParent()
121 Object.setLevel(Parent->getLevel() + 1); in printAttributes()
152 Stream << "[" << std::setfill('0') << std::setw(3) << getLevel() << "]"; in printAttributes()
H A DLVRange.cpp31 dbgs() << "Scope: " << format_decimal(Scope->getLevel(), 5) << " " in startSearch()
96 Level = Scope->getLevel(); in getEntry()
H A DLVLine.cpp103 << "Level = " << getLevel() << ", " in findIn()
108 << "Level = " << Target->getLevel() << ", " in findIn()
H A DLVScope.cpp349 setLevel(Parent->getLevel() + 1); in addMissingElements()
627 getLevel() < options().getOutputLevel()) { in doPrint()
835 << "Level = " << getLevel() << ", " in findIn()
841 << "Level = " << Candidate->getLevel() << ", " in findIn()
901 << "Level = " << Reference->getLevel() << ", " in markMissingParents()
907 << "Level = " << Target->getLevel() << ", " in markMissingParents()
1389 indentAsString(getLevel() + 1).length() + 3;
1541 LVLevel Level = Scope->getLevel(); in printScopeSize()
1558 if (Scope->getLevel() < options().getOutputLevel())
1562 if (Scope->getLevel() < option in printSizes()
[all...]
H A DLVElement.cpp268 setLevel(Parent->getLevel() + 1); in updateLevel()
504 (getLevel() != Element->getLevel())) in equals()
H A DLVSymbol.cpp315 << "Level = " << getLevel() << ", " in findIn()
320 << "Level = " << Target->getLevel() << ", " in findIn()
H A DLVType.cpp207 << "Level = " << getLevel() << ", " in findIn()
212 << "Level = " << Target->getLevel() << ", " in findIn()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
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/contrib/llvm-project/clang/lib/AST/
H A DAttrImpl.cpp160 if (Level <= Attr->getLevel()) { in getActiveAttr()
161 Level = Attr->getLevel(); in getActiveAttr()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticIDs.cpp375 DiagnosticIDs::Level getLevel(unsigned DiagID) const { in getLevel() function in clang::diag::CustomDiagInfo
495 return CustomDiagInfo->getLevel(DiagID); in getDiagnosticLevel()
849 return CustomDiagInfo->getLevel(DiagID) >= DiagnosticIDs::Error; in isUnrecoverable()
H A DDiagnostic.cpp516 Level DiagLevel = storedDiag.getLevel(); in Report()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBreadthFirstIterator.h144 unsigned getLevel() const { return Level; } in getLevel() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp104 return DA->getLevel() < DB->getLevel(); in domTreeLevelBefore()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp146 Ret = std::max(Ret, TN->getLevel()); in getMaxDominatorTreeDepth()
/freebsd/contrib/llvm-project/lld/COFF/
H A DLTO.cpp80 std::optional<CodeGenOptLevel> optLevelOrNone = CodeGenOpt::getLevel( in createConfig()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVObject.h242 LVLevel getLevel() const { return ScopeLevel; } in getLevel() function
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp143 emitDiagnostic(Diag.getLocation(), Diag.getLevel(), Diag.getMessage(), in emitStoredDiagnostic()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp203 CodeGenOpt::getLevel(Config.OptLevel); in setOptLevel()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp565 CodeGenOpt::getLevel(CodeGenOpts.OptimizationLevel); in CreateTargetMachine()
1227 CodeGenOpt::getLevel(CGOpts.OptimizationLevel); in runThinLTOBackend()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFuse.cpp435 return LNode->getLevel() > RNode->getLevel(); in operator ()()

12