Displaying 1 result from an estimated 1 matches for "v2index".
Did you mean:
2index
2018 Apr 10
1
64 bit mask in x86vshuffle instruction
...OnlyUsesV1 ? V1 : V2,
DAG.getIntPtrConstant(0, DL));
return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LoV, HiV);
}
assert(WidenedMask.size() == 16);
// See if this is an insertion of the lower 128-bits of V2 into V1.
bool IsInsert = true;
int V2Index = -1;
for (int i = 0; i < 16; ++i) {
assert(WidenedMask[i] >= -1);
if (WidenedMask[i] < 0)
continue;
// Make sure all V1 subvectors are in place.
if (WidenedMask[i] < 16) {
if (WidenedMask[i] != i) {
IsInsert = false;
break;
}
} e...