Port: __STRINGIFY exists on Cygwin
[babeltrace.git] / include / babeltrace / align-internal.h
CommitLineData
d79865b9
MD
1#ifndef _BABELTRACE_ALIGN_H
2#define _BABELTRACE_ALIGN_H
6dc2ca62 3
de0ba614 4/*
d79865b9 5 * BabelTrace align.h - alignment header
de0ba614 6 *
ccd7e1c8 7 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
de0ba614 8 *
ccd7e1c8
MD
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
de0ba614 15 *
ccd7e1c8
MD
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
c462e188
MD
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
de0ba614
MD
26 */
27
3d9990ac 28#include <babeltrace/compiler-internal.h>
3d9990ac 29#include <babeltrace/compat/limits-internal.h>
c4f467da 30
6dc2ca62
MD
31#define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1)
32#define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask))
33#define PTR_ALIGN(p, a) ((typeof(p)) ALIGN((unsigned long) (p), a))
34#define ALIGN_FLOOR(x, a) __ALIGN_FLOOR_MASK(x, (typeof(x)) (a) - 1)
35#define __ALIGN_FLOOR_MASK(x, mask) ((x) & ~(mask))
36#define PTR_ALIGN_FLOOR(p, a) \
37 ((typeof(p)) ALIGN_FLOOR((unsigned long) (p), a))
38#define IS_ALIGNED(x, a) (((x) & ((typeof(x)) (a) - 1)) == 0)
39
40/*
41 * Align pointer on natural object alignment.
42 */
43#define object_align(obj) PTR_ALIGN(obj, __alignof__(*(obj)))
44#define object_align_floor(obj) PTR_ALIGN_FLOOR(obj, __alignof__(*(obj)))
45
46/**
47 * offset_align - Calculate the offset needed to align an object on its natural
48 * alignment towards higher addresses.
49 * @align_drift: object offset from an "alignment"-aligned address.
50 * @alignment: natural object alignment. Must be non-zero, power of 2.
51 *
52 * Returns the offset that must be added to align towards higher
53 * addresses.
54 */
55#define offset_align(align_drift, alignment) \
56 ({ \
57 MAYBE_BUILD_BUG_ON((alignment) == 0 \
58 || ((alignment) & ((alignment) - 1))); \
59 (((alignment) - (align_drift)) & ((alignment) - 1)); \
60 })
61
62/**
63 * offset_align_floor - Calculate the offset needed to align an object
64 * on its natural alignment towards lower addresses.
65 * @align_drift: object offset from an "alignment"-aligned address.
66 * @alignment: natural object alignment. Must be non-zero, power of 2.
67 *
68 * Returns the offset that must be substracted to align towards lower addresses.
69 */
70#define offset_align_floor(align_drift, alignment) \
71 ({ \
72 MAYBE_BUILD_BUG_ON((alignment) == 0 \
73 || ((alignment) & ((alignment) - 1))); \
a12af8c1 74 (((align_drift) - (alignment)) & ((alignment) - 1)); \
6dc2ca62
MD
75 })
76
d79865b9 77#endif /* _BABELTRACE_ALIGN_H */
This page took 0.048303 seconds and 4 git commands to generate.