12fe8fb19SBen Gras/* 22fe8fb19SBen Gras * Copyright (c) 1983, 1993 32fe8fb19SBen Gras * The Regents of the University of California. All rights reserved. 42fe8fb19SBen Gras * 52fe8fb19SBen Gras * Redistribution and use in source and binary forms, with or without 62fe8fb19SBen Gras * modification, are permitted provided that the following conditions 72fe8fb19SBen Gras * are met: 82fe8fb19SBen Gras * 1. Redistributions of source code must retain the above copyright 92fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer. 102fe8fb19SBen Gras * 2. Redistributions in binary form must reproduce the above copyright 112fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer in the 122fe8fb19SBen Gras * documentation and/or other materials provided with the distribution. 132fe8fb19SBen Gras * 3. Neither the name of the University nor the names of its contributors 142fe8fb19SBen Gras * may be used to endorse or promote products derived from this software 152fe8fb19SBen Gras * without specific prior written permission. 162fe8fb19SBen Gras * 172fe8fb19SBen Gras * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 182fe8fb19SBen Gras * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 192fe8fb19SBen Gras * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 202fe8fb19SBen Gras * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 212fe8fb19SBen Gras * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 222fe8fb19SBen Gras * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 232fe8fb19SBen Gras * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 242fe8fb19SBen Gras * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 252fe8fb19SBen Gras * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 262fe8fb19SBen Gras * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 272fe8fb19SBen Gras * SUCH DAMAGE. 282fe8fb19SBen Gras */ 292fe8fb19SBen Gras 302fe8fb19SBen Gras/* 312fe8fb19SBen Gras * double ldexp (value, exp) 322fe8fb19SBen Gras * double value; 332fe8fb19SBen Gras * int exp; 342fe8fb19SBen Gras * 352fe8fb19SBen Gras * Ldexp returns value*2**exp, if that result is in range. 362fe8fb19SBen Gras * If underflow occurs, it returns zero. If overflow occurs, 372fe8fb19SBen Gras * it returns a value of appropriate sign and largest 382fe8fb19SBen Gras * possible magnitude. In case of either overflow or underflow, 392fe8fb19SBen Gras * errno is set to ERANGE. Note that errno is not modified if 402fe8fb19SBen Gras * no error occurs. 412fe8fb19SBen Gras */ 422fe8fb19SBen Gras 432fe8fb19SBen Gras#include "DEFS.h" 44*e415d488SLionel Sambuc#include "assym.h" 452fe8fb19SBen Gras 46*e415d488SLionel Sambuc#if defined(LIBC_SCCS) && !defined(lint) 47*e415d488SLionel Sambuc /*.asciz "@(#)ldexp.s 8.1 (Berkeley) 6/4/93" */ 48*e415d488SLionel SambucRCSID("$NetBSD: ldexp.S,v 1.7 2011/01/25 02:38:15 matt Exp $") 49*e415d488SLionel Sambuc#endif /* LIBC_SCCS and not lint */ 502fe8fb19SBen Gras 51*e415d488SLionel Sambuc#ifndef _REENTRANT 522fe8fb19SBen Gras .globl _C_LABEL(errno) 53*e415d488SLionel Sambuc#endif 542fe8fb19SBen Gras 552fe8fb19SBen GrasENTRY(ldexp, 0) 562fe8fb19SBen Gras movd 4(%ap),%r0 /* fetch "value" */ 572fe8fb19SBen Gras extzv $7,$8,%r0,%r2 /* %r2 := biased exponent */ 582fe8fb19SBen Gras jeql 1f /* if zero, done */ 592fe8fb19SBen Gras 602fe8fb19SBen Gras addl2 12(%ap),%r2 /* %r2 := new biased exponent */ 612fe8fb19SBen Gras jleq 2f /* if <= 0, underflow */ 622fe8fb19SBen Gras cmpl %r2,$256 /* otherwise check if too big */ 632fe8fb19SBen Gras jgeq 3f /* jump if overflow */ 642fe8fb19SBen Gras insv %r2,$7,$8,%r0 /* put exponent back in result */ 652fe8fb19SBen Gras1: 662fe8fb19SBen Gras ret 672fe8fb19SBen Gras2: 682fe8fb19SBen Gras clrd %r0 692fe8fb19SBen Gras jbr 1f 702fe8fb19SBen Gras3: 71*e415d488SLionel Sambuc /* 72*e415d488SLionel Sambuc * The largest number that can be represented in a long floating 73*e415d488SLionel Sambuc * number. This is given in hex in order to avoid floating 74*e415d488SLionel Sambuc * conversions 75*e415d488SLionel Sambuc */ 76*e415d488SLionel Sambuc movq $0x7fffffffffffffff,%r0 /* largest possible floating magnitude */ 772fe8fb19SBen Gras jbc $15,4(%ap),1f /* jump if argument was positive */ 782fe8fb19SBen Gras mnegd %r0,%r0 /* if arg < 0, make result negative */ 792fe8fb19SBen Gras1: 802fe8fb19SBen Gras#ifdef _REENTRANT 812fe8fb19SBen Gras pushl %r0 822fe8fb19SBen Gras calls $0,_C_LABEL(__errno) 832fe8fb19SBen Gras movl $ ERANGE,(%r0) 842fe8fb19SBen Gras movl (%sp)+,%r0 852fe8fb19SBen Gras#else 862fe8fb19SBen Gras movl $ ERANGE,_C_LABEL(errno) 872fe8fb19SBen Gras#endif 882fe8fb19SBen Gras ret 89*e415d488SLionel SambucEND(ldexp) 90