Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-07-11 22:33:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-11 22:33:04 +0300
commit968351d916312284f79952e350ca3c1ffad6f6d1 (patch)
tree6c2fee4f5decf06533a50931d3f5caed8f4c0e51 /source/blender/blenlib/BLI_endian_switch_inline.h
parent17ebbc06e2ea6324c27e0a10ae088c271b66d0cc (diff)
Minor changes for more efficient endian switching
Diffstat (limited to 'source/blender/blenlib/BLI_endian_switch_inline.h')
-rw-r--r--source/blender/blenlib/BLI_endian_switch_inline.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_endian_switch_inline.h b/source/blender/blenlib/BLI_endian_switch_inline.h
index 358206f1177..f5f0e59cfa8 100644
--- a/source/blender/blenlib/BLI_endian_switch_inline.h
+++ b/source/blender/blenlib/BLI_endian_switch_inline.h
@@ -42,9 +42,13 @@ BLI_INLINE void BLI_endian_switch_int16(short *val)
}
BLI_INLINE void BLI_endian_switch_uint16(unsigned short *val)
{
+#ifdef __GNUC__
+ *val = __builtin_bswap16(*val);
+#else
unsigned short tval = *val;
*val = (tval >> 8) |
(tval << 8);
+#endif
}
@@ -55,11 +59,15 @@ BLI_INLINE void BLI_endian_switch_int32(int *val)
}
BLI_INLINE void BLI_endian_switch_uint32(unsigned int *val)
{
+#ifdef __GNUC__
+ *val = __builtin_bswap32(*val);
+#else
unsigned int tval = *val;
*val = ((tval >> 24)) |
((tval << 8) & 0x00ff0000) |
((tval >> 8) & 0x0000ff00) |
((tval << 24));
+#endif
}
BLI_INLINE void BLI_endian_switch_float(float *val)
{
@@ -74,6 +82,9 @@ BLI_INLINE void BLI_endian_switch_int64(int64_t *val)
}
BLI_INLINE void BLI_endian_switch_uint64(uint64_t *val)
{
+#ifdef __GNUC__
+ *val = __builtin_bswap16(*val);
+#else
uint64_t tval = *val;
*val = ((tval >> 56)) |
((tval << 40) & 0x00ff000000000000ll) |
@@ -83,6 +94,7 @@ BLI_INLINE void BLI_endian_switch_uint64(uint64_t *val)
((tval >> 24) & 0x0000000000ff0000ll) |
((tval >> 40) & 0x000000000000ff00ll) |
((tval << 56));
+#endif
}
BLI_INLINE void BLI_endian_switch_double(double *val)
{