HomeSort by relevance Sort by last modified time
    Searched defs:PredSU (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 165 const SUnit *PredSU = P->getSUnit();
167 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
  /external/llvm/lib/CodeGen/SelectionDAG/
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);
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...]

Completed in 419 milliseconds