Searched refs:NodeNums (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1051 // Insert all SU's NodeNums into a vector and sort it.
1052 std::vector<unsigned> NodeNums; local
1053 NodeNums.reserve(stores.size() + loads.size());
1056 NodeNums.push_back(SU->NodeNum);
1059 NodeNums.push_back(SU->NodeNum);
1060 llvm::sort(NodeNums);
1062 // The N last elements in NodeNums will be removed, and the SU with
1065 assert(N <= NodeNums.size());
1066 SUnit *newBarrierChain = &SUnits[*(NodeNums.end() - N)];

Completed in 169 milliseconds