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

/freebsd-11-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-11-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-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h65 /// getHeight - Returns the height of the tree. A tree with no subtrees
67 unsigned getHeight() const { return height; } function in class:llvm::ImutAVLTree
197 assert(getHeight() == ( HL > HR ? HL : HR ) + 1
213 return getHeight();
426 unsigned getHeight(TreeTy* T) const { return T ? T->getHeight() : 0; } function in class:llvm::ImutAVLFactory
435 unsigned hl = getHeight(L);
436 unsigned hr = getHeight(R);
493 unsigned hl = getHeight(L);
494 unsigned hr = getHeight(
1092 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableSet
1205 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableSetRef
[all...]
H A DImmutableMap.h243 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableMap
403 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableMapRef
/freebsd-11-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.h235 unsigned getHeight(SUnit *Node) { return Node->getHeight(); } function in class:llvm::SwingSchedulerDAG
H A DScheduleDAG.h406 unsigned getHeight() const { function
427 /// will require recomputation the next time getHeight() is called.
H A DMachineScheduler.h716 return isTop() ? SU->getHeight() : SU->getDepth();
/freebsd-11-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.cpp406 ResCount += (SU->getHeight() * ScaleTwo);
420 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-11-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 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.h155 int getHeight(SDNode *N);
H A DHexagonISelDAGToDAG.cpp1635 int HexagonDAGToDAGISel::getHeight(SDNode *N) { function in class:HexagonDAGToDAGISel
1921 RootHeights[N] = std::max(getHeight(N->getOperand(0).getNode()),
1922 getHeight(N->getOperand(1).getNode())) + 1;
2013 NodeHeights[Child] = getHeight(Child.getNode());
2105 NodeHeights[GA.Value] = getHeight(GA.Value.getNode());
/freebsd-11-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;
2307 if (SU->getHeight() > BotLatency) {
2308 BotLatency = SU->getHeight();
2620 Latency = Cand.SU->getHeight();
2623 Latency = Cand.SU->getHeight();
2690 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2694 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2695 if (tryLess(TryCand.SU->getHeight(), Can
[all...]
H A DMachinePipeliner.cpp1436 dbgs() << "\t H = " << getHeight(&SUnits[i]) << "\n";
1858 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight))
1860 else if (getHeight(I) == getHeight(maxHeight) &&
1863 else if (getHeight(I) == getHeight(maxHeight) &&

Completed in 349 milliseconds