1 /* This file is part of the program psim.
3 Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #error "N must be #defined"
25 /* NOTE: See end of file for #undef */
26 #define unsigned_N XCONCAT2(unsigned_,N)
27 #define endian_t2h_N XCONCAT2(endian_t2h_,N)
28 #define endian_h2t_N XCONCAT2(endian_h2t_,N)
29 #define _SWAP_N XCONCAT2(_SWAP_,N)
30 #define swap_N XCONCAT2(swap_,N)
31 #define endian_h2be_N XCONCAT2(endian_h2be_,N)
32 #define endian_be2h_N XCONCAT2(endian_be2h_,N)
33 #define endian_h2le_N XCONCAT2(endian_h2le_,N)
34 #define endian_le2h_N XCONCAT2(endian_le2h_,N)
39 endian_t2h_N(unsigned_N raw_in
)
41 if (CURRENT_TARGET_BYTE_ORDER
== CURRENT_HOST_BYTE_ORDER
) {
45 _SWAP_N(return,raw_in
);
52 endian_h2t_N(unsigned_N raw_in
)
54 if (CURRENT_TARGET_BYTE_ORDER
== CURRENT_HOST_BYTE_ORDER
) {
58 _SWAP_N(return,raw_in
);
65 swap_N(unsigned_N raw_in
)
67 _SWAP_N(return,raw_in
);
74 endian_h2be_N(unsigned_N raw_in
)
76 if (CURRENT_HOST_BYTE_ORDER
== BIG_ENDIAN
) {
80 _SWAP_N(return,raw_in
);
87 endian_be2h_N(unsigned_N raw_in
)
89 if (CURRENT_HOST_BYTE_ORDER
== BIG_ENDIAN
) {
93 _SWAP_N(return,raw_in
);
100 endian_h2le_N(unsigned_N raw_in
)
102 if (CURRENT_HOST_BYTE_ORDER
== LITTLE_ENDIAN
) {
106 _SWAP_N(return,raw_in
);
113 endian_le2h_N(unsigned_N raw_in
)
115 if (CURRENT_HOST_BYTE_ORDER
== LITTLE_ENDIAN
) {
119 _SWAP_N(return,raw_in
);
124 /* NOTE: See start of file for #define */