2013-11-19 11:30:58 +01:00
|
|
|
#pragma once
|
|
|
|
|
2014-06-19 15:50:18 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define thread_local __declspec(thread)
|
|
|
|
#elif __APPLE__
|
|
|
|
#define thread_local __thread
|
|
|
|
#endif
|
|
|
|
|
2014-07-14 21:15:30 +02:00
|
|
|
#ifdef _WIN32
|
2014-08-22 16:21:55 +02:00
|
|
|
#define __noinline __declspec(noinline)
|
2014-07-14 21:15:30 +02:00
|
|
|
#else
|
2014-08-22 16:21:55 +02:00
|
|
|
#define __noinline __attribute__((noinline))
|
2014-07-14 21:15:30 +02:00
|
|
|
#endif
|
|
|
|
|
2014-07-01 17:34:25 +02:00
|
|
|
template<size_t size>
|
2014-09-19 02:19:22 +02:00
|
|
|
void strcpy_trunc(char(&dst)[size], const std::string& src)
|
2014-07-01 17:34:25 +02:00
|
|
|
{
|
|
|
|
const size_t count = (src.size() >= size) ? size - 1 /* truncation */ : src.size();
|
|
|
|
memcpy(dst, src.c_str(), count);
|
|
|
|
dst[count] = 0;
|
|
|
|
}
|
|
|
|
|
2014-09-19 02:19:22 +02:00
|
|
|
template<size_t size, size_t rsize>
|
|
|
|
void strcpy_trunc(char(&dst)[size], const char(&src)[rsize])
|
|
|
|
{
|
|
|
|
const size_t count = (rsize >= size) ? size - 1 /* truncation */ : rsize;
|
|
|
|
memcpy(dst, src, count);
|
|
|
|
dst[count] = 0;
|
|
|
|
}
|
|
|
|
|
2013-11-19 11:30:58 +01:00
|
|
|
#if defined(__GNUG__)
|
2014-02-23 17:52:52 +01:00
|
|
|
#include <cmath>
|
2014-04-10 00:54:32 +02:00
|
|
|
#include <stdlib.h>
|
2014-06-02 19:46:42 +02:00
|
|
|
#include <cstdint>
|
2014-04-29 00:51:49 +02:00
|
|
|
|
|
|
|
#ifndef __APPLE__
|
2014-04-10 00:54:32 +02:00
|
|
|
#include <malloc.h>
|
2014-04-29 00:51:49 +02:00
|
|
|
#endif
|
2014-04-10 00:54:32 +02:00
|
|
|
|
2014-02-23 17:52:52 +01:00
|
|
|
#define _fpclass(x) std::fpclassify(x)
|
2013-11-19 11:30:58 +01:00
|
|
|
#define __forceinline __attribute__((always_inline))
|
|
|
|
#define _byteswap_ushort(x) __builtin_bswap16(x)
|
|
|
|
#define _byteswap_ulong(x) __builtin_bswap32(x)
|
|
|
|
#define _byteswap_uint64(x) __builtin_bswap64(x)
|
|
|
|
#define INFINITE 0xFFFFFFFF
|
2014-02-21 17:13:57 +01:00
|
|
|
#define _CRT_ALIGN(x) __attribute__((aligned(x)))
|
2014-02-23 17:52:52 +01:00
|
|
|
#define InterlockedCompareExchange(ptr,new_val,old_val) __sync_val_compare_and_swap(ptr,old_val,new_val)
|
2014-09-20 01:16:11 +02:00
|
|
|
#define InterlockedExchange(ptr, value) __sync_lock_test_and_set(ptr, value)
|
2014-09-21 01:29:42 +02:00
|
|
|
#define InterlockedOr(ptr, value) __sync_fetch_and_or(ptr, value)
|
|
|
|
#define InterlockedAnd(ptr, value) __sync_fetch_and_and(ptr, value)
|
|
|
|
#define InterlockedXor(ptr, value) __sync_fetch_and_xor(ptr, value)
|
|
|
|
|
|
|
|
//inline int64_t InterlockedOr64(volatile int64_t *dest, int64_t val)
|
|
|
|
//{
|
|
|
|
// int64_t olderval;
|
|
|
|
// int64_t oldval = *dest;
|
|
|
|
// do
|
|
|
|
// {
|
|
|
|
// olderval = oldval;
|
|
|
|
// oldval = __sync_val_compare_and_swap(dest, olderval | val, olderval);
|
|
|
|
// } while (olderval != oldval);
|
|
|
|
// return oldval;
|
|
|
|
//}
|
2014-06-02 19:46:42 +02:00
|
|
|
|
2014-06-02 22:00:05 +02:00
|
|
|
inline uint64_t __umulh(uint64_t a, uint64_t b)
|
|
|
|
{
|
|
|
|
uint64_t result;
|
|
|
|
__asm__("mulq %[b]" : "=d" (result) : [a] "a" (a), [b] "rm" (b));
|
|
|
|
return result;
|
|
|
|
}
|
2014-06-02 19:46:42 +02:00
|
|
|
|
2014-06-02 22:00:05 +02:00
|
|
|
inline int64_t __mulh(int64_t a, int64_t b)
|
|
|
|
{
|
|
|
|
int64_t result;
|
|
|
|
__asm__("imulq %[b]" : "=d" (result) : [a] "a" (a), [b] "rm" (b));
|
|
|
|
return result;
|
|
|
|
}
|
2014-06-02 17:49:30 +02:00
|
|
|
|
2014-07-12 09:02:39 +02:00
|
|
|
|
2014-04-29 00:51:49 +02:00
|
|
|
void * _aligned_malloc(size_t size, size_t alignment);
|
2014-07-12 09:02:39 +02:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
2014-04-29 22:10:42 +02:00
|
|
|
int clock_gettime(int foo, struct timespec *ts);
|
2014-04-29 00:51:49 +02:00
|
|
|
#define wxIsNaN(x) ((x) != (x))
|
|
|
|
|
|
|
|
#ifndef CLOCK_MONOTONIC
|
|
|
|
#define CLOCK_MONOTONIC 0
|
2014-04-29 22:10:42 +02:00
|
|
|
#endif /* !CLOCK_MONOTONIC */
|
2014-04-29 00:51:49 +02:00
|
|
|
|
2014-07-12 09:02:39 +02:00
|
|
|
#endif /* __APPLE__ */
|
2014-04-29 00:51:49 +02:00
|
|
|
|
2014-04-29 22:10:42 +02:00
|
|
|
#define _aligned_free free
|
2014-04-29 00:51:49 +02:00
|
|
|
|
2014-02-28 19:34:50 +01:00
|
|
|
#define DWORD int32_t
|
2013-11-19 11:30:58 +01:00
|
|
|
#endif
|
2014-08-29 00:49:26 +02:00
|
|
|
|
|
|
|
#ifndef InterlockedCompareExchange
|
2014-09-25 23:41:35 +02:00
|
|
|
static __forceinline uint8_t InterlockedCompareExchange(volatile uint8_t* dest, uint8_t exch, uint8_t comp)
|
|
|
|
{
|
|
|
|
return _InterlockedCompareExchange8((volatile char*)dest, exch, comp);
|
|
|
|
}
|
2014-09-23 16:27:18 +02:00
|
|
|
static __forceinline uint16_t InterlockedCompareExchange(volatile uint16_t* dest, uint16_t exch, uint16_t comp)
|
|
|
|
{
|
|
|
|
return _InterlockedCompareExchange16((volatile short*)dest, exch, comp);
|
|
|
|
}
|
2014-08-29 00:49:26 +02:00
|
|
|
static __forceinline uint32_t InterlockedCompareExchange(volatile uint32_t* dest, uint32_t exch, uint32_t comp)
|
|
|
|
{
|
|
|
|
return _InterlockedCompareExchange((volatile long*)dest, exch, comp);
|
|
|
|
}
|
|
|
|
static __forceinline uint64_t InterlockedCompareExchange(volatile uint64_t* dest, uint64_t exch, uint64_t comp)
|
|
|
|
{
|
|
|
|
return _InterlockedCompareExchange64((volatile long long*)dest, exch, comp);
|
|
|
|
}
|
2014-09-20 01:16:11 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef InterlockedExchange
|
2014-09-25 23:41:35 +02:00
|
|
|
static __forceinline uint8_t InterlockedExchange(volatile uint8_t* dest, uint8_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedExchange8((volatile char*)dest, value);
|
|
|
|
}
|
2014-09-23 16:27:18 +02:00
|
|
|
static __forceinline uint16_t InterlockedExchange(volatile uint16_t* dest, uint16_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedExchange16((volatile short*)dest, value);
|
|
|
|
}
|
2014-09-20 01:16:11 +02:00
|
|
|
static __forceinline uint32_t InterlockedExchange(volatile uint32_t* dest, uint32_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedExchange((volatile long*)dest, value);
|
|
|
|
}
|
|
|
|
static __forceinline uint64_t InterlockedExchange(volatile uint64_t* dest, uint64_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedExchange64((volatile long long*)dest, value);
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-21 01:29:42 +02:00
|
|
|
|
|
|
|
#ifndef InterlockedOr
|
2014-09-25 23:41:35 +02:00
|
|
|
static __forceinline uint8_t InterlockedOr(volatile uint8_t* dest, uint8_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedOr8((volatile char*)dest, value);
|
|
|
|
}
|
2014-09-23 16:27:18 +02:00
|
|
|
static __forceinline uint16_t InterlockedOr(volatile uint16_t* dest, uint16_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedOr16((volatile short*)dest, value);
|
|
|
|
}
|
2014-09-21 01:29:42 +02:00
|
|
|
static __forceinline uint32_t InterlockedOr(volatile uint32_t* dest, uint32_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedOr((volatile long*)dest, value);
|
|
|
|
}
|
|
|
|
static __forceinline uint64_t InterlockedOr(volatile uint64_t* dest, uint64_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedOr64((volatile long long*)dest, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef InterlockedAnd
|
2014-09-25 23:41:35 +02:00
|
|
|
static __forceinline uint8_t InterlockedAnd(volatile uint8_t* dest, uint8_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedAnd8((volatile char*)dest, value);
|
|
|
|
}
|
2014-09-23 16:27:18 +02:00
|
|
|
static __forceinline uint16_t InterlockedAnd(volatile uint16_t* dest, uint16_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedAnd16((volatile short*)dest, value);
|
|
|
|
}
|
2014-09-21 01:29:42 +02:00
|
|
|
static __forceinline uint32_t InterlockedAnd(volatile uint32_t* dest, uint32_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedAnd((volatile long*)dest, value);
|
|
|
|
}
|
|
|
|
static __forceinline uint64_t InterlockedAnd(volatile uint64_t* dest, uint64_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedAnd64((volatile long long*)dest, value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef InterlockedXor
|
2014-09-25 23:41:35 +02:00
|
|
|
static __forceinline uint8_t InterlockedXor(volatile uint8_t* dest, uint8_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedXor8((volatile char*)dest, value);
|
|
|
|
}
|
2014-09-23 16:27:18 +02:00
|
|
|
static __forceinline uint16_t InterlockedXor(volatile uint16_t* dest, uint16_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedXor16((volatile short*)dest, value);
|
|
|
|
}
|
2014-09-21 01:29:42 +02:00
|
|
|
static __forceinline uint32_t InterlockedXor(volatile uint32_t* dest, uint32_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedXor((volatile long*)dest, value);
|
|
|
|
}
|
|
|
|
static __forceinline uint64_t InterlockedXor(volatile uint64_t* dest, uint64_t value)
|
|
|
|
{
|
|
|
|
return _InterlockedXor64((volatile long long*)dest, value);
|
|
|
|
}
|
|
|
|
#endif
|