2004-01-10 01:09:51 +03:00
|
|
|
/*
|
2007-03-29 05:00:33 +04:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-10 01:09:51 +03:00
|
|
|
* $HEADER$
|
|
|
|
*
|
|
|
|
* This file includes the C99 stdint.h file if available, and otherwise
|
|
|
|
* defines fixed-width types according to the SIZEOF information
|
|
|
|
* gathered by configure.
|
|
|
|
*/
|
|
|
|
|
2007-03-29 05:00:33 +04:00
|
|
|
#ifndef OPAL_STDINT_H
|
|
|
|
#define OPAL_STDINT_H 1
|
2004-01-10 01:09:51 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Include what we can and define what is missing.
|
|
|
|
*/
|
2005-12-01 21:28:20 +03:00
|
|
|
#include <limits.h>
|
2004-01-10 01:09:51 +03:00
|
|
|
|
2004-08-16 03:54:30 +04:00
|
|
|
#ifdef HAVE_INTTYPES_H
|
2004-01-10 01:09:51 +03:00
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
|
|
|
|
2004-08-16 03:54:30 +04:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2004-01-10 01:09:51 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 8-bit */
|
|
|
|
|
|
|
|
#if SIZEOF_CHAR == 1
|
|
|
|
|
|
|
|
#ifndef HAVE_INT8_T
|
|
|
|
typedef signed char int8_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT8_T
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#error Failed to define 8-bit types
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 16-bit */
|
|
|
|
|
|
|
|
#if SIZEOF_SHORT == 2
|
|
|
|
|
|
|
|
#ifndef HAVE_INT16_T
|
|
|
|
typedef signed short int16_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT16_T
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#error Failed to define 16-bit types
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 32-bit */
|
|
|
|
|
|
|
|
#if SIZEOF_INT == 4
|
|
|
|
|
|
|
|
#ifndef HAVE_INT32_T
|
|
|
|
typedef signed int int32_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT32_T
|
|
|
|
typedef unsigned int uint32_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif SIZEOF_LONG == 4
|
|
|
|
|
|
|
|
#ifndef HAVE_INT32_T
|
|
|
|
typedef signed long int32_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT32_T
|
|
|
|
typedef unsigned long uint32_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#error Failed to define 32-bit types
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 64-bit */
|
|
|
|
|
|
|
|
#if SIZEOF_INT == 8
|
|
|
|
|
|
|
|
#ifndef HAVE_INT64_T
|
|
|
|
typedef signed int int64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT64_T
|
|
|
|
typedef unsigned int uint64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif SIZEOF_LONG == 8
|
|
|
|
|
|
|
|
#ifndef HAVE_INT64_T
|
|
|
|
typedef signed long int64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT64_T
|
|
|
|
typedef unsigned long uint64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif HAVE_LONG_LONG && SIZEOF_LONG_LONG == 8
|
|
|
|
|
|
|
|
#ifndef HAVE_INT64_T
|
|
|
|
typedef signed long long int64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT64_T
|
|
|
|
typedef unsigned long long uint64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#error Failed to define 64-bit types
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Pointers */
|
|
|
|
|
|
|
|
#if SIZEOF_VOID_P == SIZEOF_INT
|
|
|
|
|
|
|
|
#ifndef HAVE_INTPTR_T
|
|
|
|
typedef signed int intptr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINTPTR_T
|
|
|
|
typedef unsigned int uintptr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif SIZEOF_VOID_P == SIZEOF_LONG
|
|
|
|
|
|
|
|
#ifndef HAVE_INTPTR_T
|
|
|
|
typedef signed long intptr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINTPTR_T
|
|
|
|
typedef unsigned long uintptr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif HAVE_LONG_LONG && SIZEOF_VOID_P == SIZEOF_LONG_LONG
|
|
|
|
|
|
|
|
#ifndef HAVE_INTPTR_T
|
|
|
|
typedef signed long long intptr_t;
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_UINTPTR_T
|
|
|
|
typedef unsigned long long uintptr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#error Failed to define pointer-sized integer types
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-12-01 21:28:20 +03:00
|
|
|
/* fix up some constants that may be missing */
|
|
|
|
#ifndef SIZE_MAX
|
|
|
|
#if SIZEOF_VOID_P == SIZEOF_INT
|
|
|
|
#define SIZE_MAX UINT_MAX
|
|
|
|
#elif SIZEOF_VOID_P == SIZEOF_LONG
|
|
|
|
#define SIZE_MAX ULONG_MAX
|
|
|
|
#else
|
|
|
|
#error Failed to find value for SIZE_MAX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ifndef SIZE_MAX */
|
|
|
|
|
2007-03-29 05:00:33 +04:00
|
|
|
#endif /* OPAL_STDINT_H */
|
2004-01-10 01:09:51 +03:00
|
|
|
|