Repository URL to install this package:
|
Version:
3.15.0 ▾
|
/* ===================================================================
*
* Copyright (c) 2018, Helder Eijs <helderijs@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* ===================================================================
*/
#ifndef COMMON_H
#define COMMON_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "errors.h"
/*
* Define STATIC as an empty string to turn certain static functions public
*/
#ifndef STATIC
#define STATIC static inline
#endif
#define TRUE 1
#define FALSE 0
#ifndef MAX
#define MAX(a,b) ((a)>(b)?(a):(b))
#endif
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
#define _PASTE(x,y) x##y
#define _PASTE2(x,y) _PASTE(x,y)
#ifdef HAVE_STDINT_H
#include <stdint.h>
#else
typedef __int8 int8_t;
typedef unsigned __int8 uint8_t;
typedef __int16 int16_t;
typedef unsigned __int16 uint16_t;
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#ifndef UINT32_MAX
#define UINT32_MAX 0xFFFFFFFFUL
#endif
#endif /* HAVE_STDINT_H */
#ifdef _MSC_VER
#define inline _inline
#define RESTRICT __restrict
#include <malloc.h>
#else /** Not MSC **/
#if __STDC_VERSION__ >= 199901L
#define RESTRICT restrict
#else
#ifdef __GNUC__
#define RESTRICT __restrict
#define inline __inline
#else
#define RESTRICT
#define inline
#endif
#endif
#endif
/** Force checking of assertions **/
#ifdef NDEBUG
#undef NDEBUG
#endif
#include <assert.h>
/*
* On Windows, distutils expects that a CPython module always exports the symbol init${MODNAME}
*/
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <Python.h>
#if PY_MAJOR_VERSION >= 3
#define FAKE_INIT(x) PyMODINIT_FUNC _PASTE2(PyInit__,x) (void) { return NULL; }
#else
#define FAKE_INIT(x) PyMODINIT_FUNC _PASTE2(init_,x) (void) { return; }
#endif
#else
#define FAKE_INIT(x)
#endif
/*
* On Windows, functions must be explicitly marked for export.
*/
#if defined(_MSC_VER) || defined(__MINGW32__)
#define EXPORT_SYM __declspec(dllexport)
#else
#define EXPORT_SYM
#endif
/*
* Platform specific routine for aligned allocation
*/
#if defined(_MSC_VER) || defined(__MINGW32__)
static inline void* align_alloc(size_t size, unsigned boundary)
{
return _aligned_malloc(size, boundary);
}
static inline void align_free(void *mem)
{
if (mem) {
_aligned_free(mem);
}
}
#elif defined(HAVE_POSIX_MEMALIGN)
static inline void* align_alloc(size_t size, unsigned boundary)
{
int result;
void *new_mem;
result = posix_memalign((void**)&new_mem, boundary, size);
return result ? NULL : new_mem;
}
static inline void align_free(void *mem)
{
free(mem);
}
#elif defined(HAVE_MEMALIGN)
#include <malloc.h>
static inline void* align_alloc(size_t size, unsigned boundary)
{
return memalign(boundary, size);
}
static inline void align_free(void *mem)
{
free(mem);
}
#else
#error No routines for aligned memory
#endif
/*
* Find first character in a string which is not c.
*/
static inline const uint8_t* memchr_not(const uint8_t* s, int c, size_t n)
{
size_t i;
for (i=0; i<n; i++, s++)
if (*s != c)
return s;
return NULL;
}
/*
* On 32-bit x86 platforms, gcc assumes the stack to be aligned to 16
* bytes, but the caller may actually only align it to 4 bytes, which
* make functions crash if they use SSE2 intrinsics.
* https://gcc.gnu.org/bugzilla/show_bug.cgi?id=40838
*/
#if defined(GCC_REALIGN)
#define FUNC_SSE2 __attribute__((force_align_arg_pointer))
#else
#define FUNC_SSE2
#endif
#endif