Lines Matching refs:WideVT

7331   EVT WideVT = EVT::getIntegerVT(Context, WideNumBits);  in mergeTruncStores()  local
7332 if (WideVT != MVT::i16 && WideVT != MVT::i32 && WideVT != MVT::i64) in mergeTruncStores()
7374 else if (SourceValue.getValueType() != WideVT) { in mergeTruncStores()
7375 if (WideVal.getValueType() == WideVT || in mergeTruncStores()
7380 if (SourceValue.getScalarValueSizeInBits() < WideVT.getScalarSizeInBits()) in mergeTruncStores()
7410 bool Allowed = TLI.allowsMemoryAccess(Context, Layout, WideVT, in mergeTruncStores()
7444 if (WideVT != SourceValue.getValueType()) { in mergeTruncStores()
7447 SourceValue = DAG.getNode(ISD::TRUNCATE, DL, WideVT, SourceValue); in mergeTruncStores()
7454 SourceValue = DAG.getNode(ISD::BSWAP, DL, WideVT, SourceValue); in mergeTruncStores()
7457 SDValue RotAmt = DAG.getConstant(WideNumBits / 2, DL, WideVT); in mergeTruncStores()
7458 SourceValue = DAG.getNode(ISD::ROTR, DL, WideVT, SourceValue, RotAmt); in mergeTruncStores()
9998 EVT WideVT = N1.getValueType().changeVectorElementTypeToInteger(); in visitVSELECT() local
10001 unsigned WideWidth = WideVT.getScalarSizeInBits(); in visitVSELECT()
10006 TLI.isLoadExtLegalOrCustom(LoadExtOpcode, WideVT, NarrowVT) && in visitVSELECT()
10007 TLI.isOperationLegalOrCustom(ISD::SETCC, WideVT)) { in visitVSELECT()
10013 SDValue WideLHS = DAG.getNode(ExtOpcode, DL, WideVT, LHS); in visitVSELECT()
10014 SDValue WideRHS = DAG.getNode(ExtOpcode, DL, WideVT, RHS); in visitVSELECT()
10015 EVT WideSetCCVT = getSetCCResultType(WideVT); in visitVSELECT()