]> granicus.if.org Git - libvpx/blob - vpx_ports/mem.h
Merge "correct break placement"
[libvpx] / vpx_ports / mem.h
1 /*
2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #ifndef VPX_PORTS_MEM_H_
12 #define VPX_PORTS_MEM_H_
13
14 #include "vpx_config.h"
15 #include "vpx/vpx_integer.h"
16
17 #if (defined(__GNUC__) && __GNUC__) || defined(__SUNPRO_C)
18 #define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n)))
19 #elif defined(_MSC_VER)
20 #define DECLARE_ALIGNED(n, typ, val) __declspec(align(n)) typ val
21 #else
22 #warning No alignment directives known for this compiler.
23 #define DECLARE_ALIGNED(n, typ, val) typ val
24 #endif
25
26 /* Indicates that the usage of the specified variable has been audited to assure
27  * that it's safe to use uninitialized. Silences 'may be used uninitialized'
28  * warnings on gcc.
29  */
30 #if defined(__GNUC__) && __GNUC__
31 #define UNINITIALIZED_IS_SAFE(x) x = x
32 #else
33 #define UNINITIALIZED_IS_SAFE(x) x
34 #endif
35
36 #if HAVE_NEON && defined(_MSC_VER)
37 #define __builtin_prefetch(x)
38 #endif
39
40 /* Shift down with rounding */
41 #define ROUND_POWER_OF_TWO(value, n) (((value) + (1 << ((n)-1))) >> (n))
42 #define ROUND64_POWER_OF_TWO(value, n) (((value) + (1ULL << ((n)-1))) >> (n))
43
44 #define ALIGN_POWER_OF_TWO(value, n) \
45   (((value) + ((1 << (n)) - 1)) & ~((1 << (n)) - 1))
46
47 #define CONVERT_TO_SHORTPTR(x) ((uint16_t *)(((uintptr_t)(x)) << 1))
48 #if CONFIG_VP9_HIGHBITDEPTH
49 #define CONVERT_TO_BYTEPTR(x) ((uint8_t *)(((uintptr_t)(x)) >> 1))
50 #endif  // CONFIG_VP9_HIGHBITDEPTH
51
52 #if !defined(__has_feature)
53 #define __has_feature(x) 0
54 #endif  // !defined(__has_feature)
55
56 #if __has_feature(address_sanitizer) || __SANITIZE_ADDRESS__
57 #define VPX_WITH_ASAN 1
58 #else
59 #define VPX_WITH_ASAN 0
60 #endif  // __has_feature(address_sanitizer) || __SANITIZE_ADDRESS
61
62 #endif  // VPX_PORTS_MEM_H_