Home
last modified time | relevance | path

Searched refs:isLegalMaskedGather (Results 1 – 16 of 16) 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-10.0/llvm/lib/Target/X86/
DX86TargetTransformInfo.h192 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment);
DX86TargetTransformInfo.cpp3305 !isLegalMaskedGather(SrcVTy, MaybeAlign(Alignment))) || in getGatherScatterOpCost()
3430 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy, MaybeAlign Alignment) { in isLegalMaskedGather() function in X86TTIImpl
3472 return isLegalMaskedGather(DataType, Alignment); in isLegalMaskedScatter()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMTargetTransformInfo.h162 bool isLegalMaskedGather(Type *Ty, MaybeAlign Alignment);
DARMTargetTransformInfo.cpp520 bool ARMTTIImpl::isLegalMaskedGather(Type *Ty, MaybeAlign Alignment) { in isLegalMaskedGather() function in ARMTTIImpl
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfo.h602 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) const;
1241 virtual bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) = 0;
1543 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) override { in isLegalMaskedGather() function
1544 return Impl.isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
DTargetTransformInfoImpl.h279 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedGather() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTargetTransformInfo.cpp318 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType, in isLegalMaskedGather() function in TargetTransformInfo
320 return TTIImpl->isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DScalarizeMaskedMemIntrin.cpp874 if (TTI->isLegalMaskedGather(CI->getType(), MaybeAlign(Alignment))) in optimizeCallInst()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1469 bool isLegalMaskedGather(Type *DataType) { in isLegalMaskedGather() function in __anon4a4ec4140111::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-10.0/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1223 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedGather() function in llvm::LoopVectorizationCostModel
1224 return TTI.isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
1236 return (LI && isLegalMaskedGather(Ty, Align)) || in isLegalGatherOrScatter()
4623 isLegalMaskedGather(Ty, Alignment)) in isScalarWithPredication()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp1863 if (!TTI->isLegalMaskedGather(CI->getType())) { in optimizeCallInst()