blob: 0b7a966c2d7f760274215b424476b8727d1a56bd [file] [log] [blame]
#
# (C) 2008-2009 Advanced Micro Devices, Inc. All Rights Reserved.
#
# This file is part of libacml_mv.
#
# libacml_mv is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# libacml_mv is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with libacml_mv. If not, see
# <http://www.gnu.org/licenses/>.
#
#
#fdimf.S
#
# An implementation of the fdimf libm function.
#
# The fdim functions determine the positive difference between their arguments
#
# x - y if x > y
# +0 if x <= y
#
# Prototype:
#
# float fdimf(float x, float y)
#
#
# Algorithm:
#
#include "fn_macros.h"
#define fname FN_PROTOTYPE(fdimf)
#ifdef __ELF__
.section .note.GNU-stack,"",@progbits
#endif
.text
.align 16
.p2align 4,,15
.globl fname
.type fname,@function
fname:
MOVAPD %xmm0,%xmm2
SUBSS %xmm1,%xmm0
CMPNLESS %xmm1,%xmm2
ANDPS %xmm2,%xmm0
ret