Lines Matching full:offsets
204 /// This function finds loads of the same base and different offsets. If the
205 /// offsets are not far apart (target specific), it add MVT::Glue inputs and
217 // the same base pointer and different offsets.
219 SmallVector<int64_t, 4> Offsets;
238 Offsets.push_back(Offset1);
240 Offsets.push_back(Offset2);
252 std::sort(Offsets.begin(), Offsets.end());
257 int64_t BaseOff = Offsets[0];
260 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
261 int64_t Offset = Offsets[i];