Searched refs:NumBitsPerElt (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 7039 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in expandCTLZ() local 7056 DAG.getConstant(NumBitsPerElt, dl, VT), CTLZ); in expandCTLZ() 7061 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || in expandCTLZ() 7076 for (unsigned i = 0; (1U << i) <= (NumBitsPerElt / 2); ++i) { in expandCTLZ() 7091 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in expandCTTZ() local 7108 DAG.getConstant(NumBitsPerElt, dl, VT), CTTZ); in expandCTTZ() 7113 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || in expandCTTZ() 7132 DAG.getNode(ISD::SUB, dl, VT, DAG.getConstant(NumBitsPerElt, dl, VT), in expandCTTZ()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 7526 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in getFauxShuffleMask() local 7531 unsigned NumBytesPerElt = NumBitsPerElt / 8; in getFauxShuffleMask() 7786 APInt ZeroMask = APInt::getHighBitsSet(2 * NumBitsPerElt, NumBitsPerElt); in getFauxShuffleMask() 7819 unsigned Scale = NumBitsPerSrcElt / NumBitsPerElt; in getFauxShuffleMask() 7831 if (NumBitsPerElt <= ShiftVal) { in getFauxShuffleMask() 44179 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in combineVectorShiftImm() local 44192 if (ShiftVal >= NumBitsPerElt) { in combineVectorShiftImm() 44195 ShiftVal = NumBitsPerElt - 1; in combineVectorShiftImm() 44218 if (NewShiftVal >= NumBitsPerElt) { in combineVectorShiftImm() 44223 NewShiftVal = NumBitsPerElt - 1; in combineVectorShiftImm() [all …]
|