Searched defs:SubInstrCount (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h87 unsigned SubInstrCount; member in struct:llvm::SchedDFSResult::TreeData
89 TreeData(): ParentTreeID(InvalidSubtreeID), SubInstrCount(0) {}
153 return DFSTreeData[SubtreeID].SubInstrCount;
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1412 unsigned SubInstrCount; // Instr count in this tree only, not children. member in struct:llvm::SchedDFSImpl::RootData
1416 SubInstrCount(0) {}
1452 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
1480 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1513 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
1514 // Note that SubInstrCount may be greater than InstrCount if we joined
1516 // original parent, while SubInstrCount will be attributed to the joined

Completed in 86 milliseconds