Lines Matching refs:LT
274 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); in getShuffleCost() local
281 return LT.first; in getShuffleCost()
336 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); in getMemoryOpCost() local
343 unsigned SrcBytes = LT.second.getStoreSize(); in getMemoryOpCost()
348 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 || in getMemoryOpCost()
349 LT.second == MVT::v4i32 || LT.second == MVT::v4f32); in getMemoryOpCost()
351 (LT.second == MVT::v2f64 || LT.second == MVT::v2i64); in getMemoryOpCost()
353 (LT.second == MVT::v4f64 || LT.second == MVT::v4f32); in getMemoryOpCost()
364 Alignment >= LT.second.getScalarType().getStoreSize()) in getMemoryOpCost()
365 return Cost + LT.first; // Add the cost of the permutations. in getMemoryOpCost()
378 Cost += LT.first*(SrcBytes/Alignment-1); in getMemoryOpCost()
399 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, VecTy); in getInterleavedMemoryOpCost() local
409 Cost += Factor*(LT.first-1); in getInterleavedMemoryOpCost()