OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ReadyCycle
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp
348
unsigned
ReadyCycle
) {
349
if (
ReadyCycle
< MinReadyCycle)
350
MinReadyCycle =
ReadyCycle
;
354
if (
ReadyCycle
> CurrCycle || checkHazard(SU))
428
unsigned
ReadyCycle
= isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
430
if (
ReadyCycle
< MinReadyCycle)
431
MinReadyCycle =
ReadyCycle
;
433
if (
ReadyCycle
> CurrCycle)
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp
612
unsigned
ReadyCycle
= PendingQueue[i]->getHeight();
613
if (
ReadyCycle
< MinAvailableCycle)
614
MinAvailableCycle =
ReadyCycle
;
662
unsigned
ReadyCycle
= SU->getHeight();
668
AdvanceToCycle(
ReadyCycle
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineScheduler.cpp
820
// This sets the scheduled node's
ReadyCycle
to CurrCycle. When updateQueues
821
// runs, it can then use the accurate
ReadyCycle
time to determine whether
2078
unsigned
ReadyCycle
= (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
2079
if (
ReadyCycle
> CurrCycle)
2080
return
ReadyCycle
- CurrCycle;
2259
void SchedBoundary::releaseNode(SUnit *SU, unsigned
ReadyCycle
, bool InPQueue,
2264
//
ReadyCycle
was been bumped up to the CurrCycle when this node was
2266
// scheduling, so may now be greater than
ReadyCycle
.
2267
if (
ReadyCycle
> CurrCycle)
2268
MaxObservedStall = std::max(
ReadyCycle
- CurrCycle, MaxObservedStall)
[
all
...]
Completed in 21 milliseconds
Indexes created Sun Jun 07 00:24:08 UTC 2026