Home
last modified time | relevance | path

Searched refs:SUnitIterator (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h625 class SUnitIterator {
638 bool operator==(const SUnitIterator& x) const {
648 SUnitIterator& operator++() { // Preincrement
652 SUnitIterator operator++(int) { // Postincrement
653 SUnitIterator tmp = *this; ++*this; return tmp;
656 static SUnitIterator begin(SUnit *N) { return SUnitIterator(N, 0); } in begin()
657 static SUnitIterator end (SUnit *N) { in end()
658 return SUnitIterator(N, (unsigned)N->Preds.size()); in end()
678 typedef SUnitIterator ChildIteratorType;
681 return SUnitIterator::begin(N);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp48 SUnitIterator EI, in getEdgeAttributes()
H A DMachineScheduler.cpp4204 SUnitIterator EI, in getEdgeAttributes()