/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericDomTreeConstruction.h | 616 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 D | CodeGen.h | 65 inline std::optional<CodeGenOptLevel> getLevel(int OL) { in getLevel() function 76 return getLevel(static_cast<int>(C - '0')); in parseLevel()
|
H A D | GenericDomTree.h | 91 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 D | GenericIteratedDominanceFrontier.h | 153 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 D | LVObject.cpp | 91 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 D | LVRange.cpp | 31 dbgs() << "Scope: " << format_decimal(Scope->getLevel(), 5) << " " in startSearch() 96 Level = Scope->getLevel(); in getEntry()
|
H A D | LVLine.cpp | 103 << "Level = " << getLevel() << ", " in findIn() 108 << "Level = " << Target->getLevel() << ", " in findIn()
|
H A D | LVScope.cpp | 349 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 D | LVElement.cpp | 268 setLevel(Parent->getLevel() + 1); in updateLevel() 504 (getLevel() != Element->getLevel())) in equals()
|
H A D | LVSymbol.cpp | 315 << "Level = " << getLevel() << ", " in findIn() 320 << "Level = " << Target->getLevel() << ", " in findIn()
|
H A D | LVType.cpp | 207 << "Level = " << getLevel() << ", " in findIn() 212 << "Level = " << Target->getLevel() << ", " in findIn()
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | TransProtectedScope.cpp | 137 for (; DiagI != DiagE && DiagI->getLevel() == DiagnosticsEngine::Note; in handleProtectedScopeError() 148 assert(Diag.getLevel() == DiagnosticsEngine::Note); in handleProtectedNote()
|
H A D | ARCMT.cpp | 45 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 D | AttrImpl.cpp | 160 if (Level <= Attr->getLevel()) { in getActiveAttr() 161 Level = Attr->getLevel(); in getActiveAttr()
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | DiagnosticIDs.cpp | 375 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 D | Diagnostic.cpp | 516 Level DiagLevel = storedDiag.getLevel(); in Report()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | BreadthFirstIterator.h | 144 unsigned getLevel() const { return Level; } in getLevel() function
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | CodeMoverUtils.cpp | 104 return DA->getLevel() < DB->getLevel(); in domTreeLevelBefore()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InlineSizeEstimatorAnalysis.cpp | 146 Ret = std::max(Ret, TN->getLevel()); in getMaxDominatorTreeDepth()
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | LTO.cpp | 80 std::optional<CodeGenOptLevel> optLevelOrNone = CodeGenOpt::getLevel( in createConfig()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVObject.h | 242 LVLevel getLevel() const { return ScopeLevel; } in getLevel() function
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | DiagnosticRenderer.cpp | 143 emitDiagnostic(Diag.getLocation(), Diag.getLevel(), Diag.getMessage(), in emitStoredDiagnostic()
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTOCodeGenerator.cpp | 203 CodeGenOpt::getLevel(Config.OptLevel); in setOptLevel()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | BackendUtil.cpp | 565 CodeGenOpt::getLevel(CodeGenOpts.OptimizationLevel); in CreateTargetMachine() 1227 CodeGenOpt::getLevel(CGOpts.OptimizationLevel); in runThinLTOBackend()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopFuse.cpp | 435 return LNode->getLevel() > RNode->getLevel(); in operator ()()
|