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

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

Completed in 62 milliseconds