Searched refs:LdVT (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Target/X86/ |
D | X86ISelDAGToDAG.cpp | 1820 EVT LdVT = LoadNode->getMemoryVT(); in isLoadIncOrDecStore() local 1821 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 && in isLoadIncOrDecStore() 1822 LdVT != MVT::i8) in isLoadIncOrDecStore() 1881 static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) { in getFusedLdStOpcode() argument 1883 if (LdVT == MVT::i64) return X86::DEC64m; in getFusedLdStOpcode() 1884 if (LdVT == MVT::i32) return X86::DEC32m; in getFusedLdStOpcode() 1885 if (LdVT == MVT::i16) return X86::DEC16m; in getFusedLdStOpcode() 1886 if (LdVT == MVT::i8) return X86::DEC8m; in getFusedLdStOpcode() 1889 if (LdVT == MVT::i64) return X86::INC64m; in getFusedLdStOpcode() 1890 if (LdVT == MVT::i32) return X86::INC32m; in getFusedLdStOpcode() [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 2268 EVT LdVT = LD->getMemoryVT(); in GenWidenVectorLoads() local 2270 assert(LdVT.isVector() && WidenVT.isVector()); in GenWidenVectorLoads() 2271 assert(LdVT.getVectorElementType() == WidenVT.getVectorElementType()); in GenWidenVectorLoads() 2280 int LdWidth = LdVT.getSizeInBits(); in GenWidenVectorLoads() 2402 EVT LdVT = LD->getMemoryVT(); in GenWidenVectorExtLoads() local 2404 assert(LdVT.isVector() && WidenVT.isVector()); in GenWidenVectorExtLoads() 2414 EVT LdEltVT = LdVT.getVectorElementType(); in GenWidenVectorExtLoads() 2415 unsigned NumElts = LdVT.getVectorNumElements(); in GenWidenVectorExtLoads()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 3857 EVT LdVT = LD->getMemoryVT(); in GenWidenVectorLoads() local 3859 assert(LdVT.isVector() && WidenVT.isVector()); in GenWidenVectorLoads() 3860 assert(LdVT.getVectorElementType() == WidenVT.getVectorElementType()); in GenWidenVectorLoads() 3869 int LdWidth = LdVT.getSizeInBits(); in GenWidenVectorLoads() 4008 EVT LdVT = LD->getMemoryVT(); in GenWidenVectorExtLoads() local 4010 assert(LdVT.isVector() && WidenVT.isVector()); in GenWidenVectorExtLoads() 4020 EVT LdEltVT = LdVT.getVectorElementType(); in GenWidenVectorExtLoads() 4021 unsigned NumElts = LdVT.getVectorNumElements(); in GenWidenVectorExtLoads()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 3495 EVT LdVT = LD->getMemoryVT(); in GenWidenVectorLoads() local 3497 assert(LdVT.isVector() && WidenVT.isVector()); in GenWidenVectorLoads() 3498 assert(LdVT.getVectorElementType() == WidenVT.getVectorElementType()); in GenWidenVectorLoads() 3509 int LdWidth = LdVT.getSizeInBits(); in GenWidenVectorLoads() 3649 EVT LdVT = LD->getMemoryVT(); in GenWidenVectorExtLoads() local 3651 assert(LdVT.isVector() && WidenVT.isVector()); in GenWidenVectorExtLoads() 3663 EVT LdEltVT = LdVT.getVectorElementType(); in GenWidenVectorExtLoads() 3664 unsigned NumElts = LdVT.getVectorNumElements(); in GenWidenVectorExtLoads()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 35827 EVT LdVT = Mld->getMemoryVT(); in combineMaskedLoad() local 35830 assert(LdVT != VT && "Cannot extend to the same type"); in combineMaskedLoad() 35832 unsigned FromSz = LdVT.getScalarSizeInBits(); in combineMaskedLoad() 35842 LdVT.getScalarType(), NumElems*SizeRatio); in combineMaskedLoad() 36272 MVT LdVT = Subtarget.is64Bit() ? MVT::i64 : MVT::f64; in combineStore() local 36273 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(), in combineStore() 38465 EVT LdVT = Ld->getValueType(0); in combineSIntToFP() local 38478 !Subtarget.is64Bit() && LdVT == MVT::i64) { in combineSIntToFP() 38480 SDValue(N, 0), LdVT, Ld->getChain(), Op0, DAG); in combineSIntToFP()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86ISelLowering.cpp | 13777 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64; in PerformSTORECombine() local 13778 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(), in PerformSTORECombine()
|