* gas/config/tc-m68k.c (tc_gen_reloc): Handle references to defined
[binutils.git] / elfcpp / elfcpp_swap.h
blob06852761588f8d8d345d919187563e174d7d5bba
1 // elfcpp_swap.h -- Handle swapping for elfcpp -*- C++ -*-
3 // Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of elfcpp.
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public License
10 // as published by the Free Software Foundation; either version 2, or
11 // (at your option) any later version.
13 // In addition to the permissions in the GNU Library General Public
14 // License, the Free Software Foundation gives you unlimited
15 // permission to link the compiled version of this file into
16 // combinations with other programs, and to distribute those
17 // combinations without any restriction coming from the use of this
18 // file. (The Library Public License restrictions do apply in other
19 // respects; for example, they cover modification of the file, and
20 /// distribution when not linked into a combined executable.)
22 // This program is distributed in the hope that it will be useful, but
23 // WITHOUT ANY WARRANTY; without even the implied warranty of
24 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 // Library General Public License for more details.
27 // You should have received a copy of the GNU Library General Public
28 // License along with this program; if not, write to the Free Software
29 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
30 // 02110-1301, USA.
32 // This header file defines basic template classes to efficiently swap
33 // numbers between host form and target form. When the host and
34 // target have the same endianness, these turn into no-ops.
36 #ifndef ELFCPP_SWAP_H
37 #define ELFCPP_SWAP_H
39 #include <stdint.h>
41 // We need an autoconf-generated config.h file for endianness and
42 // swapping. We check two macros: WORDS_BIGENDIAN and
43 // HAVE_BYTESWAP_H.
45 #include "config.h"
47 #ifdef HAVE_BYTESWAP_H
48 #include <byteswap.h>
49 #else
50 // Provide our own versions of the byteswap functions.
51 inline uint16_t
52 bswap_16(uint16_t v)
54 return ((v >> 8) & 0xff) | ((v & 0xff) << 8);
57 inline uint32_t
58 bswap_32(uint32_t v)
60 return ( ((v & 0xff000000) >> 24)
61 | ((v & 0x00ff0000) >> 8)
62 | ((v & 0x0000ff00) << 8)
63 | ((v & 0x000000ff) << 24));
66 inline uint64_t
67 bswap_64(uint64_t v)
69 return ( ((v & 0xff00000000000000ULL) >> 56)
70 | ((v & 0x00ff000000000000ULL) >> 40)
71 | ((v & 0x0000ff0000000000ULL) >> 24)
72 | ((v & 0x000000ff00000000ULL) >> 8)
73 | ((v & 0x00000000ff000000ULL) << 8)
74 | ((v & 0x0000000000ff0000ULL) << 24)
75 | ((v & 0x000000000000ff00ULL) << 40)
76 | ((v & 0x00000000000000ffULL) << 56));
78 #endif // !defined(HAVE_BYTESWAP_H)
80 // gcc 4.3 and later provides __builtin_bswap32 and __builtin_bswap64.
82 #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
83 #undef bswap_32
84 #define bswap_32 __builtin_bswap32
85 #undef bswap_64
86 #define bswap_64 __builtin_bswap64
87 #endif
89 namespace elfcpp
92 // Endian simply indicates whether the host is big endian or not.
94 struct Endian
96 public:
97 // Used for template specializations.
98 static const bool host_big_endian =
99 #ifdef WORDS_BIGENDIAN
100 true
101 #else
102 false
103 #endif
107 // Valtype_base is a template based on size (8, 16, 32, 64) which
108 // defines the type Valtype as the unsigned integer, and
109 // Signed_valtype as the signed integer, of the specified size.
111 template<int size>
112 struct Valtype_base;
114 template<>
115 struct Valtype_base<8>
117 typedef uint8_t Valtype;
118 typedef int8_t Signed_valtype;
121 template<>
122 struct Valtype_base<16>
124 typedef uint16_t Valtype;
125 typedef int16_t Signed_valtype;
128 template<>
129 struct Valtype_base<32>
131 typedef uint32_t Valtype;
132 typedef int32_t Signed_valtype;
135 template<>
136 struct Valtype_base<64>
138 typedef uint64_t Valtype;
139 typedef int64_t Signed_valtype;
142 // Convert_endian is a template based on size and on whether the host
143 // and target have the same endianness. It defines the type Valtype
144 // as Valtype_base does, and also defines a function convert_host
145 // which takes an argument of type Valtype and returns the same value,
146 // but swapped if the host and target have different endianness.
148 template<int size, bool same_endian>
149 struct Convert_endian;
151 template<int size>
152 struct Convert_endian<size, true>
154 typedef typename Valtype_base<size>::Valtype Valtype;
156 static inline Valtype
157 convert_host(Valtype v)
158 { return v; }
161 template<>
162 struct Convert_endian<8, false>
164 typedef Valtype_base<8>::Valtype Valtype;
166 static inline Valtype
167 convert_host(Valtype v)
168 { return v; }
171 template<>
172 struct Convert_endian<16, false>
174 typedef Valtype_base<16>::Valtype Valtype;
176 static inline Valtype
177 convert_host(Valtype v)
178 { return bswap_16(v); }
181 template<>
182 struct Convert_endian<32, false>
184 typedef Valtype_base<32>::Valtype Valtype;
186 static inline Valtype
187 convert_host(Valtype v)
188 { return bswap_32(v); }
191 template<>
192 struct Convert_endian<64, false>
194 typedef Valtype_base<64>::Valtype Valtype;
196 static inline Valtype
197 convert_host(Valtype v)
198 { return bswap_64(v); }
201 // Convert is a template based on size and on whether the target is
202 // big endian. It defines Valtype and convert_host like
203 // Convert_endian. That is, it is just like Convert_endian except in
204 // the meaning of the second template parameter.
206 template<int size, bool big_endian>
207 struct Convert
209 typedef typename Valtype_base<size>::Valtype Valtype;
211 static inline Valtype
212 convert_host(Valtype v)
214 return Convert_endian<size, big_endian == Endian::host_big_endian>
215 ::convert_host(v);
219 // Swap is a template based on size and on whether the target is big
220 // endian. It defines the type Valtype and the functions readval and
221 // writeval. The functions read and write values of the appropriate
222 // size out of buffers, swapping them if necessary. readval and
223 // writeval are overloaded to take pointers to the appropriate type or
224 // pointers to unsigned char.
226 template<int size, bool big_endian>
227 struct Swap
229 typedef typename Valtype_base<size>::Valtype Valtype;
231 static inline Valtype
232 readval(const Valtype* wv)
233 { return Convert<size, big_endian>::convert_host(*wv); }
235 static inline void
236 writeval(Valtype* wv, Valtype v)
237 { *wv = Convert<size, big_endian>::convert_host(v); }
239 static inline Valtype
240 readval(const unsigned char* wv)
241 { return readval(reinterpret_cast<const Valtype*>(wv)); }
243 static inline void
244 writeval(unsigned char* wv, Valtype v)
245 { writeval(reinterpret_cast<Valtype*>(wv), v); }
248 // We need to specialize the 8-bit version of Swap to avoid
249 // conflicting overloads, since both versions of readval and writeval
250 // will have the same type parameters.
252 template<bool big_endian>
253 struct Swap<8, big_endian>
255 typedef typename Valtype_base<8>::Valtype Valtype;
257 static inline Valtype
258 readval(const Valtype* wv)
259 { return *wv; }
261 static inline void
262 writeval(Valtype* wv, Valtype v)
263 { *wv = v; }
266 // Swap_unaligned is a template based on size and on whether the
267 // target is big endian. It defines the type Valtype and the
268 // functions readval and writeval. The functions read and write
269 // values of the appropriate size out of buffers which may be
270 // misaligned.
272 template<int size, bool big_endian>
273 struct Swap_unaligned;
275 template<bool big_endian>
276 struct Swap_unaligned<8, big_endian>
278 typedef typename Valtype_base<8>::Valtype Valtype;
280 static inline Valtype
281 readval(const unsigned char* wv)
282 { return *wv; }
284 static inline void
285 writeval(unsigned char* wv, Valtype v)
286 { *wv = v; }
289 template<>
290 struct Swap_unaligned<16, false>
292 typedef Valtype_base<16>::Valtype Valtype;
294 static inline Valtype
295 readval(const unsigned char* wv)
297 return (wv[1] << 8) | wv[0];
300 static inline void
301 writeval(unsigned char* wv, Valtype v)
303 wv[1] = v >> 8;
304 wv[0] = v;
308 template<>
309 struct Swap_unaligned<16, true>
311 typedef Valtype_base<16>::Valtype Valtype;
313 static inline Valtype
314 readval(const unsigned char* wv)
316 return (wv[0] << 8) | wv[1];
319 static inline void
320 writeval(unsigned char* wv, Valtype v)
322 wv[0] = v >> 8;
323 wv[1] = v;
327 template<>
328 struct Swap_unaligned<32, false>
330 typedef Valtype_base<32>::Valtype Valtype;
332 static inline Valtype
333 readval(const unsigned char* wv)
335 return (wv[3] << 24) | (wv[2] << 16) | (wv[1] << 8) | wv[0];
338 static inline void
339 writeval(unsigned char* wv, Valtype v)
341 wv[3] = v >> 24;
342 wv[2] = v >> 16;
343 wv[1] = v >> 8;
344 wv[0] = v;
348 template<>
349 struct Swap_unaligned<32, true>
351 typedef Valtype_base<32>::Valtype Valtype;
353 static inline Valtype
354 readval(const unsigned char* wv)
356 return (wv[0] << 24) | (wv[1] << 16) | (wv[2] << 8) | wv[3];
359 static inline void
360 writeval(unsigned char* wv, Valtype v)
362 wv[0] = v >> 24;
363 wv[1] = v >> 16;
364 wv[2] = v >> 8;
365 wv[3] = v;
369 template<>
370 struct Swap_unaligned<64, false>
372 typedef Valtype_base<64>::Valtype Valtype;
374 static inline Valtype
375 readval(const unsigned char* wv)
377 return ((static_cast<Valtype>(wv[7]) << 56)
378 | (static_cast<Valtype>(wv[6]) << 48)
379 | (static_cast<Valtype>(wv[5]) << 40)
380 | (static_cast<Valtype>(wv[4]) << 32)
381 | (static_cast<Valtype>(wv[3]) << 24)
382 | (static_cast<Valtype>(wv[2]) << 16)
383 | (static_cast<Valtype>(wv[1]) << 8)
384 | static_cast<Valtype>(wv[0]));
387 static inline void
388 writeval(unsigned char* wv, Valtype v)
390 wv[7] = v >> 56;
391 wv[6] = v >> 48;
392 wv[5] = v >> 40;
393 wv[4] = v >> 32;
394 wv[3] = v >> 24;
395 wv[2] = v >> 16;
396 wv[1] = v >> 8;
397 wv[0] = v;
401 template<>
402 struct Swap_unaligned<64, true>
404 typedef Valtype_base<64>::Valtype Valtype;
406 static inline Valtype
407 readval(const unsigned char* wv)
409 return ((static_cast<Valtype>(wv[0]) << 56)
410 | (static_cast<Valtype>(wv[1]) << 48)
411 | (static_cast<Valtype>(wv[2]) << 40)
412 | (static_cast<Valtype>(wv[3]) << 32)
413 | (static_cast<Valtype>(wv[4]) << 24)
414 | (static_cast<Valtype>(wv[5]) << 16)
415 | (static_cast<Valtype>(wv[6]) << 8)
416 | static_cast<Valtype>(wv[7]));
419 static inline void
420 writeval(unsigned char* wv, Valtype v)
422 wv[0] = v >> 56;
423 wv[1] = v >> 48;
424 wv[2] = v >> 40;
425 wv[3] = v >> 32;
426 wv[4] = v >> 24;
427 wv[5] = v >> 16;
428 wv[6] = v >> 8;
429 wv[7] = v;
433 } // End namespace elfcpp.
435 #endif // !defined(ELFCPP_SWAP_H)