OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MinReadyCycle
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp
349
if (ReadyCycle <
MinReadyCycle
)
350
MinReadyCycle
= ReadyCycle;
366
assert(
MinReadyCycle
< std::numeric_limits<unsigned>::max() &&
367
"
MinReadyCycle
uninitialized");
368
unsigned NextCycle = std::max(CurrCycle + 1,
MinReadyCycle
);
420
// If the available queue is empty, it is safe to reset
MinReadyCycle
.
422
MinReadyCycle
= std::numeric_limits<unsigned>::max();
430
if (ReadyCycle <
MinReadyCycle
)
431
MinReadyCycle
= ReadyCycle;
HexagonMachineScheduler.h
148
///
MinReadyCycle
- Cycle of the soonest available instruction.
149
unsigned
MinReadyCycle
= std::numeric_limits<unsigned>::max();
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineScheduler.cpp
1998
MinReadyCycle
= std::numeric_limits<unsigned>::max();
2271
if (ReadyCycle <
MinReadyCycle
)
2272
MinReadyCycle
= ReadyCycle;
2295
assert(
MinReadyCycle
< std::numeric_limits<unsigned>::max() &&
2296
"
MinReadyCycle
uninitialized");
2297
if (
MinReadyCycle
> NextCycle)
2298
NextCycle =
MinReadyCycle
;
2524
// If the available queue is empty, it is safe to reset
MinReadyCycle
.
2526
MinReadyCycle
= std::numeric_limits<unsigned>::max();
2534
if (ReadyCycle <
MinReadyCycle
)
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineScheduler.h
639
///
MinReadyCycle
- Cycle of the soonest available instruction.
640
unsigned
MinReadyCycle
;
Completed in 23 milliseconds
Indexes created Sun Jun 14 00:25:39 UTC 2026