Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h295 if (TN && TN->getLevel() < MinLevel)
634 return LHS->getLevel() < RHS->getLevel(); in operator()
755 const unsigned NCDLevel = NCD->getLevel(); in InsertReachable()
767 if (NCDLevel + 1 >= To->getLevel()) in InsertReachable()
780 const unsigned CurrentLevel = TN->getLevel(); in InsertReachable()
799 const unsigned SuccLevel = SuccTN->getLevel(); in InsertReachable()
856 assert(TN->getLevel() == TN->getIDom()->getLevel() + 1 && in UpdateInsertion()
991 const unsigned Level = ToIDomTN->getLevel(); in DeleteReachable()
993 return DT.getNode(To)->getLevel() > Level; in DeleteReachable()
1052 const unsigned Level = ToTN->getLevel(); in DeleteUnreachable()
[all …]
H A DCodeGen.h66 inline std::optional<Level> getLevel(IDType ID) { in getLevel() function
77 return getLevel(static_cast<IDType>(C - '0')); in parseLevel()
H A DGenericDomTree.h91 unsigned getLevel() const { return Level; }
181 << Node->getLevel() << "]\n";
451 if (A->getLevel() >= B->getLevel()) return false;
506 if (NodeA->getLevel() < NodeB->getLevel()) std::swap(NodeA, NodeB);
909 const unsigned ALevel = A->getLevel();
914 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()
/openbsd-src/gnu/llvm/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 DLVElement.cpp232 setLevel(Parent->getLevel() + 1); in updateLevel()
468 (getLevel() != Element->getLevel())) in equals()
H A DLVScope.cpp366 setLevel(Parent->getLevel() + 1); in updateLevel()
640 getLevel() < options().getOutputLevel()) { in doPrint()
848 << "Level = " << getLevel() << ", " in findIn()
854 << "Level = " << Candidate->getLevel() << ", " in findIn()
914 << "Level = " << Reference->getLevel() << ", " in markMissingParents()
920 << "Level = " << Target->getLevel() << ", " in markMissingParents()
1404 indentAsString(getLevel() + 1).length() + 3; in printLocalNames()
1556 LVLevel Level = Scope->getLevel(); in printScopeSize()
1573 if (Scope->getLevel() < options().getOutputLevel()) in printSizes()
1577 if (Scope->getLevel() < options().getOutputLevel()) { in printSizes()
H A DLVSymbol.cpp317 << "Level = " << getLevel() << ", " in findIn()
322 << "Level = " << Target->getLevel() << ", " in findIn()
H A DLVType.cpp207 << "Level = " << getLevel() << ", " in findIn()
212 << "Level = " << Target->getLevel() << ", " in findIn()
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DPlistReporter.cpp86 if (D.getLevel() == DiagnosticsEngine::Ignored) in writeARCDiagsToPlist()
98 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()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DAttrImpl.cpp159 if (Level <= Attr->getLevel()) { in getActiveAttr()
160 Level = Attr->getLevel(); in getActiveAttr()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp27 switch (Diag.getLevel()) { in getSeverity()
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DDiagnosticIDs.cpp377 DiagnosticIDs::Level getLevel(unsigned DiagID) const { in getLevel() function in clang::diag::CustomDiagInfo
497 return CustomDiagInfo->getLevel(DiagID); in getDiagnosticLevel()
851 return CustomDiagInfo->getLevel(DiagID) >= DiagnosticIDs::Error; in isUnrecoverable()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DBreadthFirstIterator.h144 unsigned getLevel() const { return Level; } in getLevel() function
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp104 return DA->getLevel() < DB->getLevel(); in domTreeLevelBefore()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp147 Ret = std::max(Ret, TN->getLevel()); in getMaxDominatorTreeDepth()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVObject.h258 LVLevel getLevel() const { return ScopeLevel; } in getLevel() function
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DBackendUtil.cpp568 CodeGenOpt::getLevel(CodeGenOpts.OptimizationLevel); in CreateTargetMachine()
1153 CodeGenOpt::getLevel(CGOpts.OptimizationLevel); in runThinLTOBackend()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp143 emitDiagnostic(Diag.getLocation(), Diag.getLevel(), Diag.getMessage(), in emitStoredDiagnostic()
/openbsd-src/gnu/llvm/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp204 CodeGenOpt::getLevel(Config.OptLevel); in setOptLevel()
/openbsd-src/gnu/llvm/llvm/tools/lto/
H A Dlto.cpp532 CodeGenOpt::getLevel(OptLevel - '0'); in thinlto_create_codegen()

12