Searched refs:isLegalMaskedStore (Results 1 – 7 of 7) sorted by relevance
131 bool isLegalMaskedStore(Type *DataType);
2238 (Opcode == Instruction::Store && !isLegalMaskedStore(SrcVTy)) || in getMaskedMemoryOpCost()2882 bool X86TTIImpl::isLegalMaskedStore(Type *DataType) { in isLegalMaskedStore() function in X86TTIImpl
492 bool isLegalMaskedStore(Type *DataType) const;1069 virtual bool isLegalMaskedStore(Type *DataType) = 0;1305 bool isLegalMaskedStore(Type *DataType) override { in isLegalMaskedStore() function1306 return Impl.isLegalMaskedStore(DataType); in isLegalMaskedStore()
257 bool isLegalMaskedStore(Type *DataType) { return false; } in isLegalMaskedStore() function
166 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType) const { in isLegalMaskedStore() function in TargetTransformInfo167 return TTIImpl->isLegalMaskedStore(DataType); in isLegalMaskedStore()
597 if (!TTI->isLegalMaskedStore(CI->getArgOperand(0)->getType())) { in optimizeCallInst()
1062 bool isLegalMaskedStore(Type *DataType, Value *Ptr) { in isLegalMaskedStore() function in llvm::LoopVectorizationCostModel1063 return Legal->isConsecutivePtr(Ptr) && TTI.isLegalMaskedStore(DataType); in isLegalMaskedStore()4379 : !(isLegalMaskedStore(Ty, Ptr) || isLegalMaskedScatter(Ty)); in isScalarWithPredication()4416 : TTI.isLegalMaskedStore(Ty); in interleavedAccessCanBeWidened()