Lines Matching full:overflow
202 Label overflow(env_); in DoubleToInt() local
214 BRANCH_CIR2(Int32LessThan(exp, bits), exit, &overflow); in DoubleToInt()
216 Bind(&overflow); in DoubleToInt()
232 Label overflow(env_); in DoubleToInt() local
238 // 0x80000000: amd64 overflow return value in DoubleToInt()
239 BRANCH_CIR2(Int32Equal(xInt, Int32(0x80000000)), &overflow, &exit); in DoubleToInt()
248 BRANCH_CIR2(Int32LessThan(exp, bits), &exit, &overflow); in DoubleToInt()
250 Bind(&overflow); in DoubleToInt()
301 Label overflow(env_); in DoubleInRangeInt32() local
308 Branch(DoubleGreaterThan(x, Max), &overflow, &checkUnderflow); in DoubleInRangeInt32()
309 Bind(&overflow); in DoubleInRangeInt32()