1999-05-03 09:29:11 +02:00
|
|
|
/* flonum_copy.c - copy a flonum
|
2017-01-02 04:36:43 +01:00
|
|
|
Copyright (C) 1987-2017 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 13:01:12 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 09:29:11 +02:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
GAS 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2000-10-30 22:59:01 +01:00
|
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
2005-05-05 11:13:19 +02:00
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "as.h"
|
|
|
|
|
|
|
|
void
|
2003-11-22 17:03:03 +01:00
|
|
|
flonum_copy (FLONUM_TYPE *in, FLONUM_TYPE *out)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2000-10-30 22:59:01 +01:00
|
|
|
unsigned int in_length; /* 0 origin */
|
|
|
|
unsigned int out_length; /* 0 origin */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
out->sign = in->sign;
|
|
|
|
in_length = in->leader - in->low;
|
|
|
|
|
|
|
|
if (in->leader < in->low)
|
|
|
|
{
|
|
|
|
out->leader = out->low - 1; /* 0.0 case */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out_length = out->high - out->low;
|
2000-10-30 22:59:01 +01:00
|
|
|
/* Assume no GAPS in packing of littlenums.
|
|
|
|
I.e. sizeof(array) == sizeof(element) * number_of_elements. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (in_length <= out_length)
|
|
|
|
{
|
|
|
|
{
|
2000-10-30 22:59:01 +01:00
|
|
|
/* For defensive programming, zero any high-order
|
|
|
|
littlenums we don't need. This is destroying evidence
|
|
|
|
and wasting time, so why bother??? */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (in_length < out_length)
|
|
|
|
{
|
2000-10-30 22:59:01 +01:00
|
|
|
memset ((char *) (out->low + in_length + 1), '\0',
|
|
|
|
out_length - in_length);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
2000-10-30 22:59:01 +01:00
|
|
|
memcpy ((void *) (out->low), (void *) (in->low),
|
|
|
|
((in_length + 1) * sizeof (LITTLENUM_TYPE)));
|
1999-05-03 09:29:11 +02:00
|
|
|
out->exponent = in->exponent;
|
|
|
|
out->leader = in->leader - in->low + out->low;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-09-12 05:56:22 +02:00
|
|
|
int shorten; /* 1-origin. Number of littlenums we drop. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
shorten = in_length - out_length;
|
|
|
|
/* Assume out_length >= 0 ! */
|
2000-10-30 22:59:01 +01:00
|
|
|
memcpy ((void *) (out->low), (void *) (in->low + shorten),
|
|
|
|
((out_length + 1) * sizeof (LITTLENUM_TYPE)));
|
1999-05-03 09:29:11 +02:00
|
|
|
out->leader = out->high;
|
|
|
|
out->exponent = in->exponent + shorten;
|
|
|
|
}
|
|
|
|
} /* if any significant bits */
|
2000-10-30 22:59:01 +01:00
|
|
|
}
|