aboutsummaryrefslogtreecommitdiff
path: root/C/RotateDefs.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--C/RotateDefs.h28
1 files changed, 24 insertions, 4 deletions
diff --git a/C/RotateDefs.h b/C/RotateDefs.h
index 8f01d1a..c16b4f8 100644
--- a/C/RotateDefs.h
+++ b/C/RotateDefs.h
@@ -1,14 +1,14 @@
1/* RotateDefs.h -- Rotate functions 1/* RotateDefs.h -- Rotate functions
22015-03-25 : Igor Pavlov : Public domain */ 22023-06-18 : Igor Pavlov : Public domain */
3 3
4#ifndef __ROTATE_DEFS_H 4#ifndef ZIP7_INC_ROTATE_DEFS_H
5#define __ROTATE_DEFS_H 5#define ZIP7_INC_ROTATE_DEFS_H
6 6
7#ifdef _MSC_VER 7#ifdef _MSC_VER
8 8
9#include <stdlib.h> 9#include <stdlib.h>
10 10
11/* don't use _rotl with MINGW. It can insert slow call to function. */ 11/* don't use _rotl with old MINGW. It can insert slow call to function. */
12 12
13/* #if (_MSC_VER >= 1200) */ 13/* #if (_MSC_VER >= 1200) */
14#pragma intrinsic(_rotl) 14#pragma intrinsic(_rotl)
@@ -18,12 +18,32 @@
18#define rotlFixed(x, n) _rotl((x), (n)) 18#define rotlFixed(x, n) _rotl((x), (n))
19#define rotrFixed(x, n) _rotr((x), (n)) 19#define rotrFixed(x, n) _rotr((x), (n))
20 20
21#if (_MSC_VER >= 1300)
22#define Z7_ROTL64(x, n) _rotl64((x), (n))
23#define Z7_ROTR64(x, n) _rotr64((x), (n))
24#else
25#define Z7_ROTL64(x, n) (((x) << (n)) | ((x) >> (64 - (n))))
26#define Z7_ROTR64(x, n) (((x) >> (n)) | ((x) << (64 - (n))))
27#endif
28
21#else 29#else
22 30
23/* new compilers can translate these macros to fast commands. */ 31/* new compilers can translate these macros to fast commands. */
24 32
33#if defined(__clang__) && (__clang_major__ >= 4) \
34 || defined(__GNUC__) && (__GNUC__ >= 5)
35/* GCC 4.9.0 and clang 3.5 can recognize more correct version: */
36#define rotlFixed(x, n) (((x) << (n)) | ((x) >> (-(n) & 31)))
37#define rotrFixed(x, n) (((x) >> (n)) | ((x) << (-(n) & 31)))
38#define Z7_ROTL64(x, n) (((x) << (n)) | ((x) >> (-(n) & 63)))
39#define Z7_ROTR64(x, n) (((x) >> (n)) | ((x) << (-(n) & 63)))
40#else
41/* for old GCC / clang: */
25#define rotlFixed(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) 42#define rotlFixed(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
26#define rotrFixed(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) 43#define rotrFixed(x, n) (((x) >> (n)) | ((x) << (32 - (n))))
44#define Z7_ROTL64(x, n) (((x) << (n)) | ((x) >> (64 - (n))))
45#define Z7_ROTR64(x, n) (((x) >> (n)) | ((x) << (64 - (n))))
46#endif
27 47
28#endif 48#endif
29 49