Lines Matching defs:SortedKeys
161 /// values to basic blocks and return it in \p SortedKeys
163 /// \param SortedKeys - The vector the keys will be return in and sorted.
165 static void getSortedConstantKeys(std::vector<Value *> &SortedKeys,
168 SortedKeys.push_back(VtoBB.first);
172 if (SortedKeys.size() == 1) {
173 assert(!SortedKeys[0] && "Expected a single void value.");
177 stable_sort(SortedKeys, [](const Value *LHS, const Value *RHS) {
2128 std::vector<Value *> SortedKeys;
2130 getSortedConstantKeys(SortedKeys, OldMap);
2132 for (Value *RetVal : SortedKeys) {
2304 std::vector<Value *> SortedKeys;