/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | GCNILPSched.cpp | 110 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 D | SystemZMachineScheduler.h | 80 if (lhs->getHeight() > rhs->getHeight()) in operator() 82 else if (lhs->getHeight() < rhs->getHeight()) in operator()
|
H A D | SystemZMachineScheduler.cpp | 188 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 D | ImmutableSet.h | 69 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 D | ImmutableMap.h | 189 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 D | ScheduleDAGRRList.cpp | 416 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 D | ResourcePriorityQueue.cpp | 405 ResCount += (SU->getHeight() * ScaleTwo); in SUSchedulingCost() 419 ResCount += (SU->getHeight() * ScaleTwo); in SUSchedulingCost()
|
H A D | ScheduleDAGFast.cpp | 181 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 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 | LatencyPriorityQueue.h | 70 return (*SUnits)[NodeNum].getHeight(); in getLatency()
|
H A D | ResourcePriorityQueue.h | 95 return (*SUnits)[NodeNum].getHeight(); in getLatency()
|
H A D | MachinePipeliner.h | 246 unsigned getHeight(SUnit *Node) { return Node->getHeight(); } in getHeight() function
|
H A D | ScheduleDAG.h | 424 unsigned getHeight() const { in getHeight() function
|
H A D | MachineScheduler.h | 977 return isTop() ? SU->getHeight() : SU->getDepth(); in getUnscheduledLatency()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ScheduleDAG.cpp | 257 if (NewHeight <= getHeight()) in setHeightToAtLeast() 354 dbgs() << " Height : " << getHeight() << "\n"; in dumpAttributes() 409 (isBottomUp ? SUnit.getHeight() : SUnit.getDepth()) > in VerifyScheduledDAG()
|
H A D | VLIWMachineScheduler.cpp | 223 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 D | MachineScheduler.cpp | 1601 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 D | MachinePipeliner.cpp | 1938 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 D | HexagonISelDAGToDAG.h | 157 int getHeight(SDNode *N);
|
H A D | HexagonISelDAGToDAG.cpp | 1792 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 D | RangeConstraintManager.cpp | 2346 if (Members.getHeight() >= OtherMembers.getHeight()) { in merge()
|