Searched refs:getHeight (Results 1 - 20 of 20) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp111 unsigned Height = Succ.getSUnit()->getHeight();
136 int LHeight = (int)left->getHeight();
137 int RHeight = (int)right->getHeight();
180 if (!DisableSchedHeight && left->getHeight() != right->getHeight()) {
181 int spread = (int)left->getHeight() - (int)right->getHeight();
183 return left->getHeight() > right->getHeight() ? right : left;
229 if (left->getHeight() !
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.h80 if (lhs->getHeight() > rhs->getHeight())
82 else if (lhs->getHeight() < rhs->getHeight())
H A DSystemZMachineScheduler.cpp188 dbgs() << " Height:" << c.SU->getHeight(); dbgs() << "\n";);
229 if (SU->getHeight() > other.SU->getHeight())
231 if (SU->getHeight() < other.SU->getHeight())
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h66 /// getHeight - Returns the height of the tree. A tree with no subtrees
68 unsigned getHeight() const { return height; } function in class:llvm::ImutAVLTree
198 assert(getHeight() == ( HL > HR ? HL : HR ) + 1
214 return getHeight();
433 unsigned getHeight(TreeTy* T) const { return T ? T->getHeight() : 0; } function in class:llvm::ImutAVLFactory
442 unsigned hl = getHeight(L);
443 unsigned hr = getHeight(R);
500 unsigned hl = getHeight(L);
501 unsigned hr = getHeight(
1079 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableSet
1167 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableSetRef
[all...]
H A DImmutableMap.h225 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableMap
355 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableMapRef
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLatencyPriorityQueue.h70 return (*SUnits)[NodeNum].getHeight();
H A DResourcePriorityQueue.h95 return (*SUnits)[NodeNum].getHeight();
H A DMachinePipeliner.h238 unsigned getHeight(SUnit *Node) { return Node->getHeight(); } function in class:llvm::SwingSchedulerDAG
H A DMachineScheduler.h719 return isTop() ? SU->getHeight() : SU->getDepth();
H A DScheduleDAG.h406 unsigned getHeight() const { function
427 /// will require recomputation the next time getHeight() is called.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp414 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
422 unsigned Height = PredSU->getHeight();
612 unsigned ReadyCycle = PendingQueue[i]->getHeight();
662 unsigned ReadyCycle = SU->getHeight();
741 if (CurCycle < SU->getHeight())
742 LLVM_DEBUG(dbgs() << " Height [" << SU->getHeight()
836 LLVM_DEBUG(dbgs() << "*** Unscheduling [" << SU->getHeight() << "]: ");
902 Succ2.getSUnit()->getHeight() < LiveRegGens[Reg]->getHeight())
908 if (SU->getHeight() < MinAvailableCycl
[all...]
H A DResourcePriorityQueue.cpp410 ResCount += (SU->getHeight() * ScaleTwo);
424 ResCount += (SU->getHeight() * ScaleTwo);
H A DScheduleDAGFast.cpp185 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
194 if (LiveRegCycles[Succ.getReg()] == Succ.getSUnit()->getHeight()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.h186 MaxPath = std::max(MaxPath, isTop() ? SU.getHeight() : SU.getDepth());
212 unsigned PathLength = isTop() ? SU->getHeight() : SU->getDepth();
H A DHexagonISelDAGToDAG.h153 int getHeight(SDNode *N);
H A DHexagonMachineScheduler.cpp212 ++su) if (SUnits[su].getHeight() > maxH) maxH =
213 SUnits[su].getHeight();
600 ResCount += (SU->getHeight() * ScaleTwo);
605 dbgstr << "h" << std::setw(3) << SU->getHeight() << "|";
H A DHexagonISelDAGToDAG.cpp1642 int HexagonDAGToDAGISel::getHeight(SDNode *N) { function in class:HexagonDAGToDAGISel
1928 RootHeights[N] = std::max(getHeight(N->getOperand(0).getNode()),
1929 getHeight(N->getOperand(1).getNode())) + 1;
2020 NodeHeights[Child] = getHeight(Child.getNode());
2112 NodeHeights[GA.Value] = getHeight(GA.Value.getNode());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAG.cpp256 if (NewHeight <= getHeight())
351 dbgs() << " Height : " << getHeight() << "\n";
406 (isBottomUp ? SUnit.getHeight() : SUnit.getDepth()) >
H A DMachineScheduler.cpp1339 unsigned LiveOutHeight = DefSU->getHeight();
1360 unsigned LiveInHeight = SU->getHeight() + DefSU->Latency;
2351 if (SU->getHeight() > BotLatency) {
2352 BotLatency = SU->getHeight();
2662 Latency = Cand.SU->getHeight();
2665 Latency = Cand.SU->getHeight();
2732 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2736 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2737 if (tryLess(TryCand.SU->getHeight(), Can
[all...]
H A DMachinePipeliner.cpp1510 dbgs() << "\t H = " << getHeight(&SUnits[i]) << "\n";
1932 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight))
1934 else if (getHeight(I) == getHeight(maxHeight) &&
1937 else if (getHeight(I) == getHeight(maxHeight) &&

Completed in 314 milliseconds