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

/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h214 bool isLegalMaskedLoad(Type *DataType) { return false; } function in class:llvm::TargetTransformInfoImplBase
/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp130 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType) const { function in class:TargetTransformInfo
131 return TTIImpl->isLegalMaskedLoad(DataType);
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp1139 if ((Opcode == Instruction::Load && !isLegalMaskedLoad(SrcVTy)) ||
1570 bool X86TTIImpl::isLegalMaskedLoad(Type *DataTy) { function in class:X86TTIImpl
1580 return isLegalMaskedLoad(DataType);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1459 bool isLegalMaskedLoad(Type *DataType, Value *Ptr) { function in class:__anon13582::LoopVectorizationLegality
1460 return isConsecutivePtr(Ptr) && TTI->isLegalMaskedLoad(DataType);
4877 if (isLegalMaskedLoad(LI->getType(), LI->getPointerOperand()) ||

Completed in 72 milliseconds