Lines Matching refs:LHSMask
11455 uint32_t LHSMask = getPermuteMask(LHS); in performAndCombine() local
11457 if (LHSMask != ~0u && RHSMask != ~0u) { in performAndCombine()
11460 if (LHSMask > RHSMask) { in performAndCombine()
11461 std::swap(LHSMask, RHSMask); in performAndCombine()
11467 uint32_t LHSUsedLanes = ~(LHSMask & 0x0c0c0c0c) & 0x0c0c0c0c; in performAndCombine()
11480 uint32_t Mask = LHSMask & RHSMask; in performAndCombine()
11483 if ((LHSMask & ByteSel) == 0x0c || (RHSMask & ByteSel) == 0x0c) in performAndCombine()
12081 uint32_t LHSMask = getPermuteMask(LHS); in performOrCombine() local
12084 if (LHSMask != ~0u && RHSMask != ~0u) { in performOrCombine()
12087 if (LHSMask > RHSMask) { in performOrCombine()
12088 std::swap(LHSMask, RHSMask); in performOrCombine()
12094 uint32_t LHSUsedLanes = ~(LHSMask & 0x0c0c0c0c) & 0x0c0c0c0c; in performOrCombine()
12103 LHSMask &= ~RHSUsedLanes; in performOrCombine()
12106 LHSMask |= LHSUsedLanes & 0x04040404; in performOrCombine()
12108 uint32_t Sel = LHSMask | RHSMask; in performOrCombine()
12116 if (LHSMask == ~0u || RHSMask == ~0u) { in performOrCombine()