Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:Offsets

175 /// This function finds loads of the same base and different offsets. If the
176 /// offsets are not far apart (target specific), it add MVT::Glue inputs and
188 // the same base pointer and different offsets.
190 SmallVector<int64_t, 4> Offsets;
206 Offsets.push_back(Offset1);
208 Offsets.push_back(Offset2);
218 std::sort(Offsets.begin(), Offsets.end());
223 int64_t BaseOff = Offsets[0];
226 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
227 int64_t Offset = Offsets[i];