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

/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DImmutableSet.h64 /// getHeight - Returns the height of the tree. A tree with no subtrees
66 unsigned getHeight() const { return height; } function in class:llvm::ImutAVLTree
196 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
437 unsigned hl = getHeight(L);
438 unsigned hr = getHeight(R);
495 unsigned hl = getHeight(L);
496 unsigned hr = getHeight(
1087 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableSet
1213 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableSetRef
[all...]
H A DImmutableMap.h257 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableMap
425 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } function in class:llvm::ImmutableMapRef
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DLatencyPriorityQueue.h70 return (*SUnits)[NodeNum].getHeight();
H A DResourcePriorityQueue.h100 return (*SUnits)[NodeNum].getHeight();
H A DScheduleDAG.h428 /// getHeight - Return the height of this node, which is the length of the
430 unsigned getHeight() const { function in class:llvm::SUnit
453 /// getHeight() is called.
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp380 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
388 unsigned Height = PredSU->getHeight();
582 unsigned ReadyCycle = PendingQueue[i]->getHeight();
632 unsigned ReadyCycle = SU->getHeight();
710 if (CurCycle < SU->getHeight())
711 DEBUG(dbgs() << " Height [" << SU->getHeight()
805 DEBUG(dbgs() << "*** Unscheduling [" << SU->getHeight() << "]: ");
859 I->getSUnit()->getHeight() < LiveRegGens[I->getReg()]->getHeight())
863 if (SU->getHeight() < MinAvailableCycl
[all...]
H A DResourcePriorityQueue.cpp420 ResCount += (SU->getHeight() * ScaleTwo);
434 ResCount += (SU->getHeight() * ScaleTwo);
651 dbgs() << "Height " << su->getHeight() << ": ";
H A DScheduleDAGFast.cpp186 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
196 if (LiveRegCycles[I->getReg()] == I->getSUnit()->getHeight()) {
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DLatencyPriorityQueue.cpp148 dbgs() << "Height " << su->getHeight() << ": ";
H A DScheduleDAG.cpp225 if (NewHeight <= getHeight())
333 dbgs() << " Height : " << getHeight() << "\n";
399 (isBottomUp ? SUnits[i].getHeight() : SUnits[i].getDepth()) >
H A DMachineScheduler.cpp1308 return SU->getHeight();
1661 if (SU->getHeight() > ExpectedLatency)
1662 ExpectedLatency = SU->getHeight();
2023 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2028 if (Cand.SU->getHeight() * SchedModel->getLatencyFactor()
2030 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2142 Latency = Cand.SU->getHeight();
2145 Latency = Cand.SU->getHeight();
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp168 if (SUnits[su].getHeight() > maxH)
169 maxH = SUnits[su].getHeight();
484 ResCount += (SU->getHeight() * ScaleTwo);

Completed in 136 milliseconds