blob: 778222ee6c960dee347c48bba70fd8b8440c4536 [file] [log] [blame]
Edward O'Callaghan1fcb40b2009-08-05 19:06:50 +00001/* ===-- mulvti3.c - Implement __mulvti3 -----------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is distributed under the University of Illinois Open Source
6 * License. See LICENSE.TXT for details.
7 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __mulvti3 for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
15#if __x86_64
16
17#include "int_lib.h"
18#include <stdlib.h>
19
Edward O'Callaghan1fcb40b2009-08-05 19:06:50 +000020/* Returns: a * b */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000021
Edward O'Callaghan1fcb40b2009-08-05 19:06:50 +000022/* Effects: aborts if a * b overflows */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000023
24ti_int
25__mulvti3(ti_int a, ti_int b)
26{
27 const int N = (int)(sizeof(ti_int) * CHAR_BIT);
28 const ti_int MIN = (ti_int)1 << (N-1);
29 const ti_int MAX = ~MIN;
30 if (a == MIN)
31 {
32 if (b == 0 || b == 1)
33 return a * b;
Daniel Dunbar48f46ac2010-03-31 17:00:45 +000034 compilerrt_abort();
Daniel Dunbarb3a69012009-06-26 16:47:03 +000035 }
36 if (b == MIN)
37 {
38 if (a == 0 || a == 1)
39 return a * b;
Daniel Dunbar48f46ac2010-03-31 17:00:45 +000040 compilerrt_abort();
Daniel Dunbarb3a69012009-06-26 16:47:03 +000041 }
42 ti_int sa = a >> (N - 1);
43 ti_int abs_a = (a ^ sa) - sa;
44 ti_int sb = b >> (N - 1);
45 ti_int abs_b = (b ^ sb) - sb;
46 if (abs_a < 2 || abs_b < 2)
47 return a * b;
48 if (sa == sb)
49 {
50 if (abs_a > MAX / abs_b)
Daniel Dunbar48f46ac2010-03-31 17:00:45 +000051 compilerrt_abort();
Daniel Dunbarb3a69012009-06-26 16:47:03 +000052 }
53 else
54 {
55 if (abs_a > MIN / -abs_b)
Daniel Dunbar48f46ac2010-03-31 17:00:45 +000056 compilerrt_abort();
Daniel Dunbarb3a69012009-06-26 16:47:03 +000057 }
58 return a * b;
59}
60
61#endif