Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h422 bool shouldTreatInstructionLikeSelect(const Instruction *I);
H A DAArch64TargetTransformInfo.cpp4400 bool AArch64TTIImpl::shouldTreatInstructionLikeSelect(const Instruction *I) { in shouldTreatInstructionLikeSelect() function in AArch64TTIImpl
4409 return BaseT::shouldTreatInstructionLikeSelect(I); in shouldTreatInstructionLikeSelect()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h971 bool shouldTreatInstructionLikeSelect(const Instruction *I) const;
1955 virtual bool shouldTreatInstructionLikeSelect(const Instruction *I) = 0;
2516 bool shouldTreatInstructionLikeSelect(const Instruction *I) override { in shouldTreatInstructionLikeSelect() function
2517 return Impl.shouldTreatInstructionLikeSelect(I); in shouldTreatInstructionLikeSelect()
H A DTargetTransformInfoImpl.h401 bool shouldTreatInstructionLikeSelect(const Instruction *I) { in shouldTreatInstructionLikeSelect() function
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp633 bool TargetTransformInfo::shouldTreatInstructionLikeSelect( in shouldTreatInstructionLikeSelect() function in TargetTransformInfo
635 return TTIImpl->shouldTreatInstructionLikeSelect(I); in shouldTreatInstructionLikeSelect()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSelectOptimize.cpp784 if (!TTI->shouldTreatInstructionLikeSelect(I)) in collectSelectGroups()