Home
last modified time | relevance | path

Searched refs:shouldSignExtendTypeInLibCall (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.h312 bool shouldSignExtendTypeInLibCall(Type *Ty, bool IsSigned) const override;
H A DLoongArchISelLowering.cpp8433 bool LoongArchTargetLowering::shouldSignExtendTypeInLibCall( in shouldSignExtendTypeInLibCall() function in LoongArchTargetLowering
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.h656 bool shouldSignExtendTypeInLibCall(Type *Ty, bool IsSigned) const override;
H A DMipsISelLowering.cpp3971 bool MipsTargetLowering::shouldSignExtendTypeInLibCall(Type *Ty, in shouldSignExtendTypeInLibCall() function in MipsTargetLowering
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h275 bool shouldSignExtendTypeInLibCall(Type *Ty, bool IsSigned) const override;
H A DRISCVISelLowering.cpp23768 bool RISCVTargetLowering::shouldSignExtendTypeInLibCall(Type *Ty, in shouldSignExtendTypeInLibCall() function in RISCVTargetLowering
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2159 bool signExtend = TLI.shouldSignExtendTypeInLibCall(RetTy, IsSigned); in ExpandLibCall()
2190 Entry.IsSExt = TLI.shouldSignExtendTypeInLibCall(ArgTy, isSigned); in ExpandLibCall()
2333 Arg.IsSExt = TLI.shouldSignExtendTypeInLibCall(ArgTy, /*IsSigned=*/false); in ExpandBitCountingLibCall()
H A DTargetLowering.cpp174 shouldSignExtendTypeInLibCall(Entry.Ty, CallOptions.IsSigned); in makeLibCall()
193 bool signExtend = shouldSignExtendTypeInLibCall(RetTy, CallOptions.IsSigned); in makeLibCall()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h2346 virtual bool shouldSignExtendTypeInLibCall(Type *Ty, bool IsSigned) const { in shouldSignExtendTypeInLibCall() function
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2467 Entry.IsSExt = shouldSignExtendTypeInLibCall(Entry.Ty, IsSigned); in makeExternalCall()
2477 bool SignExtend = shouldSignExtendTypeInLibCall(RetTy, IsSigned); in makeExternalCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp19500 bool SignExtend = TLI.shouldSignExtendTypeInLibCall(RetTy, false); in lowerToLibCall()
19508 Entry.IsSExt = TLI.shouldSignExtendTypeInLibCall(ArgTy, SignExtend); in lowerToLibCall()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp947 if (TLI.shouldSignExtendTypeInLibCall(FromType, IsSigned)) in conversionLibcall()