Home
last modified time | relevance | path

Searched refs:isLegalNTLoad (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86TargetTransformInfo.h190 bool isLegalNTLoad(Type *DataType, Align Alignment);
DX86TargetTransformInfo.cpp3367 bool X86TTIImpl::isLegalNTLoad(Type *DataType, Align Alignment) { in isLegalNTLoad() function in X86TTIImpl
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfo.h597 bool isLegalNTLoad(Type *DataType, Align Alignment) const;
1239 virtual bool isLegalNTLoad(Type *DataType, Align Alignment) = 0;
1537 bool isLegalNTLoad(Type *DataType, Align Alignment) override { in isLegalNTLoad() function
1538 return Impl.isLegalNTLoad(DataType, Alignment); in isLegalNTLoad()
DTargetTransformInfoImpl.h268 bool isLegalNTLoad(Type *DataType, Align Alignment) { in isLegalNTLoad() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTargetTransformInfo.cpp314 bool TargetTransformInfo::isLegalNTLoad(Type *DataType, Align Alignment) const { in isLegalNTLoad() function in TargetTransformInfo
315 return TTIImpl->isLegalNTLoad(DataType, Alignment); in isLegalNTLoad()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DLoopVectorizationLegality.cpp763 if (!TTI->isLegalNTLoad(VecTy, *Alignment)) { in canVectorizeInstrs()