| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | GCNILPSched.cpp | 148 int LDepth = left->getDepth(); in BUCompareLatency() 149 int RDepth = right->getDepth(); in BUCompareLatency() 169 int spread = (int)left->getDepth() - (int)right->getDepth(); in pickBest() 172 << left->getDepth() << " != SU(" << right->NodeNum in pickBest() 173 << "): " << right->getDepth() << "\n"); in pickBest() 174 return left->getDepth() < right->getDepth() ? right : left; in pickBest() 231 if (left->getDepth() != right->getDepth()) in pickBest() 232 return (left->getDepth() < right->getDepth()) ? right : left; in pickBest()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | ScoreboardHazardRecognizer.cpp | 138 if (StageCycle >= (int)RequiredScoreboard.getDepth()) { in getHazardType() 139 assert((StageCycle - Stalls) < (int)RequiredScoreboard.getDepth() && in getHazardType() 193 assert(((cycle + i) < RequiredScoreboard.getDepth()) && in EmitInstruction() 237 ReservedScoreboard[ReservedScoreboard.getDepth()-1] = 0; in RecedeCycle() 239 RequiredScoreboard[RequiredScoreboard.getDepth()-1] = 0; in RecedeCycle()
|
| H A D | ScheduleDAG.cpp | 249 if (NewDepth <= getDepth()) in setDepthToAtLeast() 331 unsigned MaxDepth = BestI->getSUnit()->getDepth(); in biasCriticalPath() 334 if (I->getKind() == SDep::Data && I->getSUnit()->getDepth() > MaxDepth) in biasCriticalPath() 351 dbgs() << " Depth : " << getDepth() << "\n"; in dumpAttributes() 407 (isBottomUp ? SUnit.getHeight() : SUnit.getDepth()) > in VerifyScheduledDAG()
|
| H A D | PostRASchedulerList.cpp | 499 assert(CurCycle >= SU->getDepth() && in ScheduleNodeTopDown() 552 if (PendingQueue[i]->getDepth() <= CurCycle) { in ListScheduleTopDown() 558 } else if (PendingQueue[i]->getDepth() < MinDepth) in ListScheduleTopDown() 559 MinDepth = PendingQueue[i]->getDepth(); in ListScheduleTopDown()
|
| H A D | CriticalAntiDepBreaker.cpp | 147 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency; in CriticalPathStep() 456 if (!Max || SU.getDepth() + SU.Latency > Max->getDepth() + Max->Latency) in BreakAntiDependencies() 464 << (Max->getDepth() + Max->Latency) << "\n"); in BreakAntiDependencies()
|
| H A D | MachineScheduler.cpp | 1581 if (LiveOutDepth > SU->getDepth()) in computeCyclicCriticalPath() 2755 if (SU->getDepth() > TopLatency) { in bumpNode() 2756 TopLatency = SU->getDepth(); in bumpNode() 3098 Latency = Cand.SU->getDepth(); in traceCandidate() 3107 Latency = Cand.SU->getDepth(); in traceCandidate() 3171 if (std::max(TryCand.SU->getDepth(), Cand.SU->getDepth()) > in tryLatency() 3173 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(), in tryLatency() 3190 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(), in tryLatency() 3342 if (SU->getDepth() > Rem.CriticalPath) in registerRoots() 3343 Rem.CriticalPath = SU->getDepth(); in registerRoots() [all …]
|
| H A D | VLIWMachineScheduler.cpp | 230 if (SU.getDepth() > maxD) in schedule() 231 maxD = SU.getDepth(); in schedule() 640 ResCount += (SU->getDepth() * ScaleTwo); in SchedulingCost() 645 dbgstr << "d" << std::setw(3) << SU->getDepth() << "|"; in SchedulingCost()
|
| H A D | MachineCombiner.cpp | 96 unsigned getDepth(SmallVectorImpl<MachineInstr *> &InsInstrs, 210 MachineCombiner::getDepth(SmallVectorImpl<MachineInstr *> &InsInstrs, in getDepth() function in MachineCombiner 379 getDepth(InsInstrs, InstrIdxForVirtReg, BlockTrace, *MBB); in improvesCriticalPathLen()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGVLIW.cpp | 124 SuccSU->setDepthToAtLeast(SU->getDepth() + D.getLatency()); in releaseSucc() 151 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!"); in scheduleNodeTopDown() 184 if (PendingQueue[i]->getDepth() == CurCycle) { in listScheduleTopDown() 192 assert(PendingQueue[i]->getDepth() > CurCycle && "Negative latency?"); in listScheduleTopDown()
|
| H A D | ScheduleDAGRRList.cpp | 2527 int LDepth = left->getDepth() - LPenalty; in BUCompareLatency() 2528 int RDepth = right->getDepth() - RPenalty; in BUCompareLatency() 2635 if (left->getDepth() != right->getDepth()) in BURRSort() 2636 return left->getDepth() < right->getDepth(); in BURRSort() 2796 int spread = (int)left->getDepth() - (int)right->getDepth(); in operator ()() 2799 << left->getDepth() << " != SU(" << right->NodeNum in operator ()() 2800 << "): " << right->getDepth() << "\n"); in operator ()() 2801 return left->getDepth() < right->getDepth(); in operator ()()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaInternal.h | 67 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex() 70 return std::make_pair(NTTP->getDepth(), NTTP->getIndex()); in getDepthAndIndex() 73 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex() 80 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | GenericCycleImpl.h | 420 while (A->getDepth() > B->getDepth()) 422 while (B->getDepth() > A->getDepth()) 445 return Cycle->getDepth(); in getCycleDepth()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | CommentToXML.cpp | 67 if (LHS->getDepth() > 1) in operator ()() 69 if (RHS->getDepth() > 1) in operator ()() 73 if (LHS->getDepth() == 1 && RHS->getDepth() == 1) in operator ()() 387 if (C->getDepth() == 1) in visitTParamCommandComment() 402 if (C->getDepth() == 1) in visitTParamCommandComment() 776 if (C->isPositionValid() && C->getDepth() == 1) { in visitTParamCommandComment()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | VLIWMachineScheduler.h | 180 MaxPath = std::max(MaxPath, isTop() ? SU.getHeight() : SU.getDepth()); in init() 206 unsigned PathLength = isTop() ? SU->getHeight() : SU->getDepth(); in isLatencyBound()
|
| H A D | ScoreboardHazardRecognizer.h | 58 size_t getDepth() const { return Depth; } in getDepth() function
|
| H A D | ScheduleDFS.h | 159 return ILPValue(DFSNodeData[SU->NodeNum].InstrCount, 1 + SU->getDepth()); in getILP()
|
| H A D | MachinePipeliner.h | 232 unsigned getDepth(SUnit *Node) { return Node->getDepth(); } in getDepth() function 391 MaxDepth = std::max(MaxDepth, SSD->getDepth(SU)); in computeNodeSetInfo()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | RegionPrinter.cpp | 99 << ((R.getDepth() * 2 % 12) + 1) << "\n"; in printRegionCluster() 104 << ((R.getDepth() * 2 % 12) + 2) << "\n"; in printRegionCluster()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LegacyPassManager.cpp | 570 PDepth = P->getResolver()->getPMDataManager().getDepth(); in setLastUser() 593 unsigned APDepth = AR->getPMDataManager().getDepth(); in setLastUser() 1048 unsigned PDepth = this->getDepth(); in add() 1056 RDepth = DM.getDepth(); in add() 1192 << std::string(getDepth() * 2 + 1, ' '); in dumpPassInfo() 1259 dbgs() << (const void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:"; in dumpAnalysisUsage() 1706 assert(PM->getDepth()==0 && "Pass Manager depth set too early"); in push() 1716 PM->setDepth(this->top()->getDepth()+1); in push()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | FrontendActions.cpp | 491 if (TTPT->getDepth() > 0) in printEntryName() 492 OS << "(at depth " << TTPT->getDepth() << ") "; in printEntryName() 502 if (Decl->getDepth() > 0) in printEntryName() 503 OS << "(at depth " << Decl->getDepth() << ") "; in printEntryName() 511 if (Decl->getDepth() > 0) in printEntryName() 512 OS << "(at depth " << Decl->getDepth() << ") "; in printEntryName()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | InterpState.h | 49 return Current ? (Current->getDepth() + 1) : 1; in getCallStackDepth()
|
| H A D | InterpFrame.h | 123 unsigned getDepth() const { return Depth; } in getDepth() function
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiate.cpp | 131 for (unsigned I = 0, N = TTP->getDepth() + 1; I != N; ++I) in HandleDefaultTempArgIntoTempTempParam() 1611 if (TTP->getDepth() < TemplateArgs.getNumLevels()) { in TransformDecl() 1616 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(), in TransformDecl() 1669 if (TTP->getDepth() < TemplateArgs.getNumLevels()) { in TransformFirstQualifierInScope() 1758 if (TTP->getDepth() < TemplateArgs.getNumLevels()) { in TransformTemplateName() 1763 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(), in TransformTemplateName() 1783 TemplateArgs.getAssociatedDecl(TTP->getDepth()); in TransformTemplateName() 1848 if (!TemplateArgs.hasTemplateArgument(NTTP->getDepth(), in TransformTemplateParmRefExpr() 2150 if (NTTP->getDepth() < TemplateArgs.getNumLevels()) in TransformDeclRefExpr() 2232 if (T->getDepth() < TemplateArgs.getNumLevels()) { in TransformTemplateTypeParmType() [all …]
|
| H A D | SemaTemplateVariadic.cpp | 49 if (FTD && FTD->getTemplateParameters()->getDepth() >= DepthLimit) in addUnexpanded() 58 if (T->getDepth() < DepthLimit) in addUnexpanded() 254 DepthLimit = TPL->getDepth(); in TraverseLambdaExpr() 697 Depth = TTP->getDepth(); in CheckParameterPacksForExpansion() 826 Depth = TTP->getDepth(); in getNumArgumentsInExpansion()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | RAIIObjectsForParser.h | 426 unsigned short &getDepth() { in getDepth() function 470 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()
|