2 * Copyright (C) 2010-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * SPDX-License-Identifier: MIT
14 * Align value to the next multiple of align. Returns val if it already is a
15 * multiple of align. Align must be a power of two.
17 #define __lttng_align_ceil_mask(v, mask) (((v) + (mask)) & ~(mask))
19 #define lttng_align_ceil(v, align) \
20 __lttng_align_ceil_mask(v, (__typeof__(v)) (align) - 1)
23 * Align value to the previous multiple of align. Returns val if it already is a
24 * multiple of align. Align must be a power of two.
26 #define __lttng_align_floor_mask(v, mask) ((v) & ~(mask))
28 #define lttng_align_floor(v, align) \
29 __lttng_align_floor_mask(v, (__typeof__(v)) (align) - 1)
32 * lttng_offset_align - Calculate the offset needed to align an object on its natural
33 * alignment towards higher addresses.
34 * @align_drift: object offset from an "alignment"-aligned address.
35 * @alignment: natural object alignment. Must be non-zero, power of 2.
37 * Returns the offset that must be added to align towards higher
40 #define lttng_offset_align(align_drift, alignment) \
42 LTTNG_BUILD_RUNTIME_BUG_ON((alignment) == 0 \
43 || ((alignment) & ((alignment) - 1))); \
44 (((alignment) - (align_drift)) & ((alignment) - 1)); \
48 * lttng_offset_align_floor - Calculate the offset needed to align an object
49 * on its natural alignment towards lower addresses.
50 * @align_drift: object offset from an "alignment"-aligned address.
51 * @alignment: natural object alignment. Must be non-zero, power of 2.
53 * Returns the offset that must be substracted to align towards lower addresses.
55 #define lttng_offset_align_floor(align_drift, alignment) \
57 LTTNG_BUILD_RUNTIME_BUG_ON((alignment) == 0 \
58 || ((alignment) & ((alignment) - 1))); \
59 (((align_drift) - (alignment)) & ((alignment) - 1)); \
62 #endif /* _LTTNG_ALIGN_H */