Home
last modified time | relevance | path

Searched refs:isLegalMaskedStore (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.h117 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.h164 bool isLegalMaskedStore(Type *DataType, Align Alignment);
H A DHexagonTargetTransformInfo.cpp325 bool HexagonTTIImpl::isLegalMaskedStore(Type *DataType, Align /*Alignment*/) { in isLegalMaskedStore() function in HexagonTTIImpl
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h255 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h228 bool isLegalMaskedStore(Type *DataType, Align Alignment);
H A DX86TargetTransformInfo.cpp3678 (IsStore && !isLegalMaskedStore(SrcVTy, Alignment))) { in getMaskedMemoryOpCost()
4701 bool X86TTIImpl::isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() function in X86TTIImpl
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.h183 bool isLegalMaskedStore(Type *DataTy, Align Alignment) { in isLegalMaskedStore() function
H A DARMTargetTransformInfo.cpp1444 if (Opcode == Instruction::Store && isLegalMaskedStore(Src, Alignment)) in getMaskedMemoryOpCost()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h644 bool isLegalMaskedStore(Type *DataType, Align Alignment) const;
1500 virtual bool isLegalMaskedStore(Type *DataType, Align Alignment) = 0;
1865 bool isLegalMaskedStore(Type *DataType, Align Alignment) override { in isLegalMaskedStore() function
1866 return Impl.isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
H A DTargetTransformInfoImpl.h231 bool isLegalMaskedStore(Type *DataType, Align Alignment) const { in isLegalMaskedStore() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp371 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, in isLegalMaskedStore() function in TargetTransformInfo
373 return TTIImpl->isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DScalarizeMaskedMemIntrin.cpp952 if (TTI.isLegalMaskedStore( in optimizeCallInst()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1497 bool isLegalMaskedStore(Type *DataType, Value *Ptr, Align Alignment) const { in isLegalMaskedStore() function in llvm::LoopVectorizationCostModel
1499 TTI.isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
5271 : !(isLegalMaskedStore(Ty, Ptr, Alignment) || in isScalarWithPredication()
5317 : TTI.isLegalMaskedStore(Ty, Alignment); in interleavedAccessCanBeWidened()