Home
last modified time | relevance | path

Searched refs:getDepth (Results 1 – 25 of 77) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp148 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 DScoreboardHazardRecognizer.cpp138 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 DScheduleDAG.cpp249 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 DCriticalAntiDepBreaker.cpp147 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 DPostRASchedulerList.cpp499 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 DMachineScheduler.cpp1602 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 DVLIWMachineScheduler.cpp230 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 DMachineCombiner.cpp96 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 DScheduleDAGVLIW.cpp124 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 DScheduleDAGRRList.cpp2527 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 DSemaInternal.h63 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 DGenericCycleImpl.h435 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 DCommentToXML.cpp68 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 DVLIWMachineScheduler.h180 MaxPath = std::max(MaxPath, isTop() ? SU.getHeight() : SU.getDepth()); in init()
206 unsigned PathLength = isTop() ? SU->getHeight() : SU->getDepth(); in isLatencyBound()
H A DScoreboardHazardRecognizer.h58 size_t getDepth() const { return Depth; } in getDepth() function
H A DScheduleDFS.h159 return ILPValue(DFSNodeData[SU->NodeNum].InstrCount, 1 + SU->getDepth()); in getILP()
H A DMachinePipeliner.h237 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 DRegionPrinter.cpp99 << ((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 DLegacyPassManager.cpp568 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 DFrontendActions.cpp521 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 DSemaTemplateDeductionGuide.cpp489 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 DSemaTemplateInstantiate.cpp222 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 DSemaTemplateVariadic.cpp49 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 DInterpState.h52 return Current ? (Current->getDepth() + 1) : 1; in getCallStackDepth()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h426 unsigned short &getDepth() { in getDepth() function
470 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()

1234