Searched refs:isLegalICmpImmediate (Results 1 - 23 of 23) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.h127 bool isLegalICmpImmediate(int64_t) const override;
H A DMSP430ISelLowering.cpp369 bool MSP430TargetLowering::isLegalICmpImmediate(int64_t Immed) const { function in class:MSP430TargetLowering
372 return TargetLowering::isLegalICmpImmediate(Immed);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h71 bool isLegalICmpImmediate(int64_t Imm) const override;
H A DRISCVISelLowering.cpp301 bool RISCVTargetLowering::isLegalICmpImmediate(int64_t Imm) const { function in class:RISCVTargetLowering
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h553 bool isLegalICmpImmediate(int64_t Imm) const;
1222 virtual bool isLegalICmpImmediate(int64_t Imm) = 0;
1499 bool isLegalICmpImmediate(int64_t Imm) override {
1500 return Impl.isLegalICmpImmediate(Imm);
H A DTargetTransformInfoImpl.h228 bool isLegalICmpImmediate(int64_t Imm) { return false; } function in class:llvm::TargetTransformInfoImplBase
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.h298 /// isLegalICmpImmediate - Return true if the specified immediate is legal
302 bool isLegalICmpImmediate(int64_t Imm) const override;
H A DHexagonISelLowering.cpp3162 /// isLegalICmpImmediate - Return true if the specified immediate is legal
3166 bool HexagonTargetLowering::isLegalICmpImmediate(int64_t Imm) const { function in class:HexagonTargetLowering
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h429 bool isLegalICmpImmediate(int64_t Imm) const override;
H A DSystemZISelLowering.cpp819 bool SystemZTargetLowering::isLegalICmpImmediate(int64_t Imm) const { function in class:SystemZTargetLowering
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp262 bool TargetTransformInfo::isLegalICmpImmediate(int64_t Imm) const { function in class:TargetTransformInfo
263 return TTIImpl->isLegalICmpImmediate(Imm);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h233 bool isLegalICmpImmediate(int64_t imm) { function in class:llvm::BasicTTIImplBase
234 return getTLI()->isLegalICmpImmediate(imm);
H A DTargetLowering.h2207 virtual bool isLegalICmpImmediate(int64_t) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h421 bool isLegalICmpImmediate(int64_t) const override;
H A DAArch64ISelLowering.cpp9458 bool AArch64TargetLowering::isLegalICmpImmediate(int64_t Immed) const { function in class:AArch64TargetLowering
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h386 /// isLegalICmpImmediate - Return true if the specified immediate is legal
390 bool isLegalICmpImmediate(int64_t Imm) const override;
H A DARMISelLowering.cpp4221 if (!isLegalICmpImmediate((int32_t)C)) {
4227 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
4234 if (C != 0 && isLegalICmpImmediate(C-1)) {
4241 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
4248 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
15334 /// isLegalICmpImmediate - Return true if the specified immediate is legal
15338 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const { function in class:ARMTargetLowering
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h842 /// isLegalICmpImmediate - Return true if the specified immediate is legal
846 bool isLegalICmpImmediate(int64_t Imm) const override;
H A DPPCISelLowering.cpp15259 bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const { function in class:PPCTargetLowering
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1032 bool isLegalICmpImmediate(int64_t Imm) const override;
H A DX86ISelLowering.cpp[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3583 isLegalICmpImmediate(C.getSExtValue())))) {
3603 isLegalICmpImmediate(C.getSExtValue())))) {
3715 !isLegalICmpImmediate(C1.getSExtValue())) {
3752 isLegalICmpImmediate(NewC.getSExtValue()) &&
3905 LegalRHSImm = isLegalICmpImmediate(RHSC->getSExtValue());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1665 return TTI.isLegalICmpImmediate(BaseOffset);

Completed in 702 milliseconds