OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MinAvailableCycle
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp
133
///
MinAvailableCycle
- Cycle of the soonest available instruction.
134
unsigned
MinAvailableCycle
;
327
MinAvailableCycle
= DisableSchedCycles ? 0 : UINT_MAX;
390
if (Height <
MinAvailableCycle
)
391
MinAvailableCycle
= Height;
576
// If the available queue is empty, it is safe to reset
MinAvailableCycle
.
578
MinAvailableCycle
= UINT_MAX;
584
if (ReadyCycle <
MinAvailableCycle
)
585
MinAvailableCycle
= ReadyCycle;
873
if (SU->getHeight() <
MinAvailableCycle
)
[
all
...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp
147
///
MinAvailableCycle
- Cycle of the soonest available instruction.
148
unsigned
MinAvailableCycle
;
330
MinAvailableCycle
= DisableSchedCycles ? 0 : UINT_MAX;
391
if (Height <
MinAvailableCycle
)
392
MinAvailableCycle
= Height;
453
// If the available queue is empty, it is safe to reset
MinAvailableCycle
.
455
MinAvailableCycle
= UINT_MAX;
462
if (ReadyCycle <
MinAvailableCycle
)
463
MinAvailableCycle
= ReadyCycle;
703
if (SU->getHeight() <
MinAvailableCycle
)
[
all
...]
Completed in 148 milliseconds