1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
* 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.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2016 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $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.
*/
#ifndef OPAL_STDINT_H
#define OPAL_STDINT_H 1
#include "opal_config.h"
/*
* Include what we can and define what is missing.
*/
#include <limits.h>
#include <stdint.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
/* 128-bit */
#ifdef HAVE_INT128_T
typedef int128_t opal_int128_t;
typedef uint128_t opal_uint128_t;
# define HAVE_OPAL_INT128_T 1
#elif defined(HAVE___INT128)
/* suppress warning about __int128 type */
# pragma GCC diagnostic push
/* Clang won't quietly accept "-pedantic", but GCC versions older than ~4.8
* won't quietly accept "-Wpedanic". The whole "#pragma GCC diagnostic ..."
* facility only was added to GCC as of version 4.6. */
# if defined(__clang__) || (defined(__GNUC__) && __GNUC__ >= 6)
# pragma GCC diagnostic ignored "-Wpedantic"
# else
# pragma GCC diagnostic ignored "-pedantic"
# endif
typedef __int128 opal_int128_t;
typedef unsigned __int128 opal_uint128_t;
# pragma GCC diagnostic pop
# define HAVE_OPAL_INT128_T 1
#else
# define HAVE_OPAL_INT128_T 0
#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 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
/* inttypes.h printf specifiers */
#include <inttypes.h>
#ifndef PRIsize_t
# if defined(ACCEPT_C99)
# define PRIsize_t "zu"
# elif SIZEOF_SIZE_T == SIZEOF_LONG
# define PRIsize_t "lu"
# elif SIZEOF_SIZE_T == SIZEOF_LONG_LONG
# define PRIsize_t "llu"
# else
# define PRIsize_t "u"
# endif
#endif
#endif /* OPAL_STDINT_H */
|