Searched refs:SrcLT (Results 1 – 5 of 5) sorted by relevance
/external/llvm/include/llvm/CodeGen/ |
D | BasicTTIImpl.h | 356 std::pair<unsigned, MVT> SrcLT = TLI->getTypeLegalizationCost(DL, Src); in getCastInstrCost() local 360 if (SrcLT.first == DstLT.first && in getCastInstrCost() 361 SrcLT.second.getSizeInBits() == DstLT.second.getSizeInBits()) { in getCastInstrCost() 369 TLI->isTruncateFree(SrcLT.second, DstLT.second)) in getCastInstrCost() 373 TLI->isZExtFree(SrcLT.second, DstLT.second)) in getCastInstrCost() 382 if (SrcLT.first == DstLT.first && in getCastInstrCost() 406 if (SrcLT.first == DstLT.first && in getCastInstrCost() 407 SrcLT.second.getSizeInBits() == DstLT.second.getSizeInBits()) { in getCastInstrCost() 421 return SrcLT.first * 1; in getCastInstrCost()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | BasicTTIImpl.h | 572 std::pair<unsigned, MVT> SrcLT = TLI->getTypeLegalizationCost(DL, Src); variable 576 if (SrcLT.first == DstLT.first && 577 SrcLT.second.getSizeInBits() == DstLT.second.getSizeInBits()) { 585 TLI->isTruncateFree(SrcLT.second, DstLT.second)) 589 TLI->isZExtFree(SrcLT.second, DstLT.second)) 610 if (SrcLT.first == DstLT.first && 632 if (SrcLT.first == DstLT.first && 633 SrcLT.second.getSizeInBits() == DstLT.second.getSizeInBits()) { 647 return SrcLT.first * 1;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonTargetTransformInfo.cpp | 243 std::pair<int, MVT> SrcLT = TLI.getTypeLegalizationCost(DL, SrcTy); in getCastInstrCost() local 245 return std::max(SrcLT.first, DstLT.first) + FloatFactor * (SrcN + DstN); in getCastInstrCost()
|
/external/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.cpp | 1479 std::pair<int, MVT> SrcLT = TLI->getTypeLegalizationCost(DL, SrcVTy); in getGSVectorCost() local 1480 int SplitFactor = std::max(IdxsLT.first, SrcLT.first); in getGSVectorCost()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.cpp | 2481 std::pair<int, MVT> SrcLT = TLI->getTypeLegalizationCost(DL, SrcVTy); in getGSVectorCost() local 2482 int SplitFactor = std::max(IdxsLT.first, SrcLT.first); in getGSVectorCost()
|