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:32:02 +01:00
|
|
|
#ifndef VPX_MEM_INCLUDE_VPX_MEM_INTRNL_H_
|
|
|
|
#define VPX_MEM_INCLUDE_VPX_MEM_INTRNL_H_
|
2012-12-23 16:20:10 +01:00
|
|
|
#include "./vpx_config.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
#ifndef CONFIG_MEM_MANAGER
|
|
|
|
# if defined(VXWORKS)
|
2010-10-28 01:04:02 +02:00
|
|
|
# define CONFIG_MEM_MANAGER 1 /*include heap manager functionality,*/
|
|
|
|
/*default: enabled on vxworks*/
|
2010-05-18 17:58:33 +02:00
|
|
|
# else
|
2010-10-28 01:04:02 +02:00
|
|
|
# define CONFIG_MEM_MANAGER 0 /*include heap manager functionality*/
|
2010-05-18 17:58:33 +02:00
|
|
|
# endif
|
|
|
|
#endif /*CONFIG_MEM_MANAGER*/
|
|
|
|
|
|
|
|
#ifndef CONFIG_MEM_TRACKER
|
2010-10-28 01:04:02 +02:00
|
|
|
# define CONFIG_MEM_TRACKER 1 /*include xvpx_* calls in the lib*/
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_MEM_CHECKS
|
2010-10-28 01:04:02 +02:00
|
|
|
# define CONFIG_MEM_CHECKS 0 /*include some basic safety checks in
|
|
|
|
vpx_memcpy, _memset, and _memmove*/
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef USE_GLOBAL_FUNCTION_POINTERS
|
2010-10-28 01:04:02 +02:00
|
|
|
# define USE_GLOBAL_FUNCTION_POINTERS 0 /*use function pointers instead of compiled functions.*/
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CONFIG_MEM_TRACKER
|
|
|
|
# include "vpx_mem_tracker.h"
|
|
|
|
# if VPX_MEM_TRACKER_VERSION_CHIEF != 2 || VPX_MEM_TRACKER_VERSION_MAJOR != 5
|
|
|
|
# error "vpx_mem requires memory tracker version 2.5 to track memory usage"
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ADDRESS_STORAGE_SIZE sizeof(size_t)
|
|
|
|
|
|
|
|
#ifndef DEFAULT_ALIGNMENT
|
|
|
|
# if defined(VXWORKS)
|
2010-10-28 01:04:02 +02:00
|
|
|
# define DEFAULT_ALIGNMENT 32 /*default addr alignment to use in
|
2012-07-14 00:21:29 +02:00
|
|
|
calls to vpx_* functions other
|
|
|
|
than vpx_memalign*/
|
2010-05-18 17:58:33 +02:00
|
|
|
# else
|
2013-09-07 03:20:10 +02:00
|
|
|
# define DEFAULT_ALIGNMENT (2 * sizeof(void*)) /* NOLINT */
|
2010-05-18 17:58:33 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CONFIG_MEM_TRACKER
|
2010-10-28 01:04:02 +02:00
|
|
|
# define TRY_BOUNDS_CHECK 1 /*when set to 1 pads each allocation,
|
2012-07-14 00:21:29 +02:00
|
|
|
integrity can be checked using
|
|
|
|
vpx_memory_tracker_check_integrity
|
|
|
|
or on free by defining*/
|
2010-10-28 01:04:02 +02:00
|
|
|
/*TRY_BOUNDS_CHECK_ON_FREE*/
|
2010-05-18 17:58:33 +02:00
|
|
|
#else
|
|
|
|
# define TRY_BOUNDS_CHECK 0
|
|
|
|
#endif /*CONFIG_MEM_TRACKER*/
|
|
|
|
|
|
|
|
#if TRY_BOUNDS_CHECK
|
2010-10-28 01:04:02 +02:00
|
|
|
# define TRY_BOUNDS_CHECK_ON_FREE 0 /*checks mem integrity on every
|
2012-07-14 00:21:29 +02:00
|
|
|
free, very expensive*/
|
2010-10-28 01:04:02 +02:00
|
|
|
# define BOUNDS_CHECK_VALUE 0xdeadbeef /*value stored before/after ea.
|
2012-07-14 00:21:29 +02:00
|
|
|
mem addr for bounds checking*/
|
2010-10-28 01:04:02 +02:00
|
|
|
# define BOUNDS_CHECK_PAD_SIZE 32 /*size of the padding before and
|
2012-07-14 00:21:29 +02:00
|
|
|
after ea allocation to be filled
|
|
|
|
with BOUNDS_CHECK_VALUE.
|
|
|
|
this should be a multiple of 4*/
|
2010-05-18 17:58:33 +02:00
|
|
|
#else
|
|
|
|
# define BOUNDS_CHECK_VALUE 0
|
|
|
|
# define BOUNDS_CHECK_PAD_SIZE 0
|
|
|
|
#endif /*TRY_BOUNDS_CHECK*/
|
|
|
|
|
|
|
|
#ifndef REMOVE_PRINTFS
|
|
|
|
# define REMOVE_PRINTFS 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Should probably use a vpx_mem logger function. */
|
|
|
|
#if REMOVE_PRINTFS
|
|
|
|
# define _P(x)
|
|
|
|
#else
|
|
|
|
# define _P(x) x
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*returns an addr aligned to the byte boundary specified by align*/
|
|
|
|
#define align_addr(addr,align) (void*)(((size_t)(addr) + ((align) - 1)) & (size_t)-(align))
|
|
|
|
|
2013-12-16 03:32:02 +01:00
|
|
|
#endif // VPX_MEM_INCLUDE_VPX_MEM_INTRNL_H_
|