Blame jemalloc/include/msvc_compat/C99/stdint.h

Packit 345191
// ISO C9x  compliant stdint.h for Microsoft Visual Studio
Packit 345191
// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 
Packit 345191
// 
Packit 345191
//  Copyright (c) 2006-2008 Alexander Chemeris
Packit 345191
// 
Packit 345191
// Redistribution and use in source and binary forms, with or without
Packit 345191
// modification, are permitted provided that the following conditions are met:
Packit 345191
// 
Packit 345191
//   1. Redistributions of source code must retain the above copyright notice,
Packit 345191
//      this list of conditions and the following disclaimer.
Packit 345191
// 
Packit 345191
//   2. Redistributions in binary form must reproduce the above copyright
Packit 345191
//      notice, this list of conditions and the following disclaimer in the
Packit 345191
//      documentation and/or other materials provided with the distribution.
Packit 345191
// 
Packit 345191
//   3. The name of the author may be used to endorse or promote products
Packit 345191
//      derived from this software without specific prior written permission.
Packit 345191
// 
Packit 345191
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
Packit 345191
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
Packit 345191
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
Packit 345191
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit 345191
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Packit 345191
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
Packit 345191
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
Packit 345191
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
Packit 345191
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
Packit 345191
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 345191
// 
Packit 345191
///////////////////////////////////////////////////////////////////////////////
Packit 345191
Packit 345191
#ifndef _MSC_VER // [
Packit 345191
#error "Use this header only with Microsoft Visual C++ compilers!"
Packit 345191
#endif // _MSC_VER ]
Packit 345191
Packit 345191
#ifndef _MSC_STDINT_H_ // [
Packit 345191
#define _MSC_STDINT_H_
Packit 345191
Packit 345191
#if _MSC_VER > 1000
Packit 345191
#pragma once
Packit 345191
#endif
Packit 345191
Packit 345191
#include <limits.h>
Packit 345191
Packit 345191
// For Visual Studio 6 in C++ mode and for many Visual Studio versions when
Packit 345191
// compiling for ARM we should wrap <wchar.h> include with 'extern "C++" {}'
Packit 345191
// or compiler give many errors like this:
Packit 345191
//   error C2733: second C linkage of overloaded function 'wmemchr' not allowed
Packit 345191
#ifdef __cplusplus
Packit 345191
extern "C" {
Packit 345191
#endif
Packit 345191
#  include <wchar.h>
Packit 345191
#ifdef __cplusplus
Packit 345191
}
Packit 345191
#endif
Packit 345191
Packit 345191
// Define _W64 macros to mark types changing their size, like intptr_t.
Packit 345191
#ifndef _W64
Packit 345191
#  if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300
Packit 345191
#     define _W64 __w64
Packit 345191
#  else
Packit 345191
#     define _W64
Packit 345191
#  endif
Packit 345191
#endif
Packit 345191
Packit 345191
Packit 345191
// 7.18.1 Integer types
Packit 345191
Packit 345191
// 7.18.1.1 Exact-width integer types
Packit 345191
Packit 345191
// Visual Studio 6 and Embedded Visual C++ 4 doesn't
Packit 345191
// realize that, e.g. char has the same size as __int8
Packit 345191
// so we give up on __intX for them.
Packit 345191
#if (_MSC_VER < 1300)
Packit 345191
   typedef signed char       int8_t;
Packit 345191
   typedef signed short      int16_t;
Packit 345191
   typedef signed int        int32_t;
Packit 345191
   typedef unsigned char     uint8_t;
Packit 345191
   typedef unsigned short    uint16_t;
Packit 345191
   typedef unsigned int      uint32_t;
Packit 345191
#else
Packit 345191
   typedef signed __int8     int8_t;
Packit 345191
   typedef signed __int16    int16_t;
Packit 345191
   typedef signed __int32    int32_t;
Packit 345191
   typedef unsigned __int8   uint8_t;
Packit 345191
   typedef unsigned __int16  uint16_t;
Packit 345191
   typedef unsigned __int32  uint32_t;
Packit 345191
#endif
Packit 345191
typedef signed __int64       int64_t;
Packit 345191
typedef unsigned __int64     uint64_t;
Packit 345191
Packit 345191
Packit 345191
// 7.18.1.2 Minimum-width integer types
Packit 345191
typedef int8_t    int_least8_t;
Packit 345191
typedef int16_t   int_least16_t;
Packit 345191
typedef int32_t   int_least32_t;
Packit 345191
typedef int64_t   int_least64_t;
Packit 345191
typedef uint8_t   uint_least8_t;
Packit 345191
typedef uint16_t  uint_least16_t;
Packit 345191
typedef uint32_t  uint_least32_t;
Packit 345191
typedef uint64_t  uint_least64_t;
Packit 345191
Packit 345191
// 7.18.1.3 Fastest minimum-width integer types
Packit 345191
typedef int8_t    int_fast8_t;
Packit 345191
typedef int16_t   int_fast16_t;
Packit 345191
typedef int32_t   int_fast32_t;
Packit 345191
typedef int64_t   int_fast64_t;
Packit 345191
typedef uint8_t   uint_fast8_t;
Packit 345191
typedef uint16_t  uint_fast16_t;
Packit 345191
typedef uint32_t  uint_fast32_t;
Packit 345191
typedef uint64_t  uint_fast64_t;
Packit 345191
Packit 345191
// 7.18.1.4 Integer types capable of holding object pointers
Packit 345191
#ifdef _WIN64 // [
Packit 345191
   typedef signed __int64    intptr_t;
Packit 345191
   typedef unsigned __int64  uintptr_t;
Packit 345191
#else // _WIN64 ][
Packit 345191
   typedef _W64 signed int   intptr_t;
Packit 345191
   typedef _W64 unsigned int uintptr_t;
Packit 345191
#endif // _WIN64 ]
Packit 345191
Packit 345191
// 7.18.1.5 Greatest-width integer types
Packit 345191
typedef int64_t   intmax_t;
Packit 345191
typedef uint64_t  uintmax_t;
Packit 345191
Packit 345191
Packit 345191
// 7.18.2 Limits of specified-width integer types
Packit 345191
Packit 345191
#if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) // [   See footnote 220 at page 257 and footnote 221 at page 259
Packit 345191
Packit 345191
// 7.18.2.1 Limits of exact-width integer types
Packit 345191
#define INT8_MIN     ((int8_t)_I8_MIN)
Packit 345191
#define INT8_MAX     _I8_MAX
Packit 345191
#define INT16_MIN    ((int16_t)_I16_MIN)
Packit 345191
#define INT16_MAX    _I16_MAX
Packit 345191
#define INT32_MIN    ((int32_t)_I32_MIN)
Packit 345191
#define INT32_MAX    _I32_MAX
Packit 345191
#define INT64_MIN    ((int64_t)_I64_MIN)
Packit 345191
#define INT64_MAX    _I64_MAX
Packit 345191
#define UINT8_MAX    _UI8_MAX
Packit 345191
#define UINT16_MAX   _UI16_MAX
Packit 345191
#define UINT32_MAX   _UI32_MAX
Packit 345191
#define UINT64_MAX   _UI64_MAX
Packit 345191
Packit 345191
// 7.18.2.2 Limits of minimum-width integer types
Packit 345191
#define INT_LEAST8_MIN    INT8_MIN
Packit 345191
#define INT_LEAST8_MAX    INT8_MAX
Packit 345191
#define INT_LEAST16_MIN   INT16_MIN
Packit 345191
#define INT_LEAST16_MAX   INT16_MAX
Packit 345191
#define INT_LEAST32_MIN   INT32_MIN
Packit 345191
#define INT_LEAST32_MAX   INT32_MAX
Packit 345191
#define INT_LEAST64_MIN   INT64_MIN
Packit 345191
#define INT_LEAST64_MAX   INT64_MAX
Packit 345191
#define UINT_LEAST8_MAX   UINT8_MAX
Packit 345191
#define UINT_LEAST16_MAX  UINT16_MAX
Packit 345191
#define UINT_LEAST32_MAX  UINT32_MAX
Packit 345191
#define UINT_LEAST64_MAX  UINT64_MAX
Packit 345191
Packit 345191
// 7.18.2.3 Limits of fastest minimum-width integer types
Packit 345191
#define INT_FAST8_MIN    INT8_MIN
Packit 345191
#define INT_FAST8_MAX    INT8_MAX
Packit 345191
#define INT_FAST16_MIN   INT16_MIN
Packit 345191
#define INT_FAST16_MAX   INT16_MAX
Packit 345191
#define INT_FAST32_MIN   INT32_MIN
Packit 345191
#define INT_FAST32_MAX   INT32_MAX
Packit 345191
#define INT_FAST64_MIN   INT64_MIN
Packit 345191
#define INT_FAST64_MAX   INT64_MAX
Packit 345191
#define UINT_FAST8_MAX   UINT8_MAX
Packit 345191
#define UINT_FAST16_MAX  UINT16_MAX
Packit 345191
#define UINT_FAST32_MAX  UINT32_MAX
Packit 345191
#define UINT_FAST64_MAX  UINT64_MAX
Packit 345191
Packit 345191
// 7.18.2.4 Limits of integer types capable of holding object pointers
Packit 345191
#ifdef _WIN64 // [
Packit 345191
#  define INTPTR_MIN   INT64_MIN
Packit 345191
#  define INTPTR_MAX   INT64_MAX
Packit 345191
#  define UINTPTR_MAX  UINT64_MAX
Packit 345191
#else // _WIN64 ][
Packit 345191
#  define INTPTR_MIN   INT32_MIN
Packit 345191
#  define INTPTR_MAX   INT32_MAX
Packit 345191
#  define UINTPTR_MAX  UINT32_MAX
Packit 345191
#endif // _WIN64 ]
Packit 345191
Packit 345191
// 7.18.2.5 Limits of greatest-width integer types
Packit 345191
#define INTMAX_MIN   INT64_MIN
Packit 345191
#define INTMAX_MAX   INT64_MAX
Packit 345191
#define UINTMAX_MAX  UINT64_MAX
Packit 345191
Packit 345191
// 7.18.3 Limits of other integer types
Packit 345191
Packit 345191
#ifdef _WIN64 // [
Packit 345191
#  define PTRDIFF_MIN  _I64_MIN
Packit 345191
#  define PTRDIFF_MAX  _I64_MAX
Packit 345191
#else  // _WIN64 ][
Packit 345191
#  define PTRDIFF_MIN  _I32_MIN
Packit 345191
#  define PTRDIFF_MAX  _I32_MAX
Packit 345191
#endif  // _WIN64 ]
Packit 345191
Packit 345191
#define SIG_ATOMIC_MIN  INT_MIN
Packit 345191
#define SIG_ATOMIC_MAX  INT_MAX
Packit 345191
Packit 345191
#ifndef SIZE_MAX // [
Packit 345191
#  ifdef _WIN64 // [
Packit 345191
#     define SIZE_MAX  _UI64_MAX
Packit 345191
#  else // _WIN64 ][
Packit 345191
#     define SIZE_MAX  _UI32_MAX
Packit 345191
#  endif // _WIN64 ]
Packit 345191
#endif // SIZE_MAX ]
Packit 345191
Packit 345191
// WCHAR_MIN and WCHAR_MAX are also defined in <wchar.h>
Packit 345191
#ifndef WCHAR_MIN // [
Packit 345191
#  define WCHAR_MIN  0
Packit 345191
#endif  // WCHAR_MIN ]
Packit 345191
#ifndef WCHAR_MAX // [
Packit 345191
#  define WCHAR_MAX  _UI16_MAX
Packit 345191
#endif  // WCHAR_MAX ]
Packit 345191
Packit 345191
#define WINT_MIN  0
Packit 345191
#define WINT_MAX  _UI16_MAX
Packit 345191
Packit 345191
#endif // __STDC_LIMIT_MACROS ]
Packit 345191
Packit 345191
Packit 345191
// 7.18.4 Limits of other integer types
Packit 345191
Packit 345191
#if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) // [   See footnote 224 at page 260
Packit 345191
Packit 345191
// 7.18.4.1 Macros for minimum-width integer constants
Packit 345191
Packit 345191
#define INT8_C(val)  val##i8
Packit 345191
#define INT16_C(val) val##i16
Packit 345191
#define INT32_C(val) val##i32
Packit 345191
#define INT64_C(val) val##i64
Packit 345191
Packit 345191
#define UINT8_C(val)  val##ui8
Packit 345191
#define UINT16_C(val) val##ui16
Packit 345191
#define UINT32_C(val) val##ui32
Packit 345191
#define UINT64_C(val) val##ui64
Packit 345191
Packit 345191
// 7.18.4.2 Macros for greatest-width integer constants
Packit 345191
#define INTMAX_C   INT64_C
Packit 345191
#define UINTMAX_C  UINT64_C
Packit 345191
Packit 345191
#endif // __STDC_CONSTANT_MACROS ]
Packit 345191
Packit 345191
Packit 345191
#endif // _MSC_STDINT_H_ ]