Home
last modified time | relevance | path

Searched refs:isLegalMaskedLoad (Results 1 – 7 of 7) sorted by relevance

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h319 bool isLegalMaskedLoad(Type *DataType) const;
574 virtual bool isLegalMaskedLoad(Type *DataType) = 0;
702 bool isLegalMaskedLoad(Type *DataType) override { in isLegalMaskedLoad() function
703 return Impl.isLegalMaskedLoad(DataType); in isLegalMaskedLoad()
DTargetTransformInfoImpl.h215 bool isLegalMaskedLoad(Type *DataType) { return false; } in isLegalMaskedLoad() function
/external/llvm/lib/Target/X86/
DX86TargetTransformInfo.h91 bool isLegalMaskedLoad(Type *DataType);
DX86TargetTransformInfo.cpp1005 if ((Opcode == Instruction::Load && !isLegalMaskedLoad(SrcVTy)) || in getMaskedMemoryOpCost()
1300 bool X86TTIImpl::isLegalMaskedLoad(Type *DataTy) { in isLegalMaskedLoad() function in X86TTIImpl
1309 return isLegalMaskedLoad(DataType); in isLegalMaskedStore()
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp120 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType) const { in isLegalMaskedLoad() function in TargetTransformInfo
121 return TTIImpl->isLegalMaskedLoad(DataType); in isLegalMaskedLoad()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1282 bool isLegalMaskedLoad(Type *DataType, Value *Ptr) { in isLegalMaskedLoad() function in __anon63bf7e8f0111::LoopVectorizationLegality
1283 return isConsecutivePtr(Ptr) && TTI->isLegalMaskedLoad(DataType); in isLegalMaskedLoad()
4504 if (isLegalMaskedLoad(LI->getType(), LI->getPointerOperand())) { in blockCanBePredicated()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp1789 if (!TTI->isLegalMaskedLoad(CI->getType())) { in optimizeCallInst()