OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PredSU
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp
367
SUnit *
PredSU
= PredEdge->getSUnit();
370
if (
PredSU
->NumSuccsLeft == 0) {
372
PredSU
->dump(this);
377
--
PredSU
->NumSuccsLeft;
382
PredSU
->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
387
if (
PredSU
->NumSuccsLeft == 0 &&
PredSU
!= &EntrySU) {
388
PredSU
->isAvailable = true;
390
unsigned Height =
PredSU
->getHeight();
394
if (isReady(
PredSU
)) {
[
all
...]
ScheduleDAGFast.cpp
135
SUnit *
PredSU
= PredEdge->getSUnit();
138
if (
PredSU
->NumSuccsLeft == 0) {
140
PredSU
->dump(this);
145
--
PredSU
->NumSuccsLeft;
149
if (
PredSU
->NumSuccsLeft == 0 &&
PredSU
!= &EntrySU) {
150
PredSU
->isAvailable = true;
151
AvailableQueue.push(
PredSU
);
/external/llvm/lib/CodeGen/
ScheduleDAG.cpp
192
SUnit *
PredSU
= I->getSUnit();
193
if (
PredSU
->isHeightCurrent)
194
WorkList.push_back(
PredSU
);
233
SUnit *
PredSU
= I->getSUnit();
234
if (
PredSU
->isDepthCurrent)
236
PredSU
->Depth + I->getLatency());
239
WorkList.push_back(
PredSU
);
CriticalAntiDepBreaker.cpp
165
const SUnit *
PredSU
= P->getSUnit();
167
unsigned PredTotalLatency =
PredSU
->getDepth() + PredLatency;
AggressiveAntiDepBreaker.cpp
301
const SUnit *
PredSU
= P->getSUnit();
303
unsigned PredTotalLatency =
PredSU
->getDepth() + PredLatency;
[
all
...]
Completed in 777 milliseconds