Lines Matching refs:LHSMask
11644 uint32_t LHSMask = getPermuteMask(LHS); in performAndCombine() local
11646 if (LHSMask != ~0u && RHSMask != ~0u) { in performAndCombine()
11649 if (LHSMask > RHSMask) { in performAndCombine()
11650 std::swap(LHSMask, RHSMask); in performAndCombine()
11656 uint32_t LHSUsedLanes = ~(LHSMask & 0x0c0c0c0c) & 0x0c0c0c0c; in performAndCombine()
11669 uint32_t Mask = LHSMask & RHSMask; in performAndCombine()
11672 if ((LHSMask & ByteSel) == 0x0c || (RHSMask & ByteSel) == 0x0c) in performAndCombine()
12351 uint32_t LHSMask = getPermuteMask(LHS); in performOrCombine() local
12354 if (LHSMask != ~0u && RHSMask != ~0u) { in performOrCombine()
12357 if (LHSMask > RHSMask) { in performOrCombine()
12358 std::swap(LHSMask, RHSMask); in performOrCombine()
12364 uint32_t LHSUsedLanes = ~(LHSMask & 0x0c0c0c0c) & 0x0c0c0c0c; in performOrCombine()
12373 LHSMask &= ~RHSUsedLanes; in performOrCombine()
12376 LHSMask |= LHSUsedLanes & 0x04040404; in performOrCombine()
12378 uint32_t Sel = LHSMask | RHSMask; in performOrCombine()
12386 if (LHSMask == ~0u || RHSMask == ~0u) { in performOrCombine()