Home
last modified time | relevance | path

Searched refs:getHeight (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp110 unsigned Height = Succ.getSUnit()->getHeight(); in closestSucc()
135 int LHeight = (int)left->getHeight(); in BUCompareLatency()
136 int RHeight = (int)right->getHeight(); in BUCompareLatency()
179 if (!DisableSchedHeight && left->getHeight() != right->getHeight()) { in pickBest()
180 int spread = (int)left->getHeight() - (int)right->getHeight(); in pickBest()
182 return left->getHeight() > right->getHeight() ? right : left; in pickBest()
227 if (left->getHeight() != right->getHeight()) in pickBest()
228 return (left->getHeight() > right->getHeight()) ? right : left; in pickBest()
257 if (C.SU->getHeight() <= CurCycle) { in releasePending()
280 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge.getLatency()); in releasePredecessors()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.h80 if (lhs->getHeight() > rhs->getHeight()) in operator()
82 else if (lhs->getHeight() < rhs->getHeight()) in operator()
H A DSystemZMachineScheduler.cpp188 dbgs() << " Height:" << c.SU->getHeight(); dbgs() << "\n";); in pickNode()
229 if (SU->getHeight() > other.SU->getHeight()) in operator <()
231 if (SU->getHeight() < other.SU->getHeight()) in operator <()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h69 unsigned getHeight() const { return height; } in getHeight() function
185 assert(getHeight() == ( HL > HR ? HL : HR ) + 1 in validateTree()
201 return getHeight(); in validateTree()
420 unsigned getHeight(TreeTy* T) const { return T ? T->getHeight() : 0; }
429 unsigned hl = getHeight(L);
430 unsigned hr = getHeight(R);
487 unsigned hl = getHeight(L);
488 unsigned hr = getHeight(R);
496 if (getHeight(LL) >= getHeight(LR))
513 if (getHeight(RR) >= getHeight(RL))
[all …]
H A DImmutableMap.h189 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } in getHeight() function
319 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } in getHeight() function
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp416 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency()); in ReleasePred()
424 unsigned Height = PredSU->getHeight(); in ReleasePred()
614 unsigned ReadyCycle = PendingQueue[i]->getHeight(); in ReleasePending()
664 unsigned ReadyCycle = SU->getHeight(); in AdvancePastStalls()
743 if (CurCycle < SU->getHeight()) in ScheduleNodeBottomUp()
744 LLVM_DEBUG(dbgs() << " Height [" << SU->getHeight() in ScheduleNodeBottomUp()
838 LLVM_DEBUG(dbgs() << "*** Unscheduling [" << SU->getHeight() << "]: "); in UnscheduleNodeBottomUp()
904 Succ2.getSUnit()->getHeight() < LiveRegGens[Reg]->getHeight()) in UnscheduleNodeBottomUp()
910 if (SU->getHeight() < MinAvailableCycle) in UnscheduleNodeBottomUp()
911 MinAvailableCycle = SU->getHeight(); in UnscheduleNodeBottomUp()
[all …]
H A DResourcePriorityQueue.cpp405 ResCount += (SU->getHeight() * ScaleTwo); in SUSchedulingCost()
419 ResCount += (SU->getHeight() * ScaleTwo); in SUSchedulingCost()
H A DScheduleDAGFast.cpp181 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!"); in ScheduleNodeBottomUp()
190 if (LiveRegCycles[Succ.getReg()] == Succ.getSUnit()->getHeight()) { in ScheduleNodeBottomUp()
/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 DLatencyPriorityQueue.h70 return (*SUnits)[NodeNum].getHeight(); in getLatency()
H A DResourcePriorityQueue.h95 return (*SUnits)[NodeNum].getHeight(); in getLatency()
H A DMachinePipeliner.h246 unsigned getHeight(SUnit *Node) { return Node->getHeight(); } in getHeight() function
H A DScheduleDAG.h424 unsigned getHeight() const { in getHeight() function
H A DMachineScheduler.h977 return isTop() ? SU->getHeight() : SU->getDepth(); in getUnscheduledLatency()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAG.cpp257 if (NewHeight <= getHeight()) in setHeightToAtLeast()
354 dbgs() << " Height : " << getHeight() << "\n"; in dumpAttributes()
409 (isBottomUp ? SUnit.getHeight() : SUnit.getDepth()) > in VerifyScheduledDAG()
H A DVLIWMachineScheduler.cpp223 if (SU.getHeight() > maxH) in schedule()
224 maxH = SU.getHeight(); in schedule()
620 ResCount += (SU->getHeight() * ScaleTwo); in SchedulingCost()
625 dbgstr << "h" << std::setw(3) << SU->getHeight() << "|"; in SchedulingCost()
H A DMachineScheduler.cpp1601 unsigned LiveOutHeight = DefSU->getHeight(); in computeCyclicCriticalPath()
1622 unsigned LiveInHeight = SU->getHeight() + DefSU->Latency; in computeCyclicCriticalPath()
2801 if (SU->getHeight() > BotLatency) { in bumpNode()
2802 BotLatency = SU->getHeight(); in bumpNode()
3142 Latency = Cand.SU->getHeight(); in traceCandidate()
3145 Latency = Cand.SU->getHeight(); in traceCandidate()
3218 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(), in tryLatency()
3225 if (std::max(TryCand.SU->getHeight(), Cand.SU->getHeight()) > in tryLatency()
3227 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(), in tryLatency()
H A DMachinePipeliner.cpp1938 dbgs() << "\t H = " << getHeight(&SUnits[i]) << "\n"; in computeNodeFunctions()
2342 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder()
2344 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
2347 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.h157 int getHeight(SDNode *N);
H A DHexagonISelDAGToDAG.cpp1792 int HexagonDAGToDAGISel::getHeight(SDNode *N) { in getHeight() function in HexagonDAGToDAGISel
2078 RootHeights[N] = std::max(getHeight(N->getOperand(0).getNode()), in balanceSubTree()
2079 getHeight(N->getOperand(1).getNode())) + 1; in balanceSubTree()
2170 NodeHeights[Child] = getHeight(Child.getNode()); in balanceSubTree()
2262 NodeHeights[GA.Value] = getHeight(GA.Value.getNode()); in balanceSubTree()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp2346 if (Members.getHeight() >= OtherMembers.getHeight()) { in merge()