2010-05-18 11:58:33 -04:00
|
|
|
/*
|
2010-09-09 08:16:39 -04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 11:58:33 -04:00
|
|
|
*
|
2010-06-18 12:39:21 -04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 16:19:40 -04:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 12:39:21 -04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 16:19:40 -04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 11:58:33 -04:00
|
|
|
*/
|
|
|
|
|
2013-12-15 18:36:00 -08:00
|
|
|
#ifndef VPX_PORTS_MEM_H_
|
|
|
|
#define VPX_PORTS_MEM_H_
|
2013-03-05 14:12:16 -08:00
|
|
|
|
2010-05-18 11:58:33 -04:00
|
|
|
#include "vpx_config.h"
|
2010-05-24 11:39:59 -04:00
|
|
|
#include "vpx/vpx_integer.h"
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2012-11-02 15:39:14 -07:00
|
|
|
#if (defined(__GNUC__) && __GNUC__) || defined(__SUNPRO_C)
|
2016-07-25 14:22:32 -07:00
|
|
|
#define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n)))
|
2010-05-18 11:58:33 -04:00
|
|
|
#elif defined(_MSC_VER)
|
2016-07-25 14:22:32 -07:00
|
|
|
#define DECLARE_ALIGNED(n, typ, val) __declspec(align(n)) typ val
|
2010-05-18 11:58:33 -04:00
|
|
|
#else
|
|
|
|
#warning No alignment directives known for this compiler.
|
2016-07-25 14:22:32 -07:00
|
|
|
#define DECLARE_ALIGNED(n, typ, val) typ val
|
2010-05-18 11:58:33 -04:00
|
|
|
#endif
|
|
|
|
|
2014-09-10 06:32:21 +00:00
|
|
|
#if HAVE_NEON && defined(_MSC_VER)
|
|
|
|
#define __builtin_prefetch(x)
|
|
|
|
#endif
|
|
|
|
|
2015-05-11 19:09:22 -07:00
|
|
|
/* Shift down with rounding */
|
2016-07-25 14:22:32 -07:00
|
|
|
#define ROUND_POWER_OF_TWO(value, n) (((value) + (1 << ((n)-1))) >> (n))
|
2016-08-03 14:58:46 -07:00
|
|
|
#define ROUND64_POWER_OF_TWO(value, n) (((value) + (1ULL << ((n)-1))) >> (n))
|
2015-05-11 19:09:22 -07:00
|
|
|
|
|
|
|
#define ALIGN_POWER_OF_TWO(value, n) \
|
2016-07-25 14:22:32 -07:00
|
|
|
(((value) + ((1 << (n)) - 1)) & ~((1 << (n)) - 1))
|
2015-05-11 19:09:22 -07:00
|
|
|
|
2016-07-25 14:22:32 -07:00
|
|
|
#define CONVERT_TO_SHORTPTR(x) ((uint16_t *)(((uintptr_t)(x)) << 1))
|
2015-05-11 19:09:22 -07:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2016-07-25 14:22:32 -07:00
|
|
|
#define CONVERT_TO_BYTEPTR(x) ((uint8_t *)(((uintptr_t)(x)) >> 1))
|
2015-05-11 19:09:22 -07:00
|
|
|
#endif // CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
|
2016-07-27 14:19:20 -07:00
|
|
|
#if !defined(__has_feature)
|
|
|
|
#define __has_feature(x) 0
|
|
|
|
#endif // !defined(__has_feature)
|
|
|
|
|
2016-08-26 17:52:47 -07:00
|
|
|
#if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
|
2016-07-27 14:19:20 -07:00
|
|
|
#define VPX_WITH_ASAN 1
|
|
|
|
#else
|
|
|
|
#define VPX_WITH_ASAN 0
|
2016-08-26 17:52:47 -07:00
|
|
|
#endif // __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
|
2016-07-27 14:19:20 -07:00
|
|
|
|
2013-12-15 18:36:00 -08:00
|
|
|
#endif // VPX_PORTS_MEM_H_
|