FFmpeg
mem_internal.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVUTIL_MEM_INTERNAL_H
22 #define AVUTIL_MEM_INTERNAL_H
23 
24 #include "config.h"
25 
26 #include <stdint.h>
27 #include <stdalign.h>
28 
29 #include "attributes.h"
30 #include "macros.h"
31 
32 /**
33  * @def DECLARE_ALIGNED(n,t,v)
34  * Declare a variable that is aligned in memory.
35  *
36  * @code{.c}
37  * DECLARE_ALIGNED(16, uint16_t, aligned_int) = 42;
38  * DECLARE_ALIGNED(32, uint8_t, aligned_array)[128];
39  *
40  * // The default-alignment equivalent would be
41  * uint16_t aligned_int = 42;
42  * uint8_t aligned_array[128];
43  * @endcode
44  *
45  * @param n Minimum alignment in bytes
46  * @param t Type of the variable (or array element)
47  * @param v Name of the variable
48  */
49 
50 /**
51  * @def DECLARE_ASM_ALIGNED(n,t,v)
52  * Declare an aligned variable appropriate for use in inline assembly code.
53  *
54  * @code{.c}
55  * DECLARE_ASM_ALIGNED(16, uint64_t, pw_08) = UINT64_C(0x0008000800080008);
56  * @endcode
57  *
58  * @param n Minimum alignment in bytes
59  * @param t Type of the variable (or array element)
60  * @param v Name of the variable
61  */
62 
63 /**
64  * @def DECLARE_ASM_CONST(n,t,v)
65  * Declare a static constant aligned variable appropriate for use in inline
66  * assembly code.
67  *
68  * @code{.c}
69  * DECLARE_ASM_CONST(16, uint64_t, pw_08) = UINT64_C(0x0008000800080008);
70  * @endcode
71  *
72  * @param n Minimum alignment in bytes
73  * @param t Type of the variable (or array element)
74  * @param v Name of the variable
75  */
76 
77 #if defined(__DJGPP__)
78  #define DECLARE_ALIGNED_T(n,t,v) alignas(FFMIN(n, 16)) t v
79  #define DECLARE_ASM_ALIGNED(n,t,v) alignas(FFMIN(n, 16)) t av_used v
80  #define DECLARE_ASM_CONST(n,t,v) alignas(FFMIN(n, 16)) static const t av_used v
81 #elif defined(_MSC_VER)
82  #define DECLARE_ALIGNED_T(n,t,v) __declspec(align(n)) t v
83  #define DECLARE_ASM_ALIGNED(n,t,v) __declspec(align(n)) t v
84  #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
85 #else
86  #define DECLARE_ALIGNED_T(n,t,v) alignas(n) t v
87  #define DECLARE_ASM_ALIGNED(n,t,v) alignas(n) t av_used v
88  #define DECLARE_ASM_CONST(n,t,v) alignas(n) static const t av_used v
89 #endif
90 
91 #if HAVE_SIMD_ALIGN_64
92  #define ALIGN_64 64
93  #define ALIGN_32 32
94 #elif HAVE_SIMD_ALIGN_32
95  #define ALIGN_64 32
96  #define ALIGN_32 32
97 #else
98  #define ALIGN_64 16
99  #define ALIGN_32 16
100 #endif
101 
102 #define DECLARE_ALIGNED(n,t,v) DECLARE_ALIGNED_V(n,t,v)
103 
104 // Macro needs to be double-wrapped in order to expand
105 // possible other macros being passed for n.
106 #define DECLARE_ALIGNED_V(n,t,v) DECLARE_ALIGNED_##n(t,v)
107 
108 #define DECLARE_ALIGNED_4(t,v) DECLARE_ALIGNED_T( 4, t, v)
109 #define DECLARE_ALIGNED_8(t,v) DECLARE_ALIGNED_T( 8, t, v)
110 #define DECLARE_ALIGNED_16(t,v) DECLARE_ALIGNED_T( 16, t, v)
111 #define DECLARE_ALIGNED_32(t,v) DECLARE_ALIGNED_T(ALIGN_32, t, v)
112 #define DECLARE_ALIGNED_64(t,v) DECLARE_ALIGNED_T(ALIGN_64, t, v)
113 
114 // Some broken preprocessors need a second expansion
115 // to be forced to tokenize __VA_ARGS__
116 #define E1(x) x
117 
118 #define LOCAL_ALIGNED_D(a, t, v, s, o, ...) \
119  DECLARE_ALIGNED(a, t, la_##v) s o; \
120  t (*v) o = la_##v
121 
122 #define LOCAL_ALIGNED(a, t, v, ...) LOCAL_ALIGNED_##a(t, v, __VA_ARGS__)
123 
124 #define LOCAL_ALIGNED_4(t, v, ...) E1(LOCAL_ALIGNED_D(4, t, v, __VA_ARGS__,,))
125 
126 #define LOCAL_ALIGNED_8(t, v, ...) E1(LOCAL_ALIGNED_D(8, t, v, __VA_ARGS__,,))
127 
128 #define LOCAL_ALIGNED_16(t, v, ...) E1(LOCAL_ALIGNED_D(16, t, v, __VA_ARGS__,,))
129 
130 #define LOCAL_ALIGNED_32(t, v, ...) E1(LOCAL_ALIGNED_D(32, t, v, __VA_ARGS__,,))
131 
132 #endif /* AVUTIL_MEM_INTERNAL_H */
macros.h
attributes.h