Searched refs:isIndexedLoadLegal (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfo.h | 1636 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 D | TargetTransformInfoImpl.h | 880 bool isIndexedLoadLegal(TTI::MemIndexedMode Mode, Type *Ty, in isIndexedLoadLegal() function
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TargetTransformInfo.cpp | 1236 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 D | BasicTTIImpl.h | 377 bool isIndexedLoadLegal(TTI::MemIndexedMode M, Type *Ty, in isIndexedLoadLegal() function 380 return getTLI()->isIndexedLoadLegal(getISDIndexedMode(M), VT); in isIndexedLoadLegal()
|
H A D | TargetLowering.h | 1526 bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const { in isIndexedLoadLegal() function
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopStrengthReduce.cpp | 1442 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 D | DAGCombiner.cpp | 18407 if (!TLI.isIndexedLoadLegal(Inc, VT) && !TLI.isIndexedLoadLegal(Dec, VT)) in getCombineLoadStoreParts()
|