mirror of
https://github.com/intel/llvm.git
synced 2026-01-18 07:57:36 +08:00
scudo: Replace ALIGNED macro with standard alignas specifier.
alignas was introduced in C++11 and is already being used throughout LLVM. Differential Revision: https://reviews.llvm.org/D77823
This commit is contained in:
@@ -51,7 +51,7 @@ struct atomic_u32 {
|
||||
struct atomic_u64 {
|
||||
typedef u64 Type;
|
||||
// On 32-bit platforms u64 is not necessarily aligned on 8 bytes.
|
||||
ALIGNED(8) volatile Type ValDoNotUse;
|
||||
alignas(8) volatile Type ValDoNotUse;
|
||||
};
|
||||
|
||||
struct atomic_uptr {
|
||||
|
||||
@@ -33,9 +33,6 @@
|
||||
#define WEAK __attribute__((weak))
|
||||
#define ALWAYS_INLINE inline __attribute__((always_inline))
|
||||
#define ALIAS(X) __attribute__((alias(X)))
|
||||
// Please only use the ALIGNED macro before the type. Using ALIGNED after the
|
||||
// variable declaration is not portable.
|
||||
#define ALIGNED(X) __attribute__((aligned(X)))
|
||||
#define FORMAT(F, A) __attribute__((format(printf, F, A)))
|
||||
#define NOINLINE __attribute__((noinline))
|
||||
#define NORETURN __attribute__((noreturn))
|
||||
|
||||
@@ -225,7 +225,7 @@ private:
|
||||
u64 LastReleaseAtNs;
|
||||
};
|
||||
|
||||
struct ALIGNED(SCUDO_CACHE_LINE_SIZE) SizeClassInfo {
|
||||
struct alignas(SCUDO_CACHE_LINE_SIZE) SizeClassInfo {
|
||||
HybridMutex Mutex;
|
||||
SinglyLinkedList<TransferBatch> FreeList;
|
||||
uptr CurrentRegion;
|
||||
|
||||
@@ -231,7 +231,7 @@ private:
|
||||
u64 LastReleaseAtNs;
|
||||
};
|
||||
|
||||
struct ALIGNED(SCUDO_CACHE_LINE_SIZE) RegionInfo {
|
||||
struct alignas(SCUDO_CACHE_LINE_SIZE) RegionInfo {
|
||||
HybridMutex Mutex;
|
||||
SinglyLinkedList<TransferBatch> FreeList;
|
||||
RegionStats Stats;
|
||||
|
||||
@@ -52,7 +52,7 @@ private:
|
||||
static const scudo::u32 Size = 64U;
|
||||
typedef scudo::u64 T;
|
||||
scudo::HybridMutex &Mutex;
|
||||
ALIGNED(SCUDO_CACHE_LINE_SIZE) T Data[Size];
|
||||
alignas(SCUDO_CACHE_LINE_SIZE) T Data[Size];
|
||||
};
|
||||
|
||||
const scudo::u32 NumberOfThreads = 8;
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
namespace scudo {
|
||||
|
||||
template <class Allocator> struct ALIGNED(SCUDO_CACHE_LINE_SIZE) TSD {
|
||||
template <class Allocator> struct alignas(SCUDO_CACHE_LINE_SIZE) TSD {
|
||||
typename Allocator::CacheT Cache;
|
||||
typename Allocator::QuarantineCacheT QuarantineCache;
|
||||
u8 DestructorIterations;
|
||||
|
||||
Reference in New Issue
Block a user