Searched refs:VectorBits (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZ.h154 const unsigned VectorBits = 128; member in namespace:llvm::SystemZ
158 const unsigned VectorBytes = VectorBits / 8;
H A DSystemZISelLowering.cpp826 SystemZ::VectorBits / SplatBitSize);
839 SystemZ::VectorBits / SplatBitSize);
868 IntBits <<= (SystemZ::VectorBits - IntImm.getBitWidth());
5555 SystemZ::VectorBits / InBits);
5559 SystemZ::VectorBits / OutBits);
5967 SystemZ::VectorBits / FromBits);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h309 unsigned VectorBits = NumElements.getFixedValue() * ElementBits; local
310 return VectorBits >= 64;
H A DAArch64ISelLowering.cpp21463 SDValue VectorBits = vectorToScalarBitmask(VecOp.getNode(), DAG); local
21464 if (!VectorBits)
21469 SDValue ExtendedBits = DAG.getZExtOrTrunc(VectorBits, DL, StoreVT);
24353 SDValue VectorBits = vectorToScalarBitmask(Op.getNode(), DAG); local
24354 if (VectorBits)
24355 Results.push_back(DAG.getZExtOrTrunc(VectorBits, DL, VT));
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h740 inline static unsigned computeVLMAX(unsigned VectorBits, unsigned EltSize, argument
743 // VLMAX = (VectorBits / EltSize) * LMUL
747 return ((VectorBits / EltSize) * MinSize) / RISCV::RVVBitsPerBlock;
H A DRISCVTargetTransformInfo.cpp920 const unsigned VectorBits = *getVScaleForTuning() * RISCV::RVVBitsPerBlock; local
921 return RISCVTargetLowering::computeVLMAX(VectorBits, EltSize, MinSize);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp5555 uint64_t VectorBits = VectorVT.getSizeInBits();
5557 if (!(VectorBits == 16 || VectorBits == 32 || VectorBits == 64))
5565 MVT IVT = MVT::getIntegerVT(VectorBits);

Completed in 499 milliseconds