/external/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 134 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/ |
D | TargetTransformInfo.h | 342 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()
|
D | TargetTransformInfoImpl.h | 218 bool isLegalMaskedGather(Type *DataType) { return false; } in isLegalMaskedGather() function
|
/external/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.h | 99 bool isLegalMaskedGather(Type *DataType);
|
D | X86TargetTransformInfo.cpp | 1552 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/ |
D | X86TargetTransformInfo.h | 192 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment);
|
D | X86TargetTransformInfo.cpp | 3305 !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/ |
D | ARMTargetTransformInfo.h | 162 bool isLegalMaskedGather(Type *Ty, MaybeAlign Alignment);
|
D | ARMTargetTransformInfo.cpp | 520 bool ARMTTIImpl::isLegalMaskedGather(Type *Ty, MaybeAlign Alignment) { in isLegalMaskedGather() function in ARMTTIImpl
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 602 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()
|
D | TargetTransformInfoImpl.h | 279 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedGather() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 318 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/ |
D | ScalarizeMaskedMemIntrin.cpp | 874 if (TTI->isLegalMaskedGather(CI->getType(), MaybeAlign(Alignment))) in optimizeCallInst()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 1469 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/ |
D | LoopVectorize.cpp | 1223 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/ |
D | CodeGenPrepare.cpp | 1863 if (!TTI->isLegalMaskedGather(CI->getType())) { in optimizeCallInst()
|