/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-7.0/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.h | 126 bool isLegalMaskedGather(Type *DataType);
|
D | X86TargetTransformInfo.cpp | 2556 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/ |
D | TargetTransformInfo.h | 499 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()
|
D | TargetTransformInfoImpl.h | 260 bool isLegalMaskedGather(Type *DataType) { return false; } in isLegalMaskedGather() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 174 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/ |
D | ScalarizeMaskedMemIntrin.cpp | 649 if (!TTI->isLegalMaskedGather(CI->getType())) { in optimizeCallInst()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 1469 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/ |
D | LoopVectorize.cpp | 1399 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/ |
D | CodeGenPrepare.cpp | 1863 if (!TTI->isLegalMaskedGather(CI->getType())) { in optimizeCallInst()
|