_aix64.cfg (3468B)
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 6 #ifndef nspr_cpucfg___ 7 #define nspr_cpucfg___ 8 9 #ifndef XP_UNIX 10 #define XP_UNIX 11 #endif 12 13 #ifndef AIX 14 #define AIX 15 #endif 16 17 #undef IS_LITTLE_ENDIAN 18 #define IS_BIG_ENDIAN 1 19 #define IS_64 20 21 #define PR_BYTES_PER_BYTE 1 22 #define PR_BYTES_PER_SHORT 2 23 #define PR_BYTES_PER_INT 4 24 #define PR_BYTES_PER_INT64 8 25 #define PR_BYTES_PER_LONG 8 26 #define PR_BYTES_PER_FLOAT 4 27 #define PR_BYTES_PER_DOUBLE 8 28 #define PR_BYTES_PER_WORD 8 29 #define PR_BYTES_PER_DWORD 8 30 31 #define PR_BYTES_PER_WORD_LOG2 3 32 #define PR_BYTES_PER_DWORD_LOG2 3 33 34 #define PR_BITS_PER_BYTE 8 35 #define PR_BITS_PER_SHORT 16 36 #define PR_BITS_PER_INT 32 37 #define PR_BITS_PER_INT64 64 38 #define PR_BITS_PER_LONG 64 39 #define PR_BITS_PER_FLOAT 32 40 #define PR_BITS_PER_DOUBLE 64 41 #define PR_BITS_PER_WORD 64 42 43 #define PR_BITS_PER_BYTE_LOG2 3 44 #define PR_BITS_PER_SHORT_LOG2 4 45 #define PR_BITS_PER_INT_LOG2 5 46 #define PR_BITS_PER_INT64_LOG2 6 47 #define PR_BITS_PER_LONG_LOG2 6 48 #define PR_BITS_PER_FLOAT_LOG2 5 49 #define PR_BITS_PER_DOUBLE_LOG2 6 50 #define PR_BITS_PER_WORD_LOG2 6 51 52 #define PR_ALIGN_OF_SHORT 2 53 #define PR_ALIGN_OF_INT 4 54 #define PR_ALIGN_OF_LONG 8 55 #define PR_ALIGN_OF_INT64 8 56 #define PR_ALIGN_OF_FLOAT 4 57 #define PR_ALIGN_OF_DOUBLE 4 58 #define PR_ALIGN_OF_POINTER 8 59 60 #ifndef HAVE_LONG_LONG 61 #define HAVE_LONG_LONG 62 #endif 63 #undef HAVE_ALIGNED_DOUBLES 64 #undef HAVE_ALIGNED_LONGLONGS 65 66 #define PR_AF_INET6 24 /* same as AF_INET6 */ 67 68 #ifndef NO_NSPR_10_SUPPORT 69 70 #define BYTES_PER_BYTE PR_BYTES_PER_BYTE 71 #define BYTES_PER_SHORT PR_BYTES_PER_SHORT 72 #define BYTES_PER_INT PR_BYTES_PER_INT 73 #define BYTES_PER_INT64 PR_BYTES_PER_INT64 74 #define BYTES_PER_LONG PR_BYTES_PER_LONG 75 #define BYTES_PER_FLOAT PR_BYTES_PER_FLOAT 76 #define BYTES_PER_DOUBLE PR_BYTES_PER_DOUBLE 77 #define BYTES_PER_WORD PR_BYTES_PER_WORD 78 #define BYTES_PER_DWORD PR_BYTES_PER_DWORD 79 80 #define BITS_PER_BYTE PR_BITS_PER_BYTE 81 #define BITS_PER_SHORT PR_BITS_PER_SHORT 82 #define BITS_PER_INT PR_BITS_PER_INT 83 #define BITS_PER_INT64 PR_BITS_PER_INT64 84 #define BITS_PER_LONG PR_BITS_PER_LONG 85 #define BITS_PER_FLOAT PR_BITS_PER_FLOAT 86 #define BITS_PER_DOUBLE PR_BITS_PER_DOUBLE 87 #define BITS_PER_WORD PR_BITS_PER_WORD 88 89 #define BITS_PER_BYTE_LOG2 PR_BITS_PER_BYTE_LOG2 90 #define BITS_PER_SHORT_LOG2 PR_BITS_PER_SHORT_LOG2 91 #define BITS_PER_INT_LOG2 PR_BITS_PER_INT_LOG2 92 #define BITS_PER_INT64_LOG2 PR_BITS_PER_INT64_LOG2 93 #define BITS_PER_LONG_LOG2 PR_BITS_PER_LONG_LOG2 94 #define BITS_PER_FLOAT_LOG2 PR_BITS_PER_FLOAT_LOG2 95 #define BITS_PER_DOUBLE_LOG2 PR_BITS_PER_DOUBLE_LOG2 96 #define BITS_PER_WORD_LOG2 PR_BITS_PER_WORD_LOG2 97 98 #define ALIGN_OF_SHORT PR_ALIGN_OF_SHORT 99 #define ALIGN_OF_INT PR_ALIGN_OF_INT 100 #define ALIGN_OF_LONG PR_ALIGN_OF_LONG 101 #define ALIGN_OF_INT64 PR_ALIGN_OF_INT64 102 #define ALIGN_OF_FLOAT PR_ALIGN_OF_FLOAT 103 #define ALIGN_OF_DOUBLE PR_ALIGN_OF_DOUBLE 104 #define ALIGN_OF_POINTER PR_ALIGN_OF_POINTER 105 #define ALIGN_OF_WORD PR_ALIGN_OF_WORD 106 107 #define BYTES_PER_WORD_LOG2 PR_BYTES_PER_WORD_LOG2 108 #define BYTES_PER_DWORD_LOG2 PR_BYTES_PER_DWORD_LOG2 109 #define WORDS_PER_DWORD_LOG2 PR_WORDS_PER_DWORD_LOG2 110 111 /* used by protypes.h only */ 112 #define _PR_AIX_HAVE_BSD_INT_TYPES 113 114 #endif /* NO_NSPR_10_SUPPORT */ 115 116 #endif /* nspr_cpucfg___ */