OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReadyCycle
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp
289
unsigned
ReadyCycle
) {
290
if (
ReadyCycle
< MinReadyCycle)
291
MinReadyCycle =
ReadyCycle
;
295
if (
ReadyCycle
> CurrCycle || checkHazard(SU))
368
unsigned
ReadyCycle
= isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
370
if (
ReadyCycle
< MinReadyCycle)
371
MinReadyCycle =
ReadyCycle
;
373
if (
ReadyCycle
> CurrCycle)
HexagonMachineScheduler.h
178
void releaseNode(SUnit *SU, unsigned
ReadyCycle
);
/external/llvm/lib/CodeGen/
MachineScheduler.cpp
722
// This sets the scheduled node's
ReadyCycle
to CurrCycle. When updateQueues
723
// runs, it can then use the accurate
ReadyCycle
time to determine whether
[
all
...]
/external/llvm/include/llvm/CodeGen/
MachineScheduler.h
721
void releaseNode(SUnit *SU, unsigned
ReadyCycle
);
731
unsigned countResource(unsigned PIdx, unsigned Cycles, unsigned
ReadyCycle
);
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp
583
unsigned
ReadyCycle
= PendingQueue[i]->getHeight();
584
if (
ReadyCycle
< MinAvailableCycle)
585
MinAvailableCycle =
ReadyCycle
;
633
unsigned
ReadyCycle
= SU->getHeight();
639
AdvanceToCycle(
ReadyCycle
);
[
all
...]
Completed in 39 milliseconds