Searched refs:NumBitsPerElt (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 4616 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in expandCTLZ() local 4633 DAG.getConstant(NumBitsPerElt, dl, VT), CTLZ); in expandCTLZ() 4638 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || in expandCTLZ() 4653 for (unsigned i = 0; (1U << i) <= (NumBitsPerElt / 2); ++i) { in expandCTLZ() 4668 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in expandCTTZ() local 4685 DAG.getConstant(NumBitsPerElt, dl, VT), CTTZ); in expandCTTZ() 4690 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || in expandCTTZ() 4709 DAG.getNode(ISD::SUB, dl, VT, DAG.getConstant(NumBitsPerElt, dl, VT), in expandCTTZ()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 6485 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in getFauxShuffleMask() local 6486 assert((NumBitsPerElt % 8) == 0 && (NumSizeInBits % 8) == 0 && in getFauxShuffleMask() 6684 APInt ZeroMask = APInt::getHighBitsSet(2 * NumBitsPerElt, NumBitsPerElt); in getFauxShuffleMask() 6703 if (NumBitsPerElt <= ShiftVal) { in getFauxShuffleMask() 6714 unsigned NumBytesPerElt = NumBitsPerElt / 8; in getFauxShuffleMask() 35806 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); in combineVectorShiftImm() local 35807 assert(VT == N0.getValueType() && (NumBitsPerElt % 8) == 0 && in combineVectorShiftImm() 35814 if (ShiftVal >= NumBitsPerElt) { in combineVectorShiftImm() 35818 ShiftVal = NumBitsPerElt - 1; in combineVectorShiftImm() 35834 if (NewShiftVal >= NumBitsPerElt) in combineVectorShiftImm() [all …]
|