Searched refs:NumBitsPerElt (Results 1 – 3 of 3) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 8366 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in expandCTLZ() local 8381 DAG.getConstant(NumBitsPerElt, dl, VT), CTLZ); in expandCTLZ() 8386 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || in expandCTLZ() 8402 for (unsigned i = 0; (1U << i) < NumBitsPerElt; ++i) { in expandCTLZ() 8418 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in expandVPCTLZ() local 8427 for (unsigned i = 0; (1U << i) < NumBitsPerElt; ++i) { in expandVPCTLZ() 8486 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in expandCTTZ() local 8501 DAG.getConstant(NumBitsPerElt, dl, VT), CTTZ); in expandCTTZ() 8506 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || in expandCTTZ() 8518 if (SDValue V = CTTZTableLookup(Node, DAG, dl, VT, Op, NumBitsPerElt)) in expandCTTZ() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 8299 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in getFauxShuffleMask() local 8304 unsigned NumBytesPerElt = NumBitsPerElt / 8; in getFauxShuffleMask() 8568 APInt ZeroMask = APInt::getHighBitsSet(2 * NumBitsPerElt, NumBitsPerElt); in getFauxShuffleMask() 8611 unsigned Scale = NumBitsPerSrcElt / NumBitsPerElt; in getFauxShuffleMask() 8623 if (NumBitsPerElt <= ShiftVal) { in getFauxShuffleMask() 48299 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in combineVectorShiftImm() local 48312 if (ShiftVal >= NumBitsPerElt) { in combineVectorShiftImm() 48315 ShiftVal = NumBitsPerElt - 1; in combineVectorShiftImm() 48336 if (NewShiftVal >= NumBitsPerElt) { in combineVectorShiftImm() 48341 NewShiftVal = NumBitsPerElt - 1; in combineVectorShiftImm() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | TargetLowering.h | 4954 SDValue Op, unsigned NumBitsPerElt) const;
|