Searched refs:isLegalMaskedStore (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.h168 bool isLegalMaskedStore(Type *DataTy, Align Alignment) { function in class:llvm::ARMTTIImpl
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h184 bool isLegalMaskedStore(Type *DataType, Align Alignment) { function in class:llvm::AArch64TTIImpl
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h201 bool isLegalMaskedStore(Type *DataType, Align Alignment);
H A DX86TargetTransformInfo.cpp3051 (IsStore && !isLegalMaskedStore(SrcVTy, Alignment)) ||
4044 bool X86TTIImpl::isLegalMaskedStore(Type *DataType, Align Alignment) { function in class:X86TTIImpl
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h609 bool isLegalMaskedStore(Type *DataType, Align Alignment) const;
1319 virtual bool isLegalMaskedStore(Type *DataType, Align Alignment) = 0;
1620 bool isLegalMaskedStore(Type *DataType, Align Alignment) override {
1621 return Impl.isLegalMaskedStore(DataType, Alignment);
H A DTargetTransformInfoImpl.h189 bool isLegalMaskedStore(Type *DataType, Align Alignment) { return false; } function in class:llvm::TargetTransformInfoImplBase
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp379 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, function in class:TargetTransformInfo
381 return TTIImpl->isLegalMaskedStore(DataType, Alignment);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScalarizeMaskedMemIntrin.cpp869 if (TTI->isLegalMaskedStore(
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1208 bool isLegalMaskedStore(Type *DataType, Value *Ptr, Align Alignment) { function in class:llvm::LoopVectorizationCostModel
1210 TTI.isLegalMaskedStore(DataType, Alignment);
4672 : !(isLegalMaskedStore(Ty, Ptr, Alignment) ||
4718 : TTI.isLegalMaskedStore(Ty, Alignment);

Completed in 304 milliseconds