1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2011 Nexenta Systems, Inc. All rights reserved. 23 */ 24 /* 25 * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 26 * Use is subject to license terms. 27 */ 28 29 .file "ieee_funcl.s" 30 31 #include "libm.h" 32 LIBM_ANSI_PRAGMA_WEAK(isinfl,function) 33 LIBM_ANSI_PRAGMA_WEAK(isnormall,function) 34 LIBM_ANSI_PRAGMA_WEAK(issubnormall,function) 35 LIBM_ANSI_PRAGMA_WEAK(iszerol,function) 36 LIBM_ANSI_PRAGMA_WEAK(signbitl,function) 37 #include "libm_synonyms.h" 38 39 ENTRY(isinfl) 40 movl 16(%rsp),%eax / ax <-- sign and bexp of x 41 notl %eax 42 andq $0x7fff,%rax 43 jz .L6 44 movq $0,%rax 45 .not_inf: 46 ret 47 48 .L6: / here, (eax) = 0.0 49 movl 12(%rsp),%ecx 50 xorl $0x80000000,%ecx / handle unsupported implicitly 51 orl 8(%rsp), %ecx 52 jnz .not_inf 53 movq $1,%rax 54 ret 55 .align 16 56 SET_SIZE(isinfl) 57 58 ENTRY(isnormall) 59 / TRUE iff (x is finite, but 60 / neither subnormal nor zero) 61 / iff (msb(sgnfcnd(x) /= 0 62 / & 0 < bexp(x) < 0x7fff) 63 movl 12(%rsp),%eax / eax <-- hi_32(sgnfcnd(x)) 64 andl $-0x80000000,%eax / eax[31] <-- msb(sgnfcnd(x)), 65 / rest_of(eax) <-- 0 66 jz .L8 / jump iff msb(sgnfcnd(x)) = 0 67 movl 16(%rsp),%eax / ax <-- sign and bexp of x 68 notl %eax / ax[0..14] <-- not(bexp(x)) 69 andq $0x7fff,%rax / eax <-- zero_xtnd(not(bexp(x))) 70 jz .L8 / jump iff bexp(x) = 0x7fff or 0 71 xorq $0x7fff,%rax / treat pseudo-denormal as subnormal 72 jz .L8 73 movq $1,%rax 74 .L8: 75 ret 76 .align 16 77 SET_SIZE(isnormall) 78 79 ENTRY(issubnormall) 80 / TRUE iff (bexp(x) = 0 & 81 / msb(sgnfcnd(x)) = 0 & frac(x) /= 0) 82 movl 12(%rsp),%eax / eax <-- hi_32(sgnfcnd(x)) 83 testl $0x80000000,%eax / eax[31] = msb(sgnfcnd(x)); 84 / set ZF if it's 0. 85 jz .may_be_subnorm / jump iff msb(sgnfcnd(x)) = 0 86 .not_subnorm: 87 movq $0,%rax 88 ret 89 .may_be_subnorm: 90 testl $0x7fff,16(%rsp) / set ZF iff bexp(x) = 0 91 jnz .not_subnorm / jump iff bexp(x) /= 0 92 orl 8(%rsp),%eax / (eax) = 0 iff sgnfcnd(x) = 0 93 jz .not_subnorm 94 movq $1,%rax 95 ret 96 .align 16 97 SET_SIZE(issubnormall) 98 99 ENTRY(iszerol) 100 movl 16(%rsp),%eax / ax <-- sign and bexp of x 101 andl $0x7fff,%eax / eax <-- zero_xtnd(bexp(x)) 102 jz .may_be_zero / jump iff bexp(x) = 0 103 .not_zero: 104 movq $0,%rax 105 ret 106 .may_be_zero: / here, (eax) = 0 107 orl 12(%rsp),%eax / is hi_32(sgnfcnd(x)) = 0? 108 jnz .not_zero / jump iff hi_32(sgnfcnd(x)) /= 0 109 orl 8(%rsp),%eax / is lo_32(sgnfcnd(x)) = 0? 110 jnz .not_zero / jump iff lo_32(sgnfcnd(x)) /= 0 111 movq $1,%rax 112 ret 113 .align 16 114 SET_SIZE(iszerol) 115 116 ENTRY(signbitl) 117 movl 16(%rsp),%eax / eax[15] <-- sign_bit(x) 118 shrl $15,%eax / eax <-- zero_xtnd(sign_bit(x)) 119 andq $1,%rax 120 ret 121 .align 16 122 SET_SIZE(signbitl)