Lines Matching defs:Mask
98 void converted(Instruction *I, Value *V, int Mask, bool Worthy) {
99 ConvertedInsts[I] = std::make_tuple(V, Mask, Worthy);
206 int Mask = 0;
208 Mask |= Masks[WhichConst][0];
210 Mask |= Masks[WhichConst][1];
212 Mask |= Masks[WhichConst][2];
214 Mask |= Masks[WhichConst][3];
222 Mask &= SystemZ::TDCMASK_PLUS;
223 Mask |= Mask >> 1;
231 converted(&I, Op0, Mask, Worthy);
248 int Mask;
251 Mask = SystemZ::TDCMASK_MINUS;
254 Mask = SystemZ::TDCMASK_PLUS;
260 converted(&I, V, Mask, true);
273 int Mask = MaskC->getZExtValue();
274 Mask &= SystemZ::TDCMASK_ALL;
279 Mask ^= SystemZ::TDCMASK_ALL;
285 converted(&I, V, Mask, false);
297 int Mask;
300 Mask = Mask0 & Mask1;
303 Mask = Mask0 | Mask1;
306 Mask = Mask0 ^ Mask1;
311 converted(&I, Op0, Mask, true);
359 int Mask;
361 std::tie(V, Mask, Worthy) = It.second;
368 Value *MaskVal = ConstantInt::get(Type::getInt64Ty(Ctx), Mask);