1 /* Implementation of the MVBITS intrinsic
2 Copyright (C) 2004-2015 Free Software Foundation, Inc.
3 Contributed by Tobias Schlüter
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 3 of the License, or (at your option) any later version.
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 /* TODO: This should be replaced by a compiler builtin. */
29 #include <libgfortran.h>
33 /* MVBITS copies LEN bits starting at bit position FROMPOS from FROM
34 into TO, starting at bit position TOPOS. */
36 extern void SUB_NAME (const TYPE
*, const int *, const int *, TYPE
*,
38 export_proto(SUB_NAME
);
41 SUB_NAME (const TYPE
*from
, const int *frompos
, const int *len
, TYPE
*to
,
44 TYPE oldbits
, newbits
, lenmask
;
46 lenmask
= (*len
== sizeof (TYPE
)*8) ? ~(TYPE
)0 : ((TYPE
)1 << *len
) - 1;
47 newbits
= (((UTYPE
)(*from
) >> *frompos
) & lenmask
) << *topos
;
48 oldbits
= *to
& (~(lenmask
<< *topos
));
50 *to
= newbits
| oldbits
;
55 # define TYPE GFC_INTEGER_1
56 # define UTYPE GFC_UINTEGER_1
57 # define SUB_NAME mvbits_i1
63 # define TYPE GFC_INTEGER_2
64 # define UTYPE GFC_UINTEGER_2
65 # define SUB_NAME mvbits_i2
71 # define TYPE GFC_INTEGER_4
72 # define UTYPE GFC_UINTEGER_4
73 # define SUB_NAME mvbits_i4
79 # define TYPE GFC_INTEGER_8
80 # define UTYPE GFC_UINTEGER_8
81 # define SUB_NAME mvbits_i8