Searched defs:isLegalMaskedGather (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h218 bool isLegalMaskedGather(Type *DataType) { return false; } function in class:llvm::TargetTransformInfoImplBase
/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp134 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType) const { function in class:TargetTransformInfo
135 return TTIImpl->isLegalMaskedGather(DataType);
139 return TTIImpl->isLegalMaskedGather(DataType);
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp1552 if ((Opcode == Instruction::Load && !isLegalMaskedGather(SrcVTy)) ||
1583 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy) { function in class:X86TTIImpl
1605 return isLegalMaskedGather(DataType);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1469 bool isLegalMaskedGather(Type *DataType) { function in class:__anon13582::LoopVectorizationLegality
1470 return TTI->isLegalMaskedGather(DataType);
2431 !ConsecutiveStride && ((LI && Legal->isLegalMaskedGather(ScalarDataTy)) ||
4878 isLegalMaskedGather(LI->getType())) {
5736 return (isa<LoadInst>(I) && Legal->isLegalMaskedGather(DataTy)) ||

Completed in 2059 milliseconds