Searched refs:VectorWidth (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScalarizeMaskedMemIntrin.cpp159 unsigned VectorWidth = VecType->getNumElements(); local
165 for (unsigned Idx = 0; Idx < VectorWidth; ++Idx) {
180 if (VectorWidth != 1) {
181 Type *SclrMaskTy = Builder.getIntNTy(VectorWidth);
185 for (unsigned Idx = 0; Idx < VectorWidth; ++Idx) {
194 if (VectorWidth != 1) {
195 Value *Mask = Builder.getInt(APInt::getOneBitSet(VectorWidth, Idx));
197 Builder.getIntN(VectorWidth, 0));
295 unsigned VectorWidth = VecType->getNumElements(); local
298 for (unsigned Idx = 0; Idx < VectorWidth;
409 unsigned VectorWidth = VecType->getNumElements(); local
533 unsigned VectorWidth = Src->getType()->getVectorNumElements(); local
615 unsigned VectorWidth = VecType->getNumElements(); local
728 unsigned VectorWidth = VecType->getNumElements(); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp612 int VectorWidth = VT.getSizeInBits(); local
615 int Lane = (VectorWidth / 128 > 0) ? VectorWidth / 128 : 1;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3885 unsigned VectorWidth = I.getType()->isVectorTy() ? local
3888 if (VectorWidth && !N.getValueType().isVector()) {
3890 EVT VT = EVT::getVectorVT(Context, N.getValueType(), VectorWidth);
3928 SDValue OffsVal = VectorWidth ?
3929 DAG.getConstant(Offs, dl, EVT::getVectorVT(Context, IdxTy, VectorWidth)) :
3947 if (!IdxN.getValueType().isVector() && VectorWidth) {
3948 EVT VT = EVT::getVectorVT(*Context, IdxN.getValueType(), VectorWidth);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp4253 if (unsigned VectorWidth = getContext().BuiltinInfo.getRequiredVectorWidth(BuiltinID))
4254 LargestVectorWidth = std::max(LargestVectorWidth, VectorWidth);

Completed in 172 milliseconds