Searched refs:isIndexedStoreLegal (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 1097 bool isIndexedStoreLegal(enum MemIndexedMode Mode, Type *Ty) const; 1378 virtual bool isIndexedStoreLegal(MemIndexedMode Mode,Type *Ty) const = 0; 1835 bool isIndexedStoreLegal(MemIndexedMode Mode, Type *Ty) const override { in isIndexedStoreLegal() function 1836 return Impl.isIndexedStoreLegal(Mode, Ty, getDataLayout()); in isIndexedStoreLegal()
|
D | TargetTransformInfoImpl.h | 571 bool isIndexedStoreLegal(TTI::MemIndexedMode Mode, Type *Ty, in isIndexedStoreLegal() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 799 bool TargetTransformInfo::isIndexedStoreLegal(MemIndexedMode Mode, in isIndexedStoreLegal() function in TargetTransformInfo 801 return TTIImpl->isIndexedStoreLegal(Mode, Ty); in isIndexedStoreLegal()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | BasicTTIImpl.h | 254 bool isIndexedStoreLegal(TTI::MemIndexedMode M, Type *Ty, in isIndexedStoreLegal() function 257 return getTLI()->isIndexedStoreLegal(getISDIndexedMode(M), VT); in isIndexedStoreLegal()
|
D | TargetLowering.h | 1135 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const { in isIndexedStoreLegal() function
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 736 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const { in isIndexedStoreLegal() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopStrengthReduce.cpp | 1262 TTI->isIndexedStoreLegal(TTI->MIM_PostInc, AR->getType())) { in RateRegister() 3561 TTI.isIndexedStoreLegal(TTI.MIM_PostInc, AR->getType())) { in mayUsePostIncMode()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 9678 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) && in CombineToPreIndexedLoadStore() 9679 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT)) in CombineToPreIndexedLoadStore() 9905 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) && in CombineToPostIndexedLoadStore() 9906 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT)) in CombineToPostIndexedLoadStore()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 13744 if (!TLI.isIndexedStoreLegal(Inc, VT) && !TLI.isIndexedStoreLegal(Dec, VT)) in getCombineLoadStoreParts()
|