Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h617 class SUnitIterator {
630 bool operator==(const SUnitIterator& x) const {
640 SUnitIterator& operator++() { // Preincrement
644 SUnitIterator operator++(int) { // Postincrement
645 SUnitIterator tmp = *this; ++*this; return tmp;
648 static SUnitIterator begin(SUnit *N) { return SUnitIterator(N, 0); } in begin()
649 static SUnitIterator end (SUnit *N) { in end()
650 return SUnitIterator(N, (unsigned)N->Preds.size()); in end()
670 typedef SUnitIterator ChildIteratorType;
673 return SUnitIterator::begin(N);
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp53 SUnitIterator EI, in getEdgeAttributes()
H A DMachineScheduler.cpp3895 SUnitIterator EI, in getEdgeAttributes()