/freebsd/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() 230 if (left->getDepth() != right->getDepth()) in pickBest() 231 return (left->getDepth() < right->getDepth()) ? right : left; in pickBest()
|
/freebsd/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() 335 MaxDepth = I->getSUnit()->getDepth(); in biasCriticalPath() 353 dbgs() << " Depth : " << getDepth() << "\n"; in dumpAttributes() 409 (isBottomUp ? SUnit.getHeight() : SUnit.getDepth()) > in VerifyScheduledDAG()
|
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 | 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 | MachineScheduler.cpp | 1602 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency; in computeCyclicCriticalPath() 1619 if (LiveOutDepth > SU->getDepth()) in computeCyclicCriticalPath() 1620 CyclicLatency = LiveOutDepth - SU->getDepth(); in computeCyclicCriticalPath() 2796 if (SU->getDepth() > TopLatency) { in bumpNode() 2797 TopLatency = SU->getDepth(); in bumpNode() 3139 Latency = Cand.SU->getDepth(); in traceCandidate() 3148 Latency = Cand.SU->getDepth(); in traceCandidate() 3212 if (std::max(TryCand.SU->getDepth(), Cand.SU->getDepth()) > in tryLatency() 3214 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(), in tryLatency() 3231 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(), in tryLatency() [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, 207 MachineCombiner::getDepth(SmallVectorImpl<MachineInstr *> &InsInstrs, in getDepth() function in MachineCombiner 363 getDepth(InsInstrs, InstrIdxForVirtReg, BlockTrace, *MBB); in improvesCriticalPathLen()
|
/freebsd/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/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaInternal.h | 63 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex() 66 return std::make_pair(NTTP->getDepth(), NTTP->getIndex()); in getDepthAndIndex() 69 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex() 76 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | GenericCycleImpl.h | 435 while (A->getDepth() > B->getDepth()) 437 while (B->getDepth() > A->getDepth()) 460 return Cycle->getDepth(); in getCycleDepth()
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | CommentToXML.cpp | 68 if (LHS->getDepth() > 1) in operator ()() 70 if (RHS->getDepth() > 1) in operator ()() 74 if (LHS->getDepth() == 1 && RHS->getDepth() == 1) in operator ()() 388 if (C->getDepth() == 1) in visitTParamCommandComment() 403 if (C->getDepth() == 1) in visitTParamCommandComment() 789 if (C->isPositionValid() && C->getDepth() == 1) { in visitTParamCommandComment()
|
/freebsd/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 | 237 unsigned getDepth(SUnit *Node) { return Node->getDepth(); } in getDepth() function 396 MaxDepth = std::max(MaxDepth, SSD->getDepth(SU)); in computeNodeSetInfo()
|
/freebsd/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/contrib/llvm-project/llvm/lib/IR/ |
H A D | LegacyPassManager.cpp | 568 PDepth = P->getResolver()->getPMDataManager().getDepth(); in setLastUser() 591 unsigned APDepth = AR->getPMDataManager().getDepth(); in setLastUser() 1045 unsigned PDepth = this->getDepth(); in add() 1053 RDepth = DM.getDepth(); in add() 1189 << std::string(getDepth() * 2 + 1, ' '); in dumpPassInfo() 1256 dbgs() << (const void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:"; in dumpAnalysisUsage() 1703 assert(PM->getDepth()==0 && "Pass Manager depth set too early"); in push() 1713 PM->setDepth(this->top()->getDepth()+1); in push()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | FrontendActions.cpp | 521 if (TTPT->getDepth() > 0) in printEntryName() 522 OS << "(at depth " << TTPT->getDepth() << ") "; in printEntryName() 532 if (Decl->getDepth() > 0) in printEntryName() 533 OS << "(at depth " << Decl->getDepth() << ") "; in printEntryName() 541 if (Decl->getDepth() > 0) in printEntryName() 542 OS << "(at depth " << Decl->getDepth() << ") "; in printEntryName()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateDeductionGuide.cpp | 489 SemaRef, DC, TTP, Args, TTP->getDepth() - 1, in transformTemplateParameter() 494 TTP->getDepth() - 1); in transformTemplateParameter() 498 NTTP->getDepth() - 1); in transformTemplateParameter() 639 return TTP->getDepth(); in getTemplateParameterDepth() 641 return TTP->getDepth(); in getTemplateParameterDepth() 643 return NTTP->getDepth(); in getTemplateParameterDepth() 675 Mark(TTP->getDepth(), TTP->getIndex()); in TemplateParamsReferencedInTemplateArgumentList()
|
H A D | SemaTemplateInstantiate.cpp | 222 for (unsigned I = 0, N = TTP->getDepth() + 1; I != N; ++I) in HandleDefaultTempArgIntoTempTempParam() 1815 if (TTP->getDepth() < TemplateArgs.getNumLevels()) { in TransformDecl() 1820 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(), in TransformDecl() 1824 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition()); in TransformDecl() 1873 if (TTP->getDepth() < TemplateArgs.getNumLevels()) { in TransformFirstQualifierInScope() 1875 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getIndex()); in TransformFirstQualifierInScope() 1962 if (TTP->getDepth() < TemplateArgs.getNumLevels()) { in TransformTemplateName() 1967 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(), in TransformTemplateName() 1971 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition()); in TransformTemplateName() 1987 TemplateArgs.getAssociatedDecl(TTP->getDepth()); in TransformTemplateName() [all …]
|
H A D | SemaTemplateVariadic.cpp | 49 if (FTD && FTD->getTemplateParameters()->getDepth() >= DepthLimit) in addUnexpanded() 58 if (T->getDepth() < DepthLimit) in addUnexpanded() 266 DepthLimit = TPL->getDepth(); in TraverseLambdaExpr() 713 Depth = TTP->getDepth(); in CheckParameterPacksForExpansion() 842 Depth = TTP->getDepth(); in getNumArgumentsInExpansion()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | InterpState.h | 52 return Current ? (Current->getDepth() + 1) : 1; in getCallStackDepth()
|
/freebsd/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()
|