webkit  2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
integers.h
Go to the documentation of this file.
1 /*
2  * integers.h
3  *
4  * defines integer types (or refers to their definitions)
5  *
6  * David A. McGrew
7  * Cisco Systems, Inc.
8  */
9 
10 /*
11  *
12  * Copyright (c) 2001-2006, Cisco Systems, Inc.
13  * All rights reserved.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions
17  * are met:
18  *
19  * Redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer.
21  *
22  * Redistributions in binary form must reproduce the above
23  * copyright notice, this list of conditions and the following
24  * disclaimer in the documentation and/or other materials provided
25  * with the distribution.
26  *
27  * Neither the name of the Cisco Systems, Inc. nor the names of its
28  * contributors may be used to endorse or promote products derived
29  * from this software without specific prior written permission.
30  *
31  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
34  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
35  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
36  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
37  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
38  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
42  * OF THE POSSIBILITY OF SUCH DAMAGE.
43  *
44  */
45 
46 
47 #ifndef INTEGERS_H
48 #define INTEGERS_H
49 
50 
51 /* use standard integer definitions, if they're available */
52 #ifdef HAVE_STDLIB_H
53 # include <stdlib.h>
54 #endif
55 #ifdef HAVE_STDINT_H
56 # include <stdint.h>
57 #endif
58 #ifdef HAVE_INTTYPES_H
59 # include <inttypes.h>
60 #endif
61 #ifdef HAVE_SYS_TYPES_H
62 # include <sys/types.h>
63 #endif
64 #ifdef HAVE_SYS_INT_TYPES_H
65 # include <sys/int_types.h> /* this exists on Sun OS */
66 #endif
67 #ifdef HAVE_MACHINE_TYPES_H
68 # include <machine/types.h>
69 #endif
70 
71 #ifdef __cplusplus
72 extern "C" {
73 #endif
74 
75 /* Can we do 64 bit integers? */
76 #if !defined(HAVE_UINT64_T)
77 # if SIZEOF_UNSIGNED_LONG == 8
78 typedef unsigned long uint64_t;
79 # elif SIZEOF_UNSIGNED_LONG_LONG == 8
80 typedef unsigned long long uint64_t;
81 # else
82 # define NO_64BIT_MATH 1
83 # endif
84 #endif
85 
86 /* Reasonable defaults for 32 bit machines - you may need to
87  * edit these definitions for your own machine. */
88 #ifndef HAVE_UINT8_T
89 typedef unsigned char uint8_t;
90 #endif
91 #ifndef HAVE_UINT16_T
92 typedef unsigned short int uint16_t;
93 #endif
94 #ifndef HAVE_UINT32_T
95 typedef unsigned int uint32_t;
96 #endif
97 
98 
99 #if defined(NO_64BIT_MATH) && defined(HAVE_CONFIG_H)
100 typedef double uint64_t;
101 /* assert that sizeof(double) == 8 */
102 extern uint64_t make64(uint32_t high, uint32_t low);
103 extern uint32_t high32(uint64_t value);
104 extern uint32_t low32(uint64_t value);
105 #endif
106 
107 
108 /* These macros are to load and store 32-bit values from un-aligned
109  addresses. This is required for processors that do not allow unaligned
110  loads. */
111 #ifdef ALIGNMENT_32BIT_REQUIRED
112 /* Note that if it's in a variable, you can memcpy it */
113 #ifdef WORDS_BIGENDIAN
114 #define PUT_32(addr,value) \
115  { \
116  ((unsigned char *) (addr))[0] = (value >> 24); \
117  ((unsigned char *) (addr))[1] = (value >> 16) & 0xff; \
118  ((unsigned char *) (addr))[2] = (value >> 8) & 0xff; \
119  ((unsigned char *) (addr))[3] = (value) & 0xff; \
120  }
121 #define GET_32(addr) ((((unsigned char *) (addr))[0] << 24) | \
122  (((unsigned char *) (addr))[1] << 16) | \
123  (((unsigned char *) (addr))[2] << 8) | \
124  (((unsigned char *) (addr))[3]))
125 #else
126 #define PUT_32(addr,value) \
127  { \
128  ((unsigned char *) (addr))[3] = (value >> 24); \
129  ((unsigned char *) (addr))[2] = (value >> 16) & 0xff; \
130  ((unsigned char *) (addr))[1] = (value >> 8) & 0xff; \
131  ((unsigned char *) (addr))[0] = (value) & 0xff; \
132  }
133 #define GET_32(addr) ((((unsigned char *) (addr))[3] << 24) | \
134  (((unsigned char *) (addr))[2] << 16) | \
135  (((unsigned char *) (addr))[1] << 8) | \
136  (((unsigned char *) (addr))[0]))
137 #endif // WORDS_BIGENDIAN
138 #else
139 #define PUT_32(addr,value) *(((uint32_t *) (addr)) = (value)
140 #define GET_32(addr) (*(((uint32_t *) (addr)))
141 #endif
142 
143 #ifdef __cplusplus
144 }
145 #endif
146 
147 #endif /* INTEGERS_H */
Definition: TestObj.idl:46
Definition: TestObj.idl:46
std::integral_constant< std::uint64_t, V > uint64_t
Definition: Brigand.h:445
unsigned char uint8_t
Definition: integers.h:89
EGLAttrib * value
Definition: eglext.h:120
unsigned int uint32_t
Definition: integers.h:95
unsigned short int uint16_t
Definition: integers.h:92