Remove duplicate destination decoding
[bitcoinplatinum.git] / src / compat / glibc_sanity.cpp
blobb4d1c90992b767f2f3676936f0478f2ef44a1b98
1 // Copyright (c) 2009-2014 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #if defined(HAVE_CONFIG_H)
6 #include "config/bitcoin-config.h"
7 #endif
9 #include <cstddef>
11 #if defined(HAVE_SYS_SELECT_H)
12 #include <sys/select.h>
13 #endif
15 extern "C" void* memcpy(void* a, const void* b, size_t c);
16 void* memcpy_int(void* a, const void* b, size_t c)
18 return memcpy(a, b, c);
21 namespace
23 // trigger: Use the memcpy_int wrapper which calls our internal memcpy.
24 // A direct call to memcpy may be optimized away by the compiler.
25 // test: Fill an array with a sequence of integers. memcpy to a new empty array.
26 // Verify that the arrays are equal. Use an odd size to decrease the odds of
27 // the call being optimized away.
28 template <unsigned int T>
29 bool sanity_test_memcpy()
31 unsigned int memcpy_test[T];
32 unsigned int memcpy_verify[T] = {};
33 for (unsigned int i = 0; i != T; ++i)
34 memcpy_test[i] = i;
36 memcpy_int(memcpy_verify, memcpy_test, sizeof(memcpy_test));
38 for (unsigned int i = 0; i != T; ++i) {
39 if (memcpy_verify[i] != i)
40 return false;
42 return true;
45 #if defined(HAVE_SYS_SELECT_H)
46 // trigger: Call FD_SET to trigger __fdelt_chk. FORTIFY_SOURCE must be defined
47 // as >0 and optimizations must be set to at least -O2.
48 // test: Add a file descriptor to an empty fd_set. Verify that it has been
49 // correctly added.
50 bool sanity_test_fdelt()
52 fd_set fds;
53 FD_ZERO(&fds);
54 FD_SET(0, &fds);
55 return FD_ISSET(0, &fds);
57 #endif
59 } // namespace
61 bool glibc_sanity_test()
63 #if defined(HAVE_SYS_SELECT_H)
64 if (!sanity_test_fdelt())
65 return false;
66 #endif
67 return sanity_test_memcpy<1025>();