1*7c3d14c8STreehugger Robot /* ===-- muldi3.c - Implement __muldi3 -------------------------------------=== 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 __muldi3 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 /* Returns: a * b */ 18*7c3d14c8STreehugger Robot 19*7c3d14c8STreehugger Robot static 20*7c3d14c8STreehugger Robot di_int __muldsi3(su_int a,su_int b)21*7c3d14c8STreehugger Robot__muldsi3(su_int a, su_int b) 22*7c3d14c8STreehugger Robot { 23*7c3d14c8STreehugger Robot dwords r; 24*7c3d14c8STreehugger Robot const int bits_in_word_2 = (int)(sizeof(si_int) * CHAR_BIT) / 2; 25*7c3d14c8STreehugger Robot const su_int lower_mask = (su_int)~0 >> bits_in_word_2; 26*7c3d14c8STreehugger Robot r.s.low = (a & lower_mask) * (b & lower_mask); 27*7c3d14c8STreehugger Robot su_int t = r.s.low >> bits_in_word_2; 28*7c3d14c8STreehugger Robot r.s.low &= lower_mask; 29*7c3d14c8STreehugger Robot t += (a >> bits_in_word_2) * (b & lower_mask); 30*7c3d14c8STreehugger Robot r.s.low += (t & lower_mask) << bits_in_word_2; 31*7c3d14c8STreehugger Robot r.s.high = t >> bits_in_word_2; 32*7c3d14c8STreehugger Robot t = r.s.low >> bits_in_word_2; 33*7c3d14c8STreehugger Robot r.s.low &= lower_mask; 34*7c3d14c8STreehugger Robot t += (b >> bits_in_word_2) * (a & lower_mask); 35*7c3d14c8STreehugger Robot r.s.low += (t & lower_mask) << bits_in_word_2; 36*7c3d14c8STreehugger Robot r.s.high += t >> bits_in_word_2; 37*7c3d14c8STreehugger Robot r.s.high += (a >> bits_in_word_2) * (b >> bits_in_word_2); 38*7c3d14c8STreehugger Robot return r.all; 39*7c3d14c8STreehugger Robot } 40*7c3d14c8STreehugger Robot 41*7c3d14c8STreehugger Robot /* Returns: a * b */ 42*7c3d14c8STreehugger Robot ARM_EABI_FNALIAS(lmul,muldi3)43*7c3d14c8STreehugger RobotARM_EABI_FNALIAS(lmul, muldi3) 44*7c3d14c8STreehugger Robot 45*7c3d14c8STreehugger Robot COMPILER_RT_ABI di_int 46*7c3d14c8STreehugger Robot __muldi3(di_int a, di_int b) 47*7c3d14c8STreehugger Robot { 48*7c3d14c8STreehugger Robot dwords x; 49*7c3d14c8STreehugger Robot x.all = a; 50*7c3d14c8STreehugger Robot dwords y; 51*7c3d14c8STreehugger Robot y.all = b; 52*7c3d14c8STreehugger Robot dwords r; 53*7c3d14c8STreehugger Robot r.all = __muldsi3(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