Home
last modified time | relevance | path

Searched refs:isIndexedLoadLegal (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1636 bool isIndexedLoadLegal(enum MemIndexedMode Mode, Type *Ty) const;
2151 virtual bool isIndexedLoadLegal(MemIndexedMode Mode, Type *Ty) const = 0;
2868 bool isIndexedLoadLegal(MemIndexedMode Mode, Type *Ty) const override { in isIndexedLoadLegal() function
2869 return Impl.isIndexedLoadLegal(Mode, Ty, getDataLayout()); in isIndexedLoadLegal()
H A DTargetTransformInfoImpl.h880 bool isIndexedLoadLegal(TTI::MemIndexedMode Mode, Type *Ty, in isIndexedLoadLegal() function
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp1236 bool TargetTransformInfo::isIndexedLoadLegal(MemIndexedMode Mode, in isIndexedLoadLegal() function in TargetTransformInfo
1238 return TTIImpl->isIndexedLoadLegal(Mode, Ty); in isIndexedLoadLegal()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h377 bool isIndexedLoadLegal(TTI::MemIndexedMode M, Type *Ty, in isIndexedLoadLegal() function
380 return getTLI()->isIndexedLoadLegal(getISDIndexedMode(M), VT); in isIndexedLoadLegal()
H A DTargetLowering.h1526 bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const { in isIndexedLoadLegal() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1442 if (TTI->isIndexedLoadLegal(TTI->MIM_PostInc, AR->getType()) || in RateRegister()
3905 if (TTI.isIndexedLoadLegal(TTI.MIM_PostInc, AR->getType()) || in mayUsePostIncMode()
5135 if (!TTI.isIndexedLoadLegal(TTI.MIM_PostInc, LU.AccessTy.getType()) && in NarrowSearchSpaceByFilterPostInc()
6060 ((isa<LoadInst>(I) && TTI.isIndexedLoadLegal(TTI.MIM_PostInc, Ty)) || in canHoistIVInc()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp18407 if (!TLI.isIndexedLoadLegal(Inc, VT) && !TLI.isIndexedLoadLegal(Dec, VT)) in getCombineLoadStoreParts()