Searched refs:isIndexedStoreLegal (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfo.h | 1639 bool isIndexedStoreLegal(enum MemIndexedMode Mode, Type *Ty) const; 2152 virtual bool isIndexedStoreLegal(MemIndexedMode Mode, Type *Ty) const = 0; 2871 bool isIndexedStoreLegal(MemIndexedMode Mode, Type *Ty) const override { in isIndexedStoreLegal() function 2872 return Impl.isIndexedStoreLegal(Mode, Ty, getDataLayout()); in isIndexedStoreLegal()
|
H A D | TargetTransformInfoImpl.h | 885 bool isIndexedStoreLegal(TTI::MemIndexedMode Mode, Type *Ty, in isIndexedStoreLegal() function
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TargetTransformInfo.cpp | 1241 bool TargetTransformInfo::isIndexedStoreLegal(MemIndexedMode Mode, in isIndexedStoreLegal() function in TargetTransformInfo 1243 return TTIImpl->isIndexedStoreLegal(Mode, Ty); in isIndexedStoreLegal()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | BasicTTIImpl.h | 383 bool isIndexedStoreLegal(TTI::MemIndexedMode M, Type *Ty, in isIndexedStoreLegal() function 386 return getTLI()->isIndexedStoreLegal(getISDIndexedMode(M), VT); in isIndexedStoreLegal()
|
H A D | TargetLowering.h | 1540 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const { in isIndexedStoreLegal() function
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopStrengthReduce.cpp | 1443 TTI->isIndexedStoreLegal(TTI->MIM_PostInc, AR->getType())) { in RateRegister() 3906 TTI.isIndexedStoreLegal(TTI.MIM_PostInc, AR->getType())) { in mayUsePostIncMode() 5136 !TTI.isIndexedStoreLegal(TTI.MIM_PostInc, LU.AccessTy.getType())) in NarrowSearchSpaceByFilterPostInc() 6061 (isa<StoreInst>(I) && TTI.isIndexedStoreLegal(TTI.MIM_PostInc, Ty))); in canHoistIVInc()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 18414 if (!TLI.isIndexedStoreLegal(Inc, VT) && !TLI.isIndexedStoreLegal(Dec, VT)) in getCombineLoadStoreParts()
|