1 /* The common simulator framework for GDB, the GNU Debugger.
3 Copyright 2002-2023 Free Software Foundation, Inc.
5 Contributed by Andrew Cagney and Red Hat.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #ifndef _SIM_ENDIAN_C_
24 #define _SIM_ENDIAN_C_
26 /* This must come before any other includes. */
31 #include "sim-basics.h"
32 #include "sim-assert.h"
36 #define _SWAP_1(SET,RAW) SET (RAW)
39 #if !defined(_SWAP_2) && (HOST_BYTE_ORDER == BFD_ENDIAN_LITTLE) && defined(htons)
40 #define _SWAP_2(SET,RAW) SET htons (RAW)
44 #define _SWAP_2(SET,RAW) SET (((RAW) >> 8) | ((RAW) << 8))
47 #if !defined(_SWAP_4) && (HOST_BYTE_ORDER == BFD_ENDIAN_LITTLE) && defined(htonl)
48 #define _SWAP_4(SET,RAW) SET htonl (RAW)
52 #define _SWAP_4(SET,RAW) SET (((RAW) << 24) | (((RAW) & 0xff00) << 8) | (((RAW) & 0xff0000) >> 8) | ((RAW) >> 24))
56 #define _SWAP_8(SET,RAW) \
57 union { unsigned_8 dword; unsigned_4 words[2]; } in, out; \
59 _SWAP_4 (out.words[0] =, in.words[1]); \
60 _SWAP_4 (out.words[1] =, in.words[0]); \
65 #define _SWAP_16(SET,RAW) \
66 union { unsigned_16 word; unsigned_4 words[4]; } in, out; \
68 _SWAP_4 (out.words[0] =, in.words[3]); \
69 _SWAP_4 (out.words[1] =, in.words[2]); \
70 _SWAP_4 (out.words[2] =, in.words[1]); \
71 _SWAP_4 (out.words[3] =, in.words[0]); \
77 #include "sim-n-endian.h"
81 #include "sim-n-endian.h"
85 #include "sim-n-endian.h"
89 #include "sim-n-endian.h"
93 #include "sim-n-endian.h"
99 sim_endian_split_16 (unsigned_16 word
, int w
)
101 if (HOST_BYTE_ORDER
== BFD_ENDIAN_LITTLE
)
103 return word
.a
[1 - w
];
114 sim_endian_join_16 (unsigned_8 h
, unsigned_8 l
)
118 if (HOST_BYTE_ORDER
== BFD_ENDIAN_LITTLE
)
133 #endif /* _SIM_ENDIAN_C_ */