Home
last modified time | relevance | path

Searched refs:VectorWidth (Results 1 – 7 of 7) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DScalarizeMaskedMemIntrin.cpp198 if (VectorWidth != 1) { in scalarizeMaskedLoad()
214 VectorWidth, adjustForEndian(DL, VectorWidth, Idx))); in scalarizeMaskedLoad()
333 if (VectorWidth != 1) { in scalarizeMaskedStore()
348 VectorWidth, adjustForEndian(DL, VectorWidth, Idx))); in scalarizeMaskedStore()
454 if (VectorWidth != 1) { in scalarizeMaskedGather()
470 VectorWidth, adjustForEndian(DL, VectorWidth, Idx))); in scalarizeMaskedGather()
582 if (VectorWidth != 1) { in scalarizeMaskedScatter()
597 VectorWidth, adjustForEndian(DL, VectorWidth, Idx))); in scalarizeMaskedScatter()
687 if (VectorWidth != 1) { in scalarizeMaskedExpandLoad()
703 VectorWidth, adjustForEndian(DL, VectorWidth, Idx))); in scalarizeMaskedExpandLoad()
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp214 int VectorWidth = in IsSafeActiveMask() local
216 if (VectorWidth != 2 && VectorWidth != 4 && VectorWidth != 8 && in IsSafeActiveMask()
217 VectorWidth != 16) in IsSafeActiveMask()
243 (ConstElemCount->getZExtValue() + VectorWidth - 1) / VectorWidth; in IsSafeActiveMask()
270 SE->getSCEV(ConstantInt::get(TripCount->getType(), VectorWidth - 1))); in IsSafeActiveMask()
281 dbgs() << "ARM TP: - VecWidth = " << VectorWidth << "\n"; in IsSafeActiveMask()
344 if (VectorWidth == StepValue) in IsSafeActiveMask()
348 << " doesn't match vector width " << VectorWidth << "\n"); in IsSafeActiveMask()
358 unsigned VectorWidth = in InsertVCTPIntrinsic() local
369 ConstantInt *Factor = ConstantInt::get(cast<IntegerType>(Ty), VectorWidth); in InsertVCTPIntrinsic()
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp614 int VectorWidth = VT.getSizeInBits(); in group2Shuffle() local
617 int Lane = (VectorWidth / 128 > 0) ? VectorWidth / 128 : 1; in group2Shuffle()
/openbsd/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp1496 unsigned VectorWidth = 0; in translateGetElementPtr() local
1502 VectorWidth = cast<FixedVectorType>(VT)->getNumElements(); in translateGetElementPtr()
1504 WantSplatVector = VectorWidth > 1; in translateGetElementPtr()
1512 .buildSplatVector(LLT::fixed_vector(VectorWidth, PtrTy), BaseReg) in translateGetElementPtr()
1514 PtrIRTy = FixedVectorType::get(PtrIRTy, VectorWidth); in translateGetElementPtr()
/openbsd/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp2553 const SDLoc &DL, unsigned VectorWidth) { in extractSubVector() argument
2556 unsigned Factor = VT.getSizeInBits() / VectorWidth; in extractSubVector()
2561 unsigned ElemsPerChunk = VectorWidth / ElVT.getSizeInBits(); in extractSubVector()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td2810 let Args = [UnsignedArgument<"VectorWidth">];
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGBuiltin.cpp5305 if (unsigned VectorWidth = getContext().BuiltinInfo.getRequiredVectorWidth(BuiltinID)) in EmitBuiltinExpr() local
5306 LargestVectorWidth = std::max(LargestVectorWidth, VectorWidth); in EmitBuiltinExpr()