annotate projects/heavy/samphold/Utils.h @ 160:5bcf04234f80 heavy-updated

- added -std=c99 to Makefile for user-supplied C files (required for heavy files) - changed heavy core render.cpp file to use latest API and removed all redundant functions (e.g. foleyDesigner/touchkey stuff) - use build_pd.sh to compile and run pd files (-h for usage instructions)
author chnrx <chris.heinrichs@gmail.com>
date Thu, 05 Nov 2015 18:58:26 +0000
parents
children
rev   line source
chris@160 1 /**
chris@160 2 * Copyright (c) 2014, 2015, Enzien Audio Ltd.
chris@160 3 *
chris@160 4 * Permission to use, copy, modify, and/or distribute this software for any
chris@160 5 * purpose with or without fee is hereby granted, provided that the above
chris@160 6 * copyright notice and this permission notice appear in all copies.
chris@160 7 *
chris@160 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
chris@160 9 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
chris@160 10 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
chris@160 11 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
chris@160 12 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
chris@160 13 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
chris@160 14 * PERFORMANCE OF THIS SOFTWARE.
chris@160 15 */
chris@160 16
chris@160 17 #ifndef _HEAVY_UTILS_H_
chris@160 18 #define _HEAVY_UTILS_H_
chris@160 19
chris@160 20 // Type definitions
chris@160 21 #if _WIN32 || _WIN64 || WINAPI_FAMILY
chris@160 22 #define HV_WIN 1
chris@160 23 #include <stddef.h>
chris@160 24 #if defined (_MSC_VER)
chris@160 25 #define HV_MSVC 1
chris@160 26 #endif
chris@160 27 #define hv_size_t unsigned long
chris@160 28 #define hv_uint32_t unsigned int
chris@160 29 #define hv_uint16_t unsigned short
chris@160 30 #define hv_int32_t int
chris@160 31 #elif __APPLE__ && __MACH__
chris@160 32 #define HV_APPLE 1
chris@160 33 #include <stddef.h>
chris@160 34 #define hv_size_t size_t
chris@160 35 #define hv_uint32_t unsigned int
chris@160 36 #define hv_uint16_t unsigned short
chris@160 37 #define hv_int32_t int
chris@160 38 #elif __unix__ || __unix
chris@160 39 #define HV_UNIX 1
chris@160 40 #include <stddef.h>
chris@160 41 #include <stdint.h>
chris@160 42 #define hv_size_t size_t
chris@160 43 #define hv_uint32_t uint32_t
chris@160 44 #define hv_uint16_t uint16_t
chris@160 45 #define hv_int32_t int32_t
chris@160 46 #else
chris@160 47 #error Unsupported platform
chris@160 48 #endif
chris@160 49
chris@160 50 // Memory management
chris@160 51 extern void *hv_alloca(hv_size_t numbytes);
chris@160 52 extern void *hv_malloc(hv_size_t numbytes); // allocates memory on 16 byte boundaries and clears it to zero
chris@160 53 extern void hv_free(void *ptr); // frees aligned memory
chris@160 54 extern void *hv_realloc(void *ptr, hv_size_t numBytes);
chris@160 55 extern void *hv_memcpy(void *dest, const void *src, hv_size_t numbytes);
chris@160 56 extern void *hv_memset(void *ptr, hv_size_t numbytes); // sets everything to 0
chris@160 57
chris@160 58 // String handling
chris@160 59 extern hv_size_t hv_strlen(const char *str);
chris@160 60 extern char *hv_strncat(char *dest, const char *str, hv_size_t n);
chris@160 61 extern char *hv_strncpy(char *dest, const char *str, hv_size_t n);
chris@160 62 extern int hv_strcmp(const char *str1, const char *str2);
chris@160 63 extern int hv_strncmp(const char *str1, const char *str2, hv_size_t n);
chris@160 64 extern int hv_snprintf(char *dest, hv_size_t n, const char *format, ...);
chris@160 65
chris@160 66 // Math
chris@160 67 extern int hv_max_i(int x, int y);
chris@160 68 extern hv_size_t hv_max_ui(hv_size_t x, hv_size_t y);
chris@160 69 extern int hv_min_i(int x, int y);
chris@160 70 extern hv_size_t hv_min_ui(hv_size_t x, hv_size_t y);
chris@160 71 extern float hv_max_f(float x, float y);
chris@160 72 extern float hv_min_f(float x, float y);
chris@160 73 extern double hv_max_d(double x, double y);
chris@160 74 extern double hv_min_d(double x, double y);
chris@160 75 extern float hv_sin_f(float x);
chris@160 76 extern float hv_sinh_f(float x);
chris@160 77 extern float hv_cos_f(float x);
chris@160 78 extern float hv_cosh_f(float x);
chris@160 79 extern float hv_tan_f(float x);
chris@160 80 extern float hv_tanh_f(float x);
chris@160 81 extern float hv_asin_f(float x);
chris@160 82 extern float hv_asinh_f(float x);
chris@160 83 extern float hv_acos_f(float x);
chris@160 84 extern float hv_acosh_f(float x);
chris@160 85 extern float hv_atan_f(float x);
chris@160 86 extern float hv_atanh_f(float x);
chris@160 87 extern float hv_atan2_f(float x, float y);
chris@160 88 extern float hv_exp_f(float x);
chris@160 89 extern float hv_abs_f(float x);
chris@160 90 extern float hv_sqrt_f(float x);
chris@160 91 extern float hv_log_f(float x);
chris@160 92 extern float hv_log2_f(float x);
chris@160 93 extern float hv_log10_f(float x);
chris@160 94 extern float hv_ceil_f(float x);
chris@160 95 extern float hv_floor_f(float x);
chris@160 96 extern float hv_round_f(float x);
chris@160 97 extern float hv_pow_f(float x, float y);
chris@160 98 extern float hv_fma_f(float x, float y, float z);
chris@160 99
chris@160 100 // Utilities
chris@160 101 extern void hv_assert(int e);
chris@160 102 extern void hv_clear_buffer(float *b, int n);
chris@160 103 extern hv_uint32_t hv_min_max_log2(hv_uint32_t x);
chris@160 104
chris@160 105 // SIMD
chris@160 106 #ifndef HV_SIMD_NONE
chris@160 107 #define HV_SIMD_NEON __ARM_NEON__
chris@160 108 #define HV_SIMD_SSE (__SSE__ && __SSE2__ && __SSE3__ && __SSSE3__ && __SSE4_1__)
chris@160 109 #define HV_SIMD_AVX (__AVX__ && HV_SIMD_SSE) // it is required that if AVX exists then SSE will also be available
chris@160 110 #define HV_SIMD_FMA __FMA__
chris@160 111 #endif
chris@160 112
chris@160 113 #ifdef HV_WIN
chris@160 114 #include "Utils_windows.h"
chris@160 115 #elif HV_APPLE
chris@160 116 #include "Utils_mac.h"
chris@160 117 #elif HV_UNIX
chris@160 118 #include "Utils_unix.h"
chris@160 119 #else
chris@160 120 #error Unsupported platform
chris@160 121 #endif
chris@160 122
chris@160 123 #if HV_SIMD_NEON // NEON
chris@160 124 #define HV_N_SIMD 4
chris@160 125 #define hv_bufferf_t float32x4_t
chris@160 126 #define hv_bufferi_t int32x4_t
chris@160 127 #define hv_bInf_t float32x4_t
chris@160 128 #define hv_bOutf_t float32x4_t*
chris@160 129 #define hv_bIni_t int32x4_t
chris@160 130 #define hv_bOuti_t int32x4_t*
chris@160 131 #define VIf(_x) (_x)
chris@160 132 #define VOf(_x) (&_x)
chris@160 133 #define VIi(_x) (_x)
chris@160 134 #define VOi(_x) (&_x)
chris@160 135 #elif HV_SIMD_AVX // AVX
chris@160 136 #define HV_N_SIMD 8
chris@160 137 #define hv_bufferf_t __m256
chris@160 138 #define hv_bufferi_t __m256i
chris@160 139 #define hv_bInf_t __m256
chris@160 140 #define hv_bOutf_t __m256*
chris@160 141 #define hv_bIni_t __m256i
chris@160 142 #define hv_bOuti_t __m256i*
chris@160 143 #define VIf(_x) (_x)
chris@160 144 #define VOf(_x) (&_x)
chris@160 145 #define VIi(_x) (_x)
chris@160 146 #define VOi(_x) (&_x)
chris@160 147 #elif HV_SIMD_SSE // SSE
chris@160 148 #define HV_N_SIMD 4
chris@160 149 #define hv_bufferf_t __m128
chris@160 150 #define hv_bufferi_t __m128i
chris@160 151 #define hv_bInf_t __m128
chris@160 152 #define hv_bOutf_t __m128*
chris@160 153 #define hv_bIni_t __m128i
chris@160 154 #define hv_bOuti_t __m128i*
chris@160 155 #define VIf(_x) (_x)
chris@160 156 #define VOf(_x) (&_x)
chris@160 157 #define VIi(_x) (_x)
chris@160 158 #define VOi(_x) (&_x)
chris@160 159 #else // DEFAULT
chris@160 160 #define HV_N_SIMD 1
chris@160 161 #undef HV_SIMD_NONE
chris@160 162 #define HV_SIMD_NONE 1
chris@160 163 #define hv_bufferf_t float
chris@160 164 #define hv_bufferi_t int
chris@160 165 #define hv_bInf_t float
chris@160 166 #define hv_bOutf_t float*
chris@160 167 #define hv_bIni_t int
chris@160 168 #define hv_bOuti_t int*
chris@160 169 #define VIf(_x) (_x)
chris@160 170 #define VOf(_x) (&_x)
chris@160 171 #define VIi(_x) (_x)
chris@160 172 #define VOi(_x) (&_x)
chris@160 173 #endif
chris@160 174
chris@160 175 #define HV_N_SIMD_MASK (HV_N_SIMD-1)
chris@160 176
chris@160 177 #endif // _HEAVY_UTILS_H_