Lines Matching refs:ThisVal

65   APSInt ThisVal = getValue();  in compare()  local
78 ThisVal = ThisVal.extOrTrunc(CommonWidth); in compare()
82 ThisVal = ThisVal.shl(CommonScale - getScale()); in compare()
86 if (ThisVal.sgt(OtherVal)) in compare()
88 else if (ThisVal.slt(OtherVal)) in compare()
91 if (ThisVal.ugt(OtherVal)) in compare()
93 else if (ThisVal.ult(OtherVal)) in compare()
96 if (ThisVal.isSignBitSet()) in compare()
98 else if (ThisVal.ugt(OtherVal)) in compare()
100 else if (ThisVal.ult(OtherVal)) in compare()
106 else if (ThisVal.ugt(OtherVal)) in compare()
108 else if (ThisVal.ult(OtherVal)) in compare()
181 APSInt ThisVal = ConvertedThis.getValue(); in add() local
187 Result = CommonFXSema.isSigned() ? ThisVal.sadd_sat(OtherVal) in add()
188 : ThisVal.uadd_sat(OtherVal); in add()
190 Result = ThisVal.isSigned() ? ThisVal.sadd_ov(OtherVal, Overflowed) in add()
191 : ThisVal.uadd_ov(OtherVal, Overflowed); in add()
205 APSInt ThisVal = ConvertedThis.getValue(); in sub() local
211 Result = CommonFXSema.isSigned() ? ThisVal.ssub_sat(OtherVal) in sub()
212 : ThisVal.usub_sat(OtherVal); in sub()
214 Result = ThisVal.isSigned() ? ThisVal.ssub_ov(OtherVal, Overflowed) in sub()
215 : ThisVal.usub_ov(OtherVal, Overflowed); in sub()
229 APSInt ThisVal = ConvertedThis.getValue(); in mul() local
236 ThisVal = ThisVal.sext(Wide); in mul()
239 ThisVal = ThisVal.zext(Wide); in mul()
252 Result = ThisVal.smul_ov(OtherVal, Overflowed) in mul()
255 Result = ThisVal.umul_ov(OtherVal, Overflowed) in mul()
286 APSInt ThisVal = ConvertedThis.getValue(); in div() local
293 ThisVal = ThisVal.sext(Wide); in div()
296 ThisVal = ThisVal.zext(Wide); in div()
302 ThisVal = ThisVal.shl(CommonFXSema.getScale()); in div()
306 APInt::sdivrem(ThisVal, OtherVal, Result, Rem); in div()
309 if (ThisVal.isNegative() != OtherVal.isNegative() && !Rem.isZero()) in div()
312 Result = ThisVal.udiv(OtherVal); in div()
337 APSInt ThisVal = Val; in shl() local
343 ThisVal = ThisVal.sext(Wide); in shl()
345 ThisVal = ThisVal.zext(Wide); in shl()
348 Amt = std::min(Amt, ThisVal.getBitWidth()); in shl()
349 APSInt Result = ThisVal << Amt; in shl()