1 1.1 joerg /*===-- powisf2.cpp - Implement __powisf2 ---------------------------------=== 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 __powisf2 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 /* Returns: a ^ b */ 18 1.1 joerg 19 1.1 joerg COMPILER_RT_ABI float 20 1.1 joerg __powisf2(float a, si_int b) 21 1.1 joerg { 22 1.1 joerg const int recip = b < 0; 23 1.1 joerg float r = 1; 24 1.1 joerg while (1) 25 1.1 joerg { 26 1.1 joerg if (b & 1) 27 1.1 joerg r *= a; 28 1.1 joerg b /= 2; 29 1.1 joerg if (b == 0) 30 1.1 joerg break; 31 1.1 joerg a *= a; 32 1.1 joerg } 33 1.1 joerg return recip ? 1/r : r; 34 1.1 joerg } 35