Home
last modified time | relevance | path

Searched refs:getPopcntSupport (Results 1 – 20 of 20) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetTransformInfo.h49 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth) const;
H A DWebAssemblyTargetTransformInfo.cpp23 WebAssemblyTTIImpl::getPopcntSupport(unsigned TyWidth) const { in getPopcntSupport() function in WebAssemblyTTIImpl
/llvm-project-15.0.7/llvm/lib/Target/Lanai/
H A DLanaiTargetTransformInfo.h46 TargetTransformInfo::PopcntSupportKind getPopcntSupport(unsigned TyWidth) { in getPopcntSupport() function
/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h53 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
H A DSystemZTargetTransformInfo.cpp274 SystemZTTIImpl::getPopcntSupport(unsigned TyWidth) { in getPopcntSupport() function in SystemZTTIImpl
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.h60 TTI::PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const;
H A DHexagonTargetTransformInfo.cpp59 HexagonTTIImpl::getPopcntSupport(unsigned IntTyWidthInBit) const { in getPopcntSupport() function in HexagonTTIImpl
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h65 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
H A DPPCTargetTransformInfo.cpp54 PPCTTIImpl::getPopcntSupport(unsigned TyWidth) { in getPopcntSupport() function in PPCTTIImpl
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.h110 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth) { in getPopcntSupport() function
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.h56 TargetTransformInfo::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
H A DRISCVTargetTransformInfo.cpp115 RISCVTTIImpl::getPopcntSupport(unsigned TyWidth) { in getPopcntSupport() function in RISCVTTIImpl
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h84 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
H A DAArch64TargetTransformInfo.cpp293 AArch64TTIImpl::getPopcntSupport(unsigned TyWidth) { in getPopcntSupport() function in AArch64TTIImpl
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h110 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
H A DX86TargetTransformInfo.cpp61 X86TTIImpl::getPopcntSupport(unsigned TyWidth) { in getPopcntSupport() function in X86TTIImpl
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h846 PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const;
1652 virtual PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) = 0;
2128 PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) override { in getPopcntSupport() function
2129 return Impl.getPopcntSupport(IntTyWidthInBit); in getPopcntSupport()
H A DTargetTransformInfoImpl.h366 TTI::PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const { in getPopcntSupport() function
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp563 TargetTransformInfo::getPopcntSupport(unsigned IntTyWidthInBit) const { in getPopcntSupport() function in TargetTransformInfo
564 return TTIImpl->getPopcntSupport(IntTyWidthInBit); in getPopcntSupport()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp1943 if (TTI->getPopcntSupport(32) != TargetTransformInfo::PSK_FastHardware) in recognizePopcount()