summaryrefslogtreecommitdiffstats
path: root/libraries/classparser/src/javaendian.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-04-10 15:53:05 +0200
committerPetr Mrázek <peterix@gmail.com>2016-05-01 00:00:14 +0200
commitb6d455a02bd338e9dc0faa09d4d8177ecd8d569a (patch)
tree41982bca1ede50049f2f8c7109dd18edeefde6d0 /libraries/classparser/src/javaendian.h
parent47e37635f50c09b4f9a9ee7699e3120bab3e4088 (diff)
downloadMultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar.gz
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar.lz
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar.xz
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.zip
NOISSUE reorganize and document libraries
Diffstat (limited to 'libraries/classparser/src/javaendian.h')
-rw-r--r--libraries/classparser/src/javaendian.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/libraries/classparser/src/javaendian.h b/libraries/classparser/src/javaendian.h
new file mode 100644
index 00000000..d488b382
--- /dev/null
+++ b/libraries/classparser/src/javaendian.h
@@ -0,0 +1,76 @@
+#pragma once
+#include <stdint.h>
+
+/**
+ * Swap bytes between big endian and local number representation
+ */
+namespace util
+{
+#ifdef MULTIMC_BIG_ENDIAN
+inline uint64_t bigswap(uint64_t x)
+{
+ return x;
+}
+;
+inline uint32_t bigswap(uint32_t x)
+{
+ return x;
+}
+;
+inline uint16_t bigswap(uint16_t x)
+{
+ return x;
+}
+;
+inline int64_t bigswap(int64_t x)
+{
+ return x;
+}
+;
+inline int32_t bigswap(int32_t x)
+{
+ return x;
+}
+;
+inline int16_t bigswap(int16_t x)
+{
+ return x;
+}
+;
+#else
+inline uint64_t bigswap(uint64_t x)
+{
+ return (x >> 56) | ((x << 40) & 0x00FF000000000000) | ((x << 24) & 0x0000FF0000000000) |
+ ((x << 8) & 0x000000FF00000000) | ((x >> 8) & 0x00000000FF000000) |
+ ((x >> 24) & 0x0000000000FF0000) | ((x >> 40) & 0x000000000000FF00) | (x << 56);
+}
+;
+inline uint32_t bigswap(uint32_t x)
+{
+ return (x >> 24) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | (x << 24);
+}
+;
+inline uint16_t bigswap(uint16_t x)
+{
+ return (x >> 8) | (x << 8);
+}
+;
+inline int64_t bigswap(int64_t x)
+{
+ return (x >> 56) | ((x << 40) & 0x00FF000000000000) | ((x << 24) & 0x0000FF0000000000) |
+ ((x << 8) & 0x000000FF00000000) | ((x >> 8) & 0x00000000FF000000) |
+ ((x >> 24) & 0x0000000000FF0000) | ((x >> 40) & 0x000000000000FF00) | (x << 56);
+}
+;
+inline int32_t bigswap(int32_t x)
+{
+ return (x >> 24) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | (x << 24);
+}
+;
+inline int16_t bigswap(int16_t x)
+{
+ return (x >> 8) | (x << 8);
+}
+;
+#endif
+}