Home
last modified time | relevance | path

Searched refs:isLegalMaskedGather (Results 1 – 14 of 14) sorted by relevance

/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp134 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType) const { in isLegalMaskedGather() function in TargetTransformInfo
135 return TTIImpl->isLegalMaskedGather(DataType); in isLegalMaskedGather()
139 return TTIImpl->isLegalMaskedGather(DataType); in isLegalMaskedScatter()
/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h342 bool isLegalMaskedGather(Type *DataType) const;
658 virtual bool isLegalMaskedGather(Type *DataType) = 0;
814 bool isLegalMaskedGather(Type *DataType) override { in isLegalMaskedGather() function
815 return Impl.isLegalMaskedGather(DataType); in isLegalMaskedGather()
DTargetTransformInfoImpl.h218 bool isLegalMaskedGather(Type *DataType) { return false; } in isLegalMaskedGather() function
/external/llvm/lib/Target/X86/
DX86TargetTransformInfo.h99 bool isLegalMaskedGather(Type *DataType);
DX86TargetTransformInfo.cpp1552 if ((Opcode == Instruction::Load && !isLegalMaskedGather(SrcVTy)) || in getGatherScatterOpCost()
1583 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy) { in isLegalMaskedGather() function in X86TTIImpl
1605 return isLegalMaskedGather(DataType); in isLegalMaskedScatter()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86TargetTransformInfo.h126 bool isLegalMaskedGather(Type *DataType);
DX86TargetTransformInfo.cpp2556 if ((Opcode == Instruction::Load && !isLegalMaskedGather(SrcVTy)) || in getGatherScatterOpCost()
2606 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy) { in isLegalMaskedGather() function in X86TTIImpl
2639 return isLegalMaskedGather(DataType); in isLegalMaskedScatter()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DTargetTransformInfo.h499 bool isLegalMaskedGather(Type *DataType) const;
1045 virtual bool isLegalMaskedGather(Type *DataType) = 0;
1281 bool isLegalMaskedGather(Type *DataType) override { in isLegalMaskedGather() function
1282 return Impl.isLegalMaskedGather(DataType); in isLegalMaskedGather()
DTargetTransformInfoImpl.h260 bool isLegalMaskedGather(Type *DataType) { return false; } in isLegalMaskedGather() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DTargetTransformInfo.cpp174 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType) const { in isLegalMaskedGather() function in TargetTransformInfo
175 return TTIImpl->isLegalMaskedGather(DataType); in isLegalMaskedGather()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DScalarizeMaskedMemIntrin.cpp649 if (!TTI->isLegalMaskedGather(CI->getType())) { in optimizeCallInst()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1469 bool isLegalMaskedGather(Type *DataType) { in isLegalMaskedGather() function in __anon63bf7e8f0111::LoopVectorizationLegality
1470 return TTI->isLegalMaskedGather(DataType); in isLegalMaskedGather()
2431 !ConsecutiveStride && ((LI && Legal->isLegalMaskedGather(ScalarDataTy)) || in vectorizeMemoryInstruction()
4878 isLegalMaskedGather(LI->getType())) { in blockCanBePredicated()
5736 return (isa<LoadInst>(I) && Legal->isLegalMaskedGather(DataTy)) || in isGatherOrScatterLegal()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1399 bool isLegalMaskedGather(Type *DataType) { in isLegalMaskedGather() function in llvm::LoopVectorizationCostModel
1400 return TTI.isLegalMaskedGather(DataType); in isLegalMaskedGather()
1411 return (LI && isLegalMaskedGather(Ty)) || (SI && isLegalMaskedScatter(Ty)); in isLegalGatherOrScatter()
4364 !(isLegalMaskedLoad(Ty, Ptr) || isLegalMaskedGather(Ty)) in isScalarWithPredication()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp1863 if (!TTI->isLegalMaskedGather(CI->getType())) { in optimizeCallInst()