Lines Matching defs:Op0VT

4510   EVT Op0VT = Op0.getValueType();
4513 if (Op0VT == MVT::f32 || Op0VT == MVT::f16)
4516 if (Op0VT == MVT::bf16 && IsStrict) {
4523 if (Op0VT == MVT::bf16)
4531 if (Op0VT.getScalarType() == MVT::f16)
4533 if (Op0VT.getScalarType() == MVT::bf16) {
4536 if (!Op0VT.isVector()) {
4546 if (!Op0VT.isVector())
18208 EVT Op0VT = A.getOperand(0).getValueType();
18209 bool IsValidElementCount = Op0VT.getVectorNumElements() % 8 == 0;
18210 bool IsValidSize = Op0VT.getScalarSizeInBits() == 8;
18218 B = DAG.getConstant(1, DL, Op0VT);
18222 unsigned IsMultipleOf16 = Op0VT.getVectorNumElements() % 16 == 0;
18226 NumOfVecReduce = Op0VT.getVectorNumElements() / 16;
18229 NumOfVecReduce = Op0VT.getVectorNumElements() / 8;
18240 unsigned VecReduce16Num = Op0VT.getVectorNumElements() / 16;
18261 unsigned VecReduce8Num = (Op0VT.getVectorNumElements() % 16) / 8;
30019 EVT Op0VT = N->getOperand(0).getValueType();
30021 assert(VT.isVector() && Op0VT.isVector() && Op1VT.isVector() &&
30022 VT.isInteger() && Op0VT.isInteger() && Op1VT.isInteger() &&
30024 assert(VT == Op0VT &&
30026 assert(Op0VT.getSizeInBits() == Op1VT.getSizeInBits() &&
30028 assert(Op0VT.getVectorElementCount() * 2 == Op1VT.getVectorElementCount() &&
30058 EVT Op0VT = N->getOperand(0).getValueType();
30060 assert(VT.isVector() && Op0VT.isVector() && Op1VT.isVector() &&
30062 assert(VT == Op0VT && VT == Op1VT && "Expected matching vectors!");
30069 EVT Op0VT = N->getOperand(0).getValueType();
30073 assert(Op0VT.isVector() && Op0VT.isInteger() &&
30075 assert(VT.getSizeInBits() == Op0VT.getSizeInBits() &&
30077 assert(VT.getVectorElementCount() == Op0VT.getVectorElementCount() * 2 &&