Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMipsISelLowering.h625 bool shouldSignExtendTypeInLibCall(EVT Type, bool IsSigned) const override;
H A DMipsISelLowering.cpp3549 MipsTargetLowering::shouldSignExtendTypeInLibCall(EVT Type, bool IsSigned) const { in shouldSignExtendTypeInLibCall() function in MipsTargetLowering
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2003 Entry.IsSExt = TLI.shouldSignExtendTypeInLibCall(ArgVT, isSigned); in ExpandLibCall()
2004 Entry.IsZExt = !TLI.shouldSignExtendTypeInLibCall(ArgVT, isSigned); in ExpandLibCall()
2030 bool signExtend = TLI.shouldSignExtendTypeInLibCall(RetVT, isSigned); in ExpandLibCall()
H A DTargetLowering.cpp132 Entry.IsSExt = shouldSignExtendTypeInLibCall(Op.getValueType(), isSigned); in makeLibCall()
133 Entry.IsZExt = !shouldSignExtendTypeInLibCall(Op.getValueType(), isSigned); in makeLibCall()
144 bool signExtend = shouldSignExtendTypeInLibCall(RetVT, isSigned); in makeLibCall()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DTargetLowering.h1700 virtual bool shouldSignExtendTypeInLibCall(EVT Type, bool IsSigned) const { in shouldSignExtendTypeInLibCall() function