Searched refs:LTSrc (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.cpp | 3054 std::pair<InstructionCost, MVT> LTSrc = getTypeLegalizationCost(Src); in getCastInstrCost() local 3058 if (ISD == ISD::TRUNCATE && LTSrc.second == LTDest.second) in getCastInstrCost() 3064 AVX512BWConversionTbl, ISD, LTDest.second, LTSrc.second)) in getCastInstrCost() 3066 return std::max(LTSrc.first, LTDest.first) * *KindCost; in getCastInstrCost() 3070 AVX512DQConversionTbl, ISD, LTDest.second, LTSrc.second)) in getCastInstrCost() 3072 return std::max(LTSrc.first, LTDest.first) * *KindCost; in getCastInstrCost() 3076 AVX512FConversionTbl, ISD, LTDest.second, LTSrc.second)) in getCastInstrCost() 3078 return std::max(LTSrc.first, LTDest.first) * *KindCost; in getCastInstrCost() 3083 LTDest.second, LTSrc.second)) in getCastInstrCost() 3085 return std::max(LTSrc.first, LTDest.first) * *KindCost; in getCastInstrCost() [all …]
|