Lines Matching refs:LT
294 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); in getShuffleCost() local
301 return LT.first; in getShuffleCost()
356 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); in getMemoryOpCost() local
363 unsigned SrcBytes = LT.second.getStoreSize(); in getMemoryOpCost()
368 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 || in getMemoryOpCost()
369 LT.second == MVT::v4i32 || LT.second == MVT::v4f32); in getMemoryOpCost()
371 (LT.second == MVT::v2f64 || LT.second == MVT::v2i64); in getMemoryOpCost()
373 (LT.second == MVT::v4f64 || LT.second == MVT::v4f32); in getMemoryOpCost()
384 Alignment >= LT.second.getScalarType().getStoreSize()) in getMemoryOpCost()
385 return Cost + LT.first; // Add the cost of the permutations. in getMemoryOpCost()
398 Cost += LT.first*(SrcBytes/Alignment-1); in getMemoryOpCost()
419 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, VecTy); in getInterleavedMemoryOpCost() local
429 Cost += Factor*(LT.first-1); in getInterleavedMemoryOpCost()