21664986eded8e7458bc8cf7d8a3f9a7b4df672d
[babeltrace.git] / src / common / align.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2010 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 */
6
7 #ifndef _BABELTRACE_ALIGN_H
8 #define _BABELTRACE_ALIGN_H
9
10 #include "compat/compiler.h"
11 #include "compat/limits.h"
12
13 #define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1)
14 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask))
15 #define PTR_ALIGN(p, a) ((typeof(p)) ALIGN((unsigned long) (p), a))
16 #define ALIGN_FLOOR(x, a) __ALIGN_FLOOR_MASK(x, (typeof(x)) (a) - 1)
17 #define __ALIGN_FLOOR_MASK(x, mask) ((x) & ~(mask))
18 #define PTR_ALIGN_FLOOR(p, a) \
19 ((typeof(p)) ALIGN_FLOOR((unsigned long) (p), a))
20 #define IS_ALIGNED(x, a) (((x) & ((typeof(x)) (a) - 1)) == 0)
21
22 /*
23 * Align pointer on natural object alignment.
24 */
25 #define object_align(obj) PTR_ALIGN(obj, __alignof__(*(obj)))
26 #define object_align_floor(obj) PTR_ALIGN_FLOOR(obj, __alignof__(*(obj)))
27
28 /**
29 * offset_align - Calculate the offset needed to align an object on its natural
30 * alignment towards higher addresses.
31 * @align_drift: object offset from an "alignment"-aligned address.
32 * @alignment: natural object alignment. Must be non-zero, power of 2.
33 *
34 * Returns the offset that must be added to align towards higher
35 * addresses.
36 */
37 #define offset_align(align_drift, alignment) \
38 ({ \
39 MAYBE_BUILD_BUG_ON((alignment) == 0 \
40 || ((alignment) & ((alignment) - 1))); \
41 (((alignment) - (align_drift)) & ((alignment) - 1)); \
42 })
43
44 /**
45 * offset_align_floor - Calculate the offset needed to align an object
46 * on its natural alignment towards lower addresses.
47 * @align_drift: object offset from an "alignment"-aligned address.
48 * @alignment: natural object alignment. Must be non-zero, power of 2.
49 *
50 * Returns the offset that must be substracted to align towards lower addresses.
51 */
52 #define offset_align_floor(align_drift, alignment) \
53 ({ \
54 MAYBE_BUILD_BUG_ON((alignment) == 0 \
55 || ((alignment) & ((alignment) - 1))); \
56 (((align_drift) - (alignment)) & ((alignment) - 1)); \
57 })
58
59 #endif /* _BABELTRACE_ALIGN_H */
This page took 0.030774 seconds and 4 git commands to generate.