/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VETargetTransformInfo.h | 139 bool isLegalMaskedStore(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedStore() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonTargetTransformInfo.h | 160 bool isLegalMaskedStore(Type *DataType, Align Alignment);
|
H A D | HexagonTargetTransformInfo.cpp | 343 bool HexagonTTIImpl::isLegalMaskedStore(Type *DataType, Align /*Alignment*/) { in isLegalMaskedStore() function in HexagonTTIImpl
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.h | 264 bool isLegalMaskedStore(Type *DataType, Align Alignment);
|
H A D | X86TargetTransformInfo.cpp | 5074 (IsStore && !isLegalMaskedStore(SrcVTy, Alignment))) { in getMaskedMemoryOpCost() 5959 bool X86TTIImpl::isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() function in X86TTIImpl
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.h | 189 bool isLegalMaskedStore(Type *DataTy, Align Alignment) { in isLegalMaskedStore() function
|
H A D | ARMTargetTransformInfo.cpp | 1525 if (Opcode == Instruction::Store && isLegalMaskedStore(Src, Alignment)) in getMaskedMemoryOpCost()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetTransformInfo.h | 274 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVTargetTransformInfo.h | 241 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfo.h | 779 bool isLegalMaskedStore(Type *DataType, Align Alignment) const; 1903 virtual bool isLegalMaskedStore(Type *DataType, Align Alignment) = 0; 2393 bool isLegalMaskedStore(Type *DataType, Align Alignment) override { in isLegalMaskedStore() function 2394 return Impl.isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
|
H A D | TargetTransformInfoImpl.h | 266 bool isLegalMaskedStore(Type *DataType, Align Alignment) const { in isLegalMaskedStore() function
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TargetTransformInfo.cpp | 459 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, in isLegalMaskedStore() function in TargetTransformInfo 461 return TTIImpl->isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | ScalarizeMaskedMemIntrin.cpp | 1019 if (TTI.isLegalMaskedStore( in optimizeCallInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 1306 bool isLegalMaskedStore(Type *DataType, Value *Ptr, Align Alignment) const { in isLegalMaskedStore() function in llvm::LoopVectorizationCostModel 1308 TTI.isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore() 3330 : !(isLegalMaskedStore(Ty, Ptr, Alignment) || in isScalarWithPredication() 3520 : TTI.isLegalMaskedStore(Ty, Alignment); in interleavedAccessCanBeWidened()
|