191 lines
5.9 KiB
C
191 lines
5.9 KiB
C
|
/* @(#)byte_order.c 1.4 15/11/22 2015 J. Schilling */
|
||
|
#include <schily/mconfig.h>
|
||
|
#ifndef lint
|
||
|
static UConst char sccsid[] =
|
||
|
"@(#)byte_order.c 1.4 15/11/22 2015 J. Schilling";
|
||
|
#endif
|
||
|
/*
|
||
|
* SHA3 hash code taken from
|
||
|
* https://github.com/rhash/RHash/tree/master/librhash
|
||
|
*
|
||
|
* Portions Copyright (c) 2015 J. Schilling
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* byte_order.c - byte order related platform dependent routines,
|
||
|
*
|
||
|
* Copyright: 2008-2012 Aleksey Kravchenko <rhash.admin@gmail.com>
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
* copy of this software and associated documentation files (the "Software"),
|
||
|
* to deal in the Software without restriction, including without limitation
|
||
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
|
* and/or sell copies of the Software, and to permit persons to whom the
|
||
|
* Software is furnished to do so.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||
|
* or FITNESS FOR A PARTICULAR PURPOSE. Use this program at your own risk!
|
||
|
*/
|
||
|
#include "byte_order.h"
|
||
|
|
||
|
#ifdef HAVE_LONGLONG
|
||
|
|
||
|
#if !(__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) /* if !GCC or GCC < 4.3 */
|
||
|
|
||
|
#if _MSC_VER >= 1300 && (_M_IX86 || _M_AMD64 || _M_IA64) /* if MSVC++ >= 2002 on x86/x64 */
|
||
|
#include <intrin.h>
|
||
|
#pragma intrinsic(_BitScanForward)
|
||
|
|
||
|
/*
|
||
|
* Returns index of the trailing bit of x.
|
||
|
*
|
||
|
* @param x the number to process
|
||
|
* @return zero-based index of the trailing bit
|
||
|
*/
|
||
|
unsigned
|
||
|
rhash_ctz(unsigned x)
|
||
|
{
|
||
|
unsigned long index;
|
||
|
unsigned char isNonzero = _BitScanForward(&index, x); /* MSVC intrinsic */
|
||
|
return (isNonzero ? (unsigned)index : 0);
|
||
|
}
|
||
|
#else /* _MSC_VER >= 1300... */
|
||
|
|
||
|
/*
|
||
|
* Returns index of the trailing bit of a 32-bit number.
|
||
|
* This is a plain C equivalent for GCC __builtin_ctz() bit scan.
|
||
|
*
|
||
|
* @param x the number to process
|
||
|
* @return zero-based index of the trailing bit
|
||
|
*/
|
||
|
unsigned
|
||
|
rhash_ctz(x)
|
||
|
unsigned x;
|
||
|
{
|
||
|
/* array for conversion to bit position */
|
||
|
static unsigned char bit_pos[32] = {
|
||
|
0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8,
|
||
|
31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* The De Bruijn bit-scan was devised in 1997, according to Donald Knuth
|
||
|
* by Martin Lauter. The constant 0x077CB531UL is a De Bruijn sequence,
|
||
|
* which produces a unique pattern of bits into the high 5 bits for each
|
||
|
* possible bit position that it is multiplied against.
|
||
|
* See http://graphics.stanford.edu/~seander/bithacks.html
|
||
|
* and http://chessprogramming.wikispaces.com/BitScan
|
||
|
*/
|
||
|
return ((unsigned)bit_pos[((UInt32_t)((x & -x) * (unsigned)0x077CB531)) >> 27]);
|
||
|
}
|
||
|
#endif /* _MSC_VER >= 1300... */
|
||
|
#endif /* !(GCC >= 4.3) */
|
||
|
|
||
|
/*
|
||
|
* Copy a memory block with simultaneous exchanging byte order.
|
||
|
* The byte order is changed from little-endian 32-bit integers
|
||
|
* to big-endian (or vice-versa).
|
||
|
*
|
||
|
* @param to the pointer where to copy memory block
|
||
|
* @param index the index to start writing from
|
||
|
* @param from the source block to copy
|
||
|
* @param length length of the memory block
|
||
|
*/
|
||
|
void
|
||
|
rhash_swap_copy_str_to_u32(to, idx, from, length)
|
||
|
void *to;
|
||
|
int idx;
|
||
|
const void *from;
|
||
|
size_t length;
|
||
|
{
|
||
|
/* if all pointers and length are 32-bits aligned */
|
||
|
if (0 == (((int)((char *)to - (char *)0) | ((char *)from - (char *)0) | idx | length) & 3)) {
|
||
|
/* copy memory as 32-bit words */
|
||
|
const UInt32_t *src = (const UInt32_t *)from;
|
||
|
const UInt32_t *end = (const UInt32_t *)((const char *)src + length);
|
||
|
UInt32_t *dst = (UInt32_t *)((char *)to + idx);
|
||
|
while (src < end) *(dst++) = bswap_32(*(src++));
|
||
|
} else {
|
||
|
const char *src = (const char *)from;
|
||
|
for (length += idx; (size_t)idx < length; idx++) ((char *)to)[idx ^ 3] = *(src++);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Copy a memory block with changed byte order.
|
||
|
* The byte order is changed from little-endian 64-bit integers
|
||
|
* to big-endian (or vice-versa).
|
||
|
*
|
||
|
* @param to the pointer where to copy memory block
|
||
|
* @param index the index to start writing from
|
||
|
* @param from the source block to copy
|
||
|
* @param length length of the memory block
|
||
|
*/
|
||
|
void
|
||
|
rhash_swap_copy_str_to_u64(to, idx, from, length)
|
||
|
void *to;
|
||
|
int idx;
|
||
|
const void *from;
|
||
|
size_t length;
|
||
|
{
|
||
|
/* if all pointers and length are 64-bits aligned */
|
||
|
if (0 == (((int)((char *)to - (char *)0) | ((char *)from - (char *)0) | idx | length) & 7)) {
|
||
|
/* copy aligned memory block as 64-bit integers */
|
||
|
const UInt64_t *src = (const UInt64_t *)from;
|
||
|
const UInt64_t *end = (const UInt64_t *)((const char *)src + length);
|
||
|
UInt64_t *dst = (UInt64_t *)((char *)to + idx);
|
||
|
while (src < end) *(dst++) = bswap_64(*(src++));
|
||
|
} else {
|
||
|
const char *src = (const char *)from;
|
||
|
for (length += idx; (size_t)idx < length; idx++) ((char *)to)[idx ^ 7] = *(src++);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Copy data from a sequence of 64-bit words to a binary string of given length,
|
||
|
* while changing byte order.
|
||
|
*
|
||
|
* @param to the binary string to receive data
|
||
|
* @param from the source sequence of 64-bit words
|
||
|
* @param length the size in bytes of the data being copied
|
||
|
*/
|
||
|
void
|
||
|
rhash_swap_copy_u64_to_str(to, from, length)
|
||
|
void *to;
|
||
|
const void *from;
|
||
|
size_t length;
|
||
|
{
|
||
|
/* if all pointers and length are 64-bits aligned */
|
||
|
if (0 == (((int)((char *)to - (char *)0) | ((char *)from - (char *)0) | length) & 7)) {
|
||
|
/* copy aligned memory block as 64-bit integers */
|
||
|
const UInt64_t *src = (const UInt64_t *)from;
|
||
|
const UInt64_t *end = (const UInt64_t *)((const char *)src + length);
|
||
|
UInt64_t *dst = (UInt64_t *)to;
|
||
|
while (src < end) *(dst++) = bswap_64(*(src++));
|
||
|
} else {
|
||
|
size_t idx;
|
||
|
char *dst = (char *)to;
|
||
|
for (idx = 0; idx < length; idx++) *(dst++) = ((char *)from)[idx ^ 7];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Exchange byte order in the given array of 32-bit integers.
|
||
|
*
|
||
|
* @param arr the array to process
|
||
|
* @param length array length
|
||
|
*/
|
||
|
void
|
||
|
rhash_u32_mem_swap(arr, length)
|
||
|
unsigned *arr;
|
||
|
int length;
|
||
|
{
|
||
|
unsigned *end = arr + length;
|
||
|
for (; arr < end; arr++) {
|
||
|
*arr = bswap_32(*arr);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* HAVE_LONGLONG */
|