Lines Matching refs:LdVT
1820 EVT LdVT = LoadNode->getMemoryVT();
1821 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
1822 LdVT != MVT::i8)
1881 static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
1883 if (LdVT == MVT::i64) return X86::DEC64m;
1884 if (LdVT == MVT::i32) return X86::DEC32m;
1885 if (LdVT == MVT::i16) return X86::DEC16m;
1886 if (LdVT == MVT::i8) return X86::DEC8m;
1889 if (LdVT == MVT::i64) return X86::INC64m;
1890 if (LdVT == MVT::i32) return X86::INC32m;
1891 if (LdVT == MVT::i16) return X86::INC16m;
1892 if (LdVT == MVT::i8) return X86::INC8m;
1894 llvm_unreachable("unrecognized size for LdVT");
2678 EVT LdVT = LoadNode->getMemoryVT();
2679 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);