root/usr/src/lib/libm/i386/src/ieee_funcl.S
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License (the "License").
 * You may not use this file except in compliance with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
 */
/*
 * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

        .file "ieee_funcl.s"

#include "libm.h"

        ENTRY(isinfl)
        movl    12(%esp),%eax           / ax <-- sign and bexp of x
        notl    %eax
        andl    $0x00007fff,%eax
        jz      .L6
        movl    $0,%eax
.not_inf:
        ret

.L6:                                    / here, (eax) = 0.0
        movl    8(%esp),%ecx
        xorl    $0x80000000,%ecx        / handle unsupported implicitly
        orl     4(%esp), %ecx
        jnz     .not_inf
        movl    $1,%eax
        ret
        .align  4
        SET_SIZE(isinfl)

        ENTRY(isnormall)
                                        / TRUE iff (x is finite, but
                                        /           neither subnormal nor zero)
                                        /      iff (msb(sgnfcnd(x) /= 0
                                        /           &  0 < bexp(x) < 0x7fff)
        movl    8(%esp),%eax            / eax <-- hi_32(sgnfcnd(x))
        andl    $0x80000000,%eax        / eax[31]  <-- msb(sgnfcnd(x)),
                                        / rest_of(eax) <-- 0
        jz      .L8                     / jump iff msb(sgnfcnd(x)) = 0
        movl    12(%esp),%eax           / ax <-- sign and bexp of x
        notl    %eax                    / ax[0..14] <-- not(bexp(x))
        andl    $0x00007fff,%eax        / eax  <-- zero_xtnd(not(bexp(x)))
        jz      .L8                     / jump  iff bexp(x) = 0x7fff or 0
        xorl    $0x00007fff,%eax        / treat pseudo-denormal as subnormal
        jz      .L8
        movl    $1,%eax
.L8:
        ret
        .align  4
        SET_SIZE(isnormall)

        ENTRY(issubnormall)
                                        / TRUE iff (bexp(x) = 0 &
                                        / msb(sgnfcnd(x)) = 0 & frac(x) /= 0)
        movl    8(%esp),%eax            / eax <-- hi_32(sgnfcnd(x))
        testl   $0x80000000,%eax        / eax[31] = msb(sgnfcnd(x));
                                        / set ZF if it's 0.
        jz      .may_be_subnorm         / jump iff msb(sgnfcnd(x)) = 0
.not_subnorm:
        movl    $0,%eax
.quicker_out:
        ret
.may_be_subnorm:
        testl   $0x00007fff,12(%esp)    / set ZF iff bexp(x)  = 0
        jnz     .not_subnorm            / jump   iff bexp(x) /= 0
        orl     4(%esp),%eax            / (eax) = 0 iff sgnfcnd(x) = 0
        jz      .quicker_out
        movl    $1,%eax
        ret
        .align  4
        SET_SIZE(issubnormall)

        ENTRY(iszerol)
        movl    12(%esp),%eax           / ax <-- sign and bexp of x
        andl    $0x00007fff,%eax        / eax <-- zero_xtnd(bexp(x))
        jz      .may_be_zero            / jump iff bexp(x) = 0
.not_zero:
        movl    $0,%eax
        ret
.may_be_zero:                           / here, (eax) = 0
        orl     8(%esp),%eax            / is hi_32(sgnfcnd(x)) = 0?
        jnz     .not_zero               / jump iff hi_32(sgnfcnd(x)) /= 0
        orl     4(%esp),%eax            / is lo_32(sgnfcnd(x)) = 0?
        jnz     .not_zero               / jump iff lo_32(sgnfcnd(x)) /= 0
        movl    $1,%eax
        ret
        .align  4
        SET_SIZE(iszerol)

        ENTRY(signbitl)
        movl    10(%esp),%eax           / eax[31] <-- sign_bit(x)
        shrl    $31,%eax                / eax <-- zero_xtnd(sign_bit(x))
        ret
        .align  4
        SET_SIZE(signbitl)