/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VETargetTransformInfo.h | 142 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedGather() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.h | 205 bool isLegalMaskedGather(Type *Ty, Align Alignment); 208 return isLegalMaskedGather(Ty, Alignment); in isLegalMaskedScatter()
|
H A D | ARMTargetTransformInfo.cpp | 1127 bool ARMTTIImpl::isLegalMaskedGather(Type *Ty, Align Alignment) { in isLegalMaskedGather() function in ARMTTIImpl
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.h | 273 bool isLegalMaskedGather(Type *DataType, Align Alignment);
|
H A D | X86TargetTransformInfo.cpp | 5893 (!isLegalMaskedGather(SrcVTy, Align(Alignment)) || in getGatherScatterOpCost() 6068 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy, Align Alignment) { in isLegalMaskedGather() function in X86TTIImpl
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetTransformInfo.h | 291 bool isLegalMaskedGather(Type *DataType, Align Alignment) const { in isLegalMaskedGather() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVTargetTransformInfo.h | 262 bool isLegalMaskedGather(Type *DataType, Align Alignment) { in isLegalMaskedGather() function
|
H A D | RISCVTargetTransformInfo.cpp | 721 !isLegalMaskedGather(DataTy, Align(Alignment))) || in getGatherScatterOpCost()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfo.h | 795 bool isLegalMaskedGather(Type *DataType, Align Alignment) const; 1910 virtual bool isLegalMaskedGather(Type *DataType, Align Alignment) = 0; 2412 bool isLegalMaskedGather(Type *DataType, Align Alignment) override { in isLegalMaskedGather() function 2413 return Impl.isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
|
H A D | TargetTransformInfoImpl.h | 296 bool isLegalMaskedGather(Type *DataType, Align Alignment) const { in isLegalMaskedGather() function
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TargetTransformInfo.cpp | 483 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType, in isLegalMaskedGather() function in TargetTransformInfo 485 return TTIImpl->isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | ScalarizeMaskedMemIntrin.cpp | 1031 if (TTI.isLegalMaskedGather(LoadTy, Alignment) && in optimizeCallInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 1329 return (LI && TTI.isLegalMaskedGather(Ty, Align)) || in isLegalGatherOrScatter() 3329 TTI.isLegalMaskedGather(VTy, Alignment)) in isScalarWithPredication()
|
H A D | SLPVectorizer.cpp | 1510 R.TTI->isLegalMaskedGather( in getShallowScore() 4770 if (TTI->isLegalMaskedGather(VecTy, CommonAlignment) && in canVectorizeLoads()
|