Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:VecType

1185   VectorType *VecType = dyn_cast<VectorType>(CI->getType());
1186 assert(VecType && "Unexpected return type of masked load intrinsic");
1211 AlignVal = std::min(AlignVal, VecType->getScalarSizeInBits()/8);
1216 unsigned VectorWidth = VecType->getNumElements();
1218 Value *UndefVal = UndefValue::get(VecType);
1252 Phi = Builder.CreatePHI(VecType, 2, "res.phi.else");
1288 Phi = Builder.CreatePHI(VecType, 2, "res.phi.select");
1331 VectorType *VecType = dyn_cast<VectorType>(Src->getType());
1332 assert(VecType && "Unexpected data type in masked store intrinsic");
1334 Type *EltTy = VecType->getElementType();
1353 AlignVal = std::max(AlignVal, VecType->getScalarSizeInBits()/8);
1358 unsigned VectorWidth = VecType->getNumElements();
1449 VectorType *VecType = dyn_cast<VectorType>(CI->getType());
1451 assert(VecType && "Unexpected return type of masked load intrinsic");
1463 Value *UndefVal = UndefValue::get(VecType);
1467 unsigned VectorWidth = VecType->getNumElements();
1502 Phi = Builder.CreatePHI(VecType, 2, "res.phi.else");
1542 Phi = Builder.CreatePHI(VecType, 2, "res.phi.select");