1*7c3d14c8STreehugger Robot /* ===-- multi3.c - Implement __multi3 -------------------------------------=== 2*7c3d14c8STreehugger Robot * 3*7c3d14c8STreehugger Robot * The LLVM Compiler Infrastructure 4*7c3d14c8STreehugger Robot * 5*7c3d14c8STreehugger Robot * This file is dual licensed under the MIT and the University of Illinois Open 6*7c3d14c8STreehugger Robot * Source Licenses. See LICENSE.TXT for details. 7*7c3d14c8STreehugger Robot * 8*7c3d14c8STreehugger Robot * ===----------------------------------------------------------------------=== 9*7c3d14c8STreehugger Robot 10*7c3d14c8STreehugger Robot * This file implements __multi3 for the compiler_rt library. 11*7c3d14c8STreehugger Robot * 12*7c3d14c8STreehugger Robot * ===----------------------------------------------------------------------=== 13*7c3d14c8STreehugger Robot */ 14*7c3d14c8STreehugger Robot 15*7c3d14c8STreehugger Robot #include "int_lib.h" 16*7c3d14c8STreehugger Robot 17*7c3d14c8STreehugger Robot #ifdef CRT_HAS_128BIT 18*7c3d14c8STreehugger Robot 19*7c3d14c8STreehugger Robot /* Returns: a * b */ 20*7c3d14c8STreehugger Robot 21*7c3d14c8STreehugger Robot static 22*7c3d14c8STreehugger Robot ti_int __mulddi3(du_int a,du_int b)23*7c3d14c8STreehugger Robot__mulddi3(du_int a, du_int b) 24*7c3d14c8STreehugger Robot { 25*7c3d14c8STreehugger Robot twords r; 26*7c3d14c8STreehugger Robot const int bits_in_dword_2 = (int)(sizeof(di_int) * CHAR_BIT) / 2; 27*7c3d14c8STreehugger Robot const du_int lower_mask = (du_int)~0 >> bits_in_dword_2; 28*7c3d14c8STreehugger Robot r.s.low = (a & lower_mask) * (b & lower_mask); 29*7c3d14c8STreehugger Robot du_int t = r.s.low >> bits_in_dword_2; 30*7c3d14c8STreehugger Robot r.s.low &= lower_mask; 31*7c3d14c8STreehugger Robot t += (a >> bits_in_dword_2) * (b & lower_mask); 32*7c3d14c8STreehugger Robot r.s.low += (t & lower_mask) << bits_in_dword_2; 33*7c3d14c8STreehugger Robot r.s.high = t >> bits_in_dword_2; 34*7c3d14c8STreehugger Robot t = r.s.low >> bits_in_dword_2; 35*7c3d14c8STreehugger Robot r.s.low &= lower_mask; 36*7c3d14c8STreehugger Robot t += (b >> bits_in_dword_2) * (a & lower_mask); 37*7c3d14c8STreehugger Robot r.s.low += (t & lower_mask) << bits_in_dword_2; 38*7c3d14c8STreehugger Robot r.s.high += t >> bits_in_dword_2; 39*7c3d14c8STreehugger Robot r.s.high += (a >> bits_in_dword_2) * (b >> bits_in_dword_2); 40*7c3d14c8STreehugger Robot return r.all; 41*7c3d14c8STreehugger Robot } 42*7c3d14c8STreehugger Robot 43*7c3d14c8STreehugger Robot /* Returns: a * b */ 44*7c3d14c8STreehugger Robot 45*7c3d14c8STreehugger Robot COMPILER_RT_ABI ti_int __multi3(ti_int a,ti_int b)46*7c3d14c8STreehugger Robot__multi3(ti_int a, ti_int b) 47*7c3d14c8STreehugger Robot { 48*7c3d14c8STreehugger Robot twords x; 49*7c3d14c8STreehugger Robot x.all = a; 50*7c3d14c8STreehugger Robot twords y; 51*7c3d14c8STreehugger Robot y.all = b; 52*7c3d14c8STreehugger Robot twords r; 53*7c3d14c8STreehugger Robot r.all = __mulddi3(x.s.low, y.s.low); 54*7c3d14c8STreehugger Robot r.s.high += x.s.high * y.s.low + x.s.low * y.s.high; 55*7c3d14c8STreehugger Robot return r.all; 56*7c3d14c8STreehugger Robot } 57*7c3d14c8STreehugger Robot 58*7c3d14c8STreehugger Robot #endif /* CRT_HAS_128BIT */ 59