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