return end;
}
+
+namespace detail {
+
+template <class T, class Enable=void> struct Unaligned;
+
+template <class T>
+struct Unaligned<
+ T,
+ typename std::enable_if<std::is_pod<T>::value>::type> {
+ T value;
+} __attribute__((packed));
+
+} // namespace detail
+
+/**
+ * Read an unaligned value of type T and return it.
+ */
+template <class T>
+inline T loadUnaligned(const void* p) {
+ static_assert(alignof(detail::Unaligned<T>) == 1, "Invalid alignment");
+ return static_cast<const detail::Unaligned<T>*>(p)->value;
+}
+
+/**
+ * Write an unaligned value of type T.
+ */
+template <class T>
+inline void storeUnaligned(void* p, T value) {
+ static_assert(alignof(detail::Unaligned<T>) == 1, "Invalid alignment");
+ static_cast<detail::Unaligned<T>*>(p)->value = value;
+}
+
} // namespace folly
#endif /* FOLLY_BITS_H_ */
#include <cstdint>
#include <limits>
#include "folly/detail/GroupVarintDetail.h"
+#include "folly/Bits.h"
#include "folly/Range.h"
#include <glog/logging.h>
uint8_t b2key = key(c);
uint8_t b3key = key(d);
*p++ = (b3key << 6) | (b2key << 4) | (b1key << 2) | b0key;
- *reinterpret_cast<uint32_t*>(p) = a;
+ storeUnaligned(p, a);
p += b0key+1;
- *reinterpret_cast<uint32_t*>(p) = b;
+ storeUnaligned(p, b);
p += b1key+1;
- *reinterpret_cast<uint32_t*>(p) = c;
+ storeUnaligned(p, c);
p += b2key+1;
- *reinterpret_cast<uint32_t*>(p) = d;
+ storeUnaligned(p, d);
p += b3key+1;
return p;
}
*/
static const char* decode_simple(const char* p, uint32_t* a, uint32_t* b,
uint32_t* c, uint32_t* d) {
- size_t k = *reinterpret_cast<const uint8_t*>(p);
+ size_t k = loadUnaligned<uint8_t>(p);
const char* end = p + detail::groupVarintLengths[k];
++p;
size_t k0 = b0key(k);
- *a = *reinterpret_cast<const uint32_t*>(p) & kMask[k0];
+ *a = loadUnaligned<uint32_t>(p) & kMask[k0];
p += k0+1;
size_t k1 = b1key(k);
- *b = *reinterpret_cast<const uint32_t*>(p) & kMask[k1];
+ *b = loadUnaligned<uint32_t>(p) & kMask[k1];
p += k1+1;
size_t k2 = b2key(k);
- *c = *reinterpret_cast<const uint32_t*>(p) & kMask[k2];
+ *c = loadUnaligned<uint32_t>(p) & kMask[k2];
p += k2+1;
size_t k3 = b3key(k);
- *d = *reinterpret_cast<const uint32_t*>(p) & kMask[k3];
+ *d = loadUnaligned<uint32_t>(p) & kMask[k3];
p += k3+1;
return end;
}
* buffer of size bytes.
*/
static size_t partialCount(const char* p, size_t size) {
- uint16_t v = *reinterpret_cast<const uint16_t*>(p);
+ uint16_t v = loadUnaligned<uint16_t>(p);
size_t s = kHeaderSize;
s += 1 + b0key(v);
if (s > size) return 0;
* return the number of bytes used by the encoding.
*/
static size_t encodedSize(const char* p) {
- uint16_t n = *reinterpret_cast<const uint16_t*>(p);
+ uint16_t n = loadUnaligned<uint16_t>(p);
return (kHeaderSize + kGroupSize +
b0key(n) + b1key(n) + b2key(n) + b3key(n) + b4key(n));
}
uint8_t b2key = key(c);
uint8_t b3key = key(d);
uint8_t b4key = key(e);
- *reinterpret_cast<uint16_t*>(p) =
- (b4key << 12) | (b3key << 9) | (b2key << 6) | (b1key << 3) | b0key;
+ storeUnaligned<uint16_t>(
+ p,
+ (b4key << 12) | (b3key << 9) | (b2key << 6) | (b1key << 3) | b0key);
p += 2;
- *reinterpret_cast<uint64_t*>(p) = a;
+ storeUnaligned(p, a);
p += b0key+1;
- *reinterpret_cast<uint64_t*>(p) = b;
+ storeUnaligned(p, b);
p += b1key+1;
- *reinterpret_cast<uint64_t*>(p) = c;
+ storeUnaligned(p, c);
p += b2key+1;
- *reinterpret_cast<uint64_t*>(p) = d;
+ storeUnaligned(p, d);
p += b3key+1;
- *reinterpret_cast<uint64_t*>(p) = e;
+ storeUnaligned(p, e);
p += b4key+1;
return p;
}
*/
static const char* decode(const char* p, uint64_t* a, uint64_t* b,
uint64_t* c, uint64_t* d, uint64_t* e) {
- uint16_t k = *reinterpret_cast<const uint16_t*>(p);
+ uint16_t k = loadUnaligned<uint16_t>(p);
p += 2;
uint8_t k0 = b0key(k);
- *a = *reinterpret_cast<const uint64_t*>(p) & kMask[k0];
+ *a = loadUnaligned<uint64_t>(p) & kMask[k0];
p += k0+1;
uint8_t k1 = b1key(k);
- *b = *reinterpret_cast<const uint64_t*>(p) & kMask[k1];
+ *b = loadUnaligned<uint64_t>(p) & kMask[k1];
p += k1+1;
uint8_t k2 = b2key(k);
- *c = *reinterpret_cast<const uint64_t*>(p) & kMask[k2];
+ *c = loadUnaligned<uint64_t>(p) & kMask[k2];
p += k2+1;
uint8_t k3 = b3key(k);
- *d = *reinterpret_cast<const uint64_t*>(p) & kMask[k3];
+ *d = loadUnaligned<uint64_t>(p) & kMask[k3];
p += k3+1;
uint8_t k4 = b4key(k);
- *e = *reinterpret_cast<const uint64_t*>(p) & kMask[k4];
+ *e = loadUnaligned<uint64_t>(p) & kMask[k4];
p += k4+1;
return p;
}