Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DFixedPointBuilder.h192 bool UseSigned = DstSema.isSigned() || DstSema.hasUnsignedPadding(); in CreateFloatingToFixed() local
205 UseSigned ? Intrinsic::fptosi_sat : Intrinsic::fptoui_sat; in CreateFloatingToFixed()
208 Result = UseSigned ? B.CreateFPToSI(Result, ResultTy) in CreateFloatingToFixed()
231 bool UseSigned = CommonSema.isSigned() || CommonSema.hasUnsignedPadding(); in CreateAdd() local
257 bool UseSigned = CommonSema.isSigned() || CommonSema.hasUnsignedPadding(); in CreateSub() local
291 bool UseSigned = CommonSema.isSigned() || CommonSema.hasUnsignedPadding(); in CreateMul() local
298 IID = UseSigned ? Intrinsic::smul_fix_sat : Intrinsic::umul_fix_sat; in CreateMul()
300 IID = UseSigned ? Intrinsic::smul_fix : Intrinsic::umul_fix; in CreateMul()
326 IID = UseSigned ? Intrinsic::sdiv_fix_sat : Intrinsic::udiv_fix_sat; in CreateDiv()
328 IID = UseSigned ? Intrinsic::sdiv_fix : Intrinsic::udiv_fix; in CreateDiv()
[all …]