1 //===-- int_mulo_impl.inc - Implement __mulo[sdt]i4 ---------------*- C -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Helper used by __mulosi4, __mulodi4 and __muloti4.
11 //===----------------------------------------------------------------------===//
17 // Effects: sets *overflow to 1 if a * b overflows
19 static __inline fixint_t __muloXi4(fixint_t a, fixint_t b, int *overflow) {
20 const int N = (int)(sizeof(fixint_t) * CHAR_BIT);
21 const fixint_t MIN = (fixint_t)((fixuint_t)1 << (N - 1));
22 const fixint_t MAX = ~MIN;
24 fixint_t result = (fixuint_t)a * b;
35 fixint_t sa = a >> (N - 1);
36 fixint_t abs_a = (a ^ sa) - sa;
37 fixint_t sb = b >> (N - 1);
38 fixint_t abs_b = (b ^ sb) - sb;
39 if (abs_a < 2 || abs_b < 2)
42 if (abs_a > MAX / abs_b)
45 if (abs_a > MIN / -abs_b)