1 1.1 joerg /* ===-- ashlti3.c - Implement __ashlti3 -----------------------------------=== 2 1.1 joerg * 3 1.1 joerg * The LLVM Compiler Infrastructure 4 1.1 joerg * 5 1.1 joerg * This file is dual licensed under the MIT and the University of Illinois Open 6 1.1 joerg * Source Licenses. See LICENSE.TXT for details. 7 1.1 joerg * 8 1.1 joerg * ===----------------------------------------------------------------------=== 9 1.1 joerg * 10 1.1 joerg * This file implements __ashlti3 for the compiler_rt library. 11 1.1 joerg * 12 1.1 joerg * ===----------------------------------------------------------------------=== 13 1.1 joerg */ 14 1.1 joerg 15 1.1 joerg #include "int_lib.h" 16 1.1 joerg 17 1.1 joerg #ifdef CRT_HAS_128BIT 18 1.1 joerg 19 1.1 joerg /* Returns: a << b */ 20 1.1 joerg 21 1.1 joerg /* Precondition: 0 <= b < bits_in_tword */ 22 1.1 joerg 23 1.1.1.2 joerg COMPILER_RT_ABI ti_int 24 1.1 joerg __ashlti3(ti_int a, si_int b) 25 1.1 joerg { 26 1.1 joerg const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT); 27 1.1 joerg twords input; 28 1.1 joerg twords result; 29 1.1 joerg input.all = a; 30 1.1 joerg if (b & bits_in_dword) /* bits_in_dword <= b < bits_in_tword */ 31 1.1 joerg { 32 1.1 joerg result.s.low = 0; 33 1.1 joerg result.s.high = input.s.low << (b - bits_in_dword); 34 1.1 joerg } 35 1.1 joerg else /* 0 <= b < bits_in_dword */ 36 1.1 joerg { 37 1.1 joerg if (b == 0) 38 1.1 joerg return a; 39 1.1 joerg result.s.low = input.s.low << b; 40 1.1 joerg result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b)); 41 1.1 joerg } 42 1.1 joerg return result.all; 43 1.1 joerg } 44 1.1 joerg 45 1.1 joerg #endif /* CRT_HAS_128BIT */ 46