# define SHIFT 4
#elif DATA_SIZE == 8
# define SUFFIX q
-# define DATA_TYPE aligned_uint64_t
-# define SDATA_TYPE aligned_int64_t
+# define DATA_TYPE uint64_t
+# define SDATA_TYPE int64_t
# define BSWAP bswap64
# define SHIFT 3
#elif DATA_SIZE == 4
_oldn; \
})
-/*
- * Abstractions to access atomically (i.e. "once") i64/u64 variables.
- *
- * The i386 abi is odd in that by default members are only aligned to
- * 4 bytes, which means that 8-byte types can wind up mis-aligned.
- * Clang will then warn about this, and emit a call into libatomic.
- *
- * Use of these types in structures when they will be used with atomic
- * operations can avoid this.
- */
-typedef int64_t aligned_int64_t __attribute__((aligned(8)));
-typedef uint64_t aligned_uint64_t __attribute__((aligned(8)));
-
#endif /* QEMU_ATOMIC_H */
int64_t last_delta;
/* Compensate for varying guest execution speed. */
- aligned_int64_t qemu_icount_bias;
+ int64_t qemu_icount_bias;
int64_t vm_clock_warp_start;
int64_t cpu_clock_offset;
uint64_t o64, n64, r64;
o64 = *(uint64_t *)g2h(cs, old);
n64 = *(uint64_t *)g2h(cs, new);
- r64 = qatomic_cmpxchg((aligned_uint64_t *)g2h(cs, addr), o64, n64);
+ r64 = qatomic_cmpxchg((uint64_t *)g2h(cs, addr), o64, n64);
ret = r64 != o64;
}
break;
struct QSPEntry {
void *thread_ptr;
const QSPCallSite *callsite;
- aligned_uint64_t n_acqs;
- aligned_uint64_t ns;
+ uint64_t n_acqs;
+ uint64_t ns;
unsigned int n_objs; /* count of coalesced objs; only used for reporting */
};
typedef struct QSPEntry QSPEntry;