"Invalid size of PaddedSpinLock");
// Check if T can theoretically cross a cache line.
- // NOTE: It should be alignof(std::max_align_t), but max_align_t
- // isn't supported by gcc 4.6.2.
- static_assert(alignof(MaxAlign) > 0 &&
- FOLLY_CACHE_LINE_SIZE % alignof(MaxAlign) == 0 &&
- sizeof(T) <= alignof(MaxAlign),
+ static_assert(alignof(std::max_align_t) > 0 &&
+ FOLLY_CACHE_LINE_SIZE % alignof(std::max_align_t) == 0 &&
+ sizeof(T) <= alignof(std::max_align_t),
"T can cross cache line boundaries");
char padding_[FOLLY_CACHE_LINE_SIZE];
#ifndef FOLLY_PORTABILITY_H_
#define FOLLY_PORTABILITY_H_
+#include <cstddef>
+
#ifndef FOLLY_NO_CONFIG
#include <folly/folly-config.h>
#endif
#endif
#endif
-// MaxAlign: max_align_t isn't supported by gcc
-#ifdef __GNUC__
-struct MaxAlign { char c; } __attribute__((__aligned__));
-#else /* !__GNUC__ */
-# error Cannot define MaxAlign on this platform
-#endif
-
// compiler specific attribute translation
// msvc should come first, so if clang is in msvc mode it gets the right defines
#else
# error Cannot define FOLLY_ALIGNED on this platform
#endif
-#define FOLLY_ALIGNED_MAX FOLLY_ALIGNED(alignof(MaxAlign))
+#define FOLLY_ALIGNED_MAX FOLLY_ALIGNED(alignof(std::max_align_t))
// NOTE: this will only do checking in msvc with versions that support /analyze
#if _MSC_VER
# endif
#endif
+#if defined(__GNUC__) && !__GNUC_PREREQ(4,9)
+// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56019
+// gcc 4.8.x incorrectly placed max_align_t in the root namespace
+// Alias it into std (where it's found in 4.9 and later)
+namespace std { typedef ::max_align_t max_align_t; }
+#endif
/* Define macro wrappers for C++11's "final" and "override" keywords, which
* are supported in gcc 4.7 but not gcc 4.6. */
HeapStorage hs;
SharedInfo shared;
- MaxAlign align;
+ std::max_align_t align;
};
IOBuf::SharedInfo::SharedInfo()
#include <folly/Malloc.h>
#include <folly/Range.h>
+#include <cstddef>
+
using folly::fbstring;
using folly::fbvector;
using folly::IOBuf;
}
TEST(IOBuf, Alignment) {
- // max_align_t doesn't exist in gcc 4.6.2
- struct MaxAlign {
- char c;
- } __attribute__((__aligned__));
- size_t alignment = alignof(MaxAlign);
+ size_t alignment = alignof(std::max_align_t);
std::vector<size_t> sizes {0, 1, 64, 256, 1024, 1 << 10};
for (size_t size : sizes) {