author | redestad |
Sun, 11 Dec 2016 12:20:45 +0100 | |
changeset 42469 | d1c0a9123f87 |
parent 42061 | 67176803a846 |
child 46560 | 388aa8d67c80 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
37092
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_UTILITIES_GLOBALDEFINITIONS_VISCPP_HPP |
26 |
#define SHARE_VM_UTILITIES_GLOBALDEFINITIONS_VISCPP_HPP |
|
27 |
||
28 |
#include "prims/jni.h" |
|
29 |
||
1 | 30 |
// This file holds compiler-dependent includes, |
31 |
// globally used constants & types, class (forward) |
|
32 |
// declarations and a few frequently used utility functions. |
|
33 |
||
34 |
# include <ctype.h> |
|
35 |
# include <string.h> |
|
36 |
# include <stdarg.h> |
|
37 |
# include <stdlib.h> |
|
38 |
# include <stddef.h>// for offsetof |
|
39 |
# include <io.h> // for stream.cpp |
|
40 |
# include <float.h> // for _isnan |
|
41 |
# include <stdio.h> // for va_list |
|
42 |
# include <time.h> |
|
43 |
# include <fcntl.h> |
|
8481
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
44 |
# include <limits.h> |
1 | 45 |
// Need this on windows to get the math constants (e.g., M_PI). |
46 |
#define _USE_MATH_DEFINES |
|
47 |
# include <math.h> |
|
48 |
||
49 |
// 4810578: varargs unsafe on 32-bit integer/64-bit pointer architectures |
|
50 |
// When __cplusplus is defined, NULL is defined as 0 (32-bit constant) in |
|
51 |
// system header files. On 32-bit architectures, there is no problem. |
|
52 |
// On 64-bit architectures, defining NULL as a 32-bit constant can cause |
|
53 |
// problems with varargs functions: C++ integral promotion rules say for |
|
54 |
// varargs, we pass the argument 0 as an int. So, if NULL was passed to a |
|
55 |
// varargs function it will remain 32-bits. Depending on the calling |
|
56 |
// convention of the machine, if the argument is passed on the stack then |
|
57 |
// only 32-bits of the "NULL" pointer may be initialized to zero. The |
|
58 |
// other 32-bits will be garbage. If the varargs function is expecting a |
|
59 |
// pointer when it extracts the argument, then we may have a problem. |
|
60 |
// |
|
61 |
// Solution: For 64-bit architectures, redefine NULL as 64-bit constant 0. |
|
62 |
#ifdef _LP64 |
|
63 |
#undef NULL |
|
64 |
// 64-bit Windows uses a P64 data model (not LP64, although we define _LP64) |
|
65 |
// Since longs are 32-bit we cannot use 0L here. Use the Visual C++ specific |
|
42061
67176803a846
8168490: Use the LL/ULL suffixes to define 64-bit integer literals on Windows
simonis
parents:
37092
diff
changeset
|
66 |
// 64-bit integer-suffix (LL) instead. |
67176803a846
8168490: Use the LL/ULL suffixes to define 64-bit integer literals on Windows
simonis
parents:
37092
diff
changeset
|
67 |
#define NULL 0LL |
1 | 68 |
#else |
69 |
#ifndef NULL |
|
70 |
#define NULL 0 |
|
71 |
#endif |
|
72 |
#endif |
|
73 |
||
74 |
// NULL vs NULL_WORD: |
|
75 |
// On Linux NULL is defined as a special type '__null'. Assigning __null to |
|
76 |
// integer variable will cause gcc warning. Use NULL_WORD in places where a |
|
77 |
// pointer is stored as integer value. |
|
78 |
#define NULL_WORD NULL |
|
79 |
||
80 |
// Compiler-specific primitive types |
|
81 |
typedef unsigned __int8 uint8_t; |
|
82 |
typedef unsigned __int16 uint16_t; |
|
83 |
typedef unsigned __int32 uint32_t; |
|
84 |
typedef unsigned __int64 uint64_t; |
|
85 |
||
86 |
#ifdef _WIN64 |
|
87 |
typedef unsigned __int64 uintptr_t; |
|
88 |
#else |
|
89 |
typedef unsigned int uintptr_t; |
|
90 |
#endif |
|
91 |
typedef signed __int8 int8_t; |
|
92 |
typedef signed __int16 int16_t; |
|
93 |
typedef signed __int32 int32_t; |
|
94 |
typedef signed __int64 int64_t; |
|
95 |
#ifdef _WIN64 |
|
96 |
typedef signed __int64 intptr_t; |
|
97 |
typedef signed __int64 ssize_t; |
|
98 |
#else |
|
99 |
typedef signed int intptr_t; |
|
100 |
typedef signed int ssize_t; |
|
101 |
#endif |
|
102 |
||
8481
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
103 |
#ifndef UINTPTR_MAX |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
104 |
#ifdef _WIN64 |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
105 |
#define UINTPTR_MAX _UI64_MAX |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
106 |
#else |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
107 |
#define UINTPTR_MAX _UI32_MAX |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
108 |
#endif |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
109 |
#endif |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
7397
diff
changeset
|
110 |
|
1 | 111 |
//---------------------------------------------------------------------------------------------------- |
112 |
// Additional Java basic types |
|
113 |
||
114 |
typedef unsigned char jubyte; |
|
115 |
typedef unsigned short jushort; |
|
116 |
typedef unsigned int juint; |
|
117 |
typedef unsigned __int64 julong; |
|
118 |
||
119 |
||
120 |
//---------------------------------------------------------------------------------------------------- |
|
121 |
// Non-standard stdlib-like stuff: |
|
122 |
inline int strcasecmp(const char *s1, const char *s2) { return _stricmp(s1,s2); } |
|
11596
3b9802e6c6a2
7131346: Parsing of boolean arguments to diagnostic commands is broken
fparain
parents:
10565
diff
changeset
|
123 |
inline int strncasecmp(const char *s1, const char *s2, size_t n) { |
3b9802e6c6a2
7131346: Parsing of boolean arguments to diagnostic commands is broken
fparain
parents:
10565
diff
changeset
|
124 |
return _strnicmp(s1,s2,n); |
3b9802e6c6a2
7131346: Parsing of boolean arguments to diagnostic commands is broken
fparain
parents:
10565
diff
changeset
|
125 |
} |
1 | 126 |
|
127 |
||
128 |
//---------------------------------------------------------------------------------------------------- |
|
129 |
// Debugging |
|
130 |
||
131 |
#if _WIN64 |
|
132 |
extern "C" void breakpoint(); |
|
133 |
#define BREAKPOINT ::breakpoint() |
|
134 |
#else |
|
135 |
#define BREAKPOINT __asm { int 3 } |
|
136 |
#endif |
|
137 |
||
138 |
//---------------------------------------------------------------------------------------------------- |
|
139 |
// Checking for nanness |
|
140 |
||
141 |
inline int g_isnan(jfloat f) { return _isnan(f); } |
|
142 |
inline int g_isnan(jdouble f) { return _isnan(f); } |
|
143 |
||
144 |
//---------------------------------------------------------------------------------------------------- |
|
145 |
// Checking for finiteness |
|
146 |
||
147 |
inline int g_isfinite(jfloat f) { return _finite(f); } |
|
148 |
inline int g_isfinite(jdouble f) { return _finite(f); } |
|
149 |
||
150 |
//---------------------------------------------------------------------------------------------------- |
|
151 |
// Miscellaneous |
|
152 |
||
153 |
// Visual Studio 2005 deprecates POSIX names - use ISO C++ names instead |
|
2257
d8e6e11e7f32
6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
kvn
parents:
1
diff
changeset
|
154 |
#if _MSC_VER >= 1400 |
1 | 155 |
#define open _open |
156 |
#define close _close |
|
157 |
#define read _read |
|
158 |
#define write _write |
|
159 |
#define lseek _lseek |
|
160 |
#define unlink _unlink |
|
161 |
#define strdup _strdup |
|
162 |
#endif |
|
163 |
||
33759
8a0e9139a9c5
8141134: Remove unnecessary pragma warning(disable:4355) from GC code
tschatzl
parents:
33137
diff
changeset
|
164 |
#if _MSC_VER < 1800 |
33137
81433d2db1c9
8137329: [windows] Build broken on VS2010 after "8046148: JEP 158: Unified JVM Logging"
stuefe
parents:
32393
diff
changeset
|
165 |
// Visual Studio 2013 introduced strtoull(); before, one has to use _strtoui64() instead. |
81433d2db1c9
8137329: [windows] Build broken on VS2010 after "8046148: JEP 158: Unified JVM Logging"
stuefe
parents:
32393
diff
changeset
|
166 |
#define strtoull _strtoui64 |
36183
15d5045f46c2
8150079: MSVC prior to VS 2013 doesn't know the 'va_copy' macro
simonis
parents:
34633
diff
changeset
|
167 |
// Visual Studio prior to 2013 had no va_copy, but could safely copy va_list by assignement |
15d5045f46c2
8150079: MSVC prior to VS 2013 doesn't know the 'va_copy' macro
simonis
parents:
34633
diff
changeset
|
168 |
#define va_copy(dest, src) dest = src |
33759
8a0e9139a9c5
8141134: Remove unnecessary pragma warning(disable:4355) from GC code
tschatzl
parents:
33137
diff
changeset
|
169 |
// Fixes some wrong warnings about 'this' : used in base member initializer list |
8a0e9139a9c5
8141134: Remove unnecessary pragma warning(disable:4355) from GC code
tschatzl
parents:
33137
diff
changeset
|
170 |
#pragma warning( disable : 4355 ) |
33137
81433d2db1c9
8137329: [windows] Build broken on VS2010 after "8046148: JEP 158: Unified JVM Logging"
stuefe
parents:
32393
diff
changeset
|
171 |
#endif |
81433d2db1c9
8137329: [windows] Build broken on VS2010 after "8046148: JEP 158: Unified JVM Logging"
stuefe
parents:
32393
diff
changeset
|
172 |
|
81433d2db1c9
8137329: [windows] Build broken on VS2010 after "8046148: JEP 158: Unified JVM Logging"
stuefe
parents:
32393
diff
changeset
|
173 |
|
1 | 174 |
#pragma warning( disable : 4100 ) // unreferenced formal parameter |
175 |
#pragma warning( disable : 4127 ) // conditional expression is constant |
|
176 |
#pragma warning( disable : 4514 ) // unreferenced inline function has been removed |
|
177 |
#pragma warning( disable : 4244 ) // possible loss of data |
|
178 |
#pragma warning( disable : 4512 ) // assignment operator could not be generated |
|
179 |
#pragma warning( disable : 4201 ) // nonstandard extension used : nameless struct/union (needed in windows.h) |
|
180 |
#pragma warning( disable : 4511 ) // copy constructor could not be generated |
|
181 |
#pragma warning( disable : 4291 ) // no matching operator delete found; memory will not be freed if initialization thows an exception |
|
20282
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
13963
diff
changeset
|
182 |
#ifdef CHECK_UNHANDLED_OOPS |
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
13963
diff
changeset
|
183 |
#pragma warning( disable : 4521 ) // class has multiple copy ctors of a single type |
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
13963
diff
changeset
|
184 |
#pragma warning( disable : 4522 ) // class has multiple assignment operators of a single type |
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
13963
diff
changeset
|
185 |
#endif // CHECK_UNHANDLED_OOPS |
2271
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
186 |
#if _MSC_VER >= 1400 |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
187 |
#pragma warning( disable : 4996 ) // unsafe string functions. Same as define _CRT_SECURE_NO_WARNINGS/_CRT_SECURE_NO_DEPRICATE |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
188 |
#endif |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
189 |
|
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
190 |
inline int vsnprintf(char* buf, size_t count, const char* fmt, va_list argptr) { |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
191 |
// If number of characters written == count, Windows doesn't write a |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
192 |
// terminating NULL, so we do it ourselves. |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
193 |
int ret = _vsnprintf(buf, count, fmt, argptr); |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
194 |
if (count > 0) buf[count-1] = '\0'; |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
195 |
return ret; |
ff6d122287cb
6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents:
2257
diff
changeset
|
196 |
} |
1 | 197 |
|
198 |
// Portability macros |
|
199 |
#define PRAGMA_INTERFACE |
|
200 |
#define PRAGMA_IMPLEMENTATION |
|
201 |
#define PRAGMA_IMPLEMENTATION_(arg) |
|
202 |
#define VALUE_OBJ_CLASS_SPEC : public _ValueObj |
|
203 |
||
204 |
// Formatting. |
|
205 |
#define FORMAT64_MODIFIER "I64" |
|
206 |
||
10565 | 207 |
// Visual Studio doesn't provide inttypes.h so provide appropriate definitions here. |
208 |
// The 32 bits ones might need I32 but seem to work ok without it. |
|
209 |
#define PRId32 "d" |
|
210 |
#define PRIu32 "u" |
|
211 |
#define PRIx32 "x" |
|
212 |
||
213 |
#define PRId64 "I64d" |
|
214 |
#define PRIu64 "I64u" |
|
215 |
#define PRIx64 "I64x" |
|
216 |
||
12941
a4a325a315c1
7172708: 32/64 bit type issues on Windows after Mac OS X port
dholmes
parents:
11596
diff
changeset
|
217 |
#ifdef _LP64 |
a4a325a315c1
7172708: 32/64 bit type issues on Windows after Mac OS X port
dholmes
parents:
11596
diff
changeset
|
218 |
#define PRIdPTR "I64d" |
a4a325a315c1
7172708: 32/64 bit type issues on Windows after Mac OS X port
dholmes
parents:
11596
diff
changeset
|
219 |
#define PRIuPTR "I64u" |
a4a325a315c1
7172708: 32/64 bit type issues on Windows after Mac OS X port
dholmes
parents:
11596
diff
changeset
|
220 |
#define PRIxPTR "I64x" |
a4a325a315c1
7172708: 32/64 bit type issues on Windows after Mac OS X port
dholmes
parents:
11596
diff
changeset
|
221 |
#else |
10565 | 222 |
#define PRIdPTR "d" |
223 |
#define PRIuPTR "u" |
|
224 |
#define PRIxPTR "x" |
|
12941
a4a325a315c1
7172708: 32/64 bit type issues on Windows after Mac OS X port
dholmes
parents:
11596
diff
changeset
|
225 |
#endif |
10565 | 226 |
|
1 | 227 |
#define offset_of(klass,field) offsetof(klass,field) |
7397 | 228 |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
33759
diff
changeset
|
229 |
#ifndef USE_LIBRARY_BASED_TLS_ONLY |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
33759
diff
changeset
|
230 |
#define THREAD_LOCAL_DECL __declspec( thread ) |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
33759
diff
changeset
|
231 |
#endif |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
33759
diff
changeset
|
232 |
|
37092
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
233 |
// Inlining support |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
234 |
// MSVC has '__declspec(noinline)' but according to the official documentation |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
235 |
// it only applies to member functions. There are reports though which pretend |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
236 |
// that it also works for freestanding functions. |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
237 |
#define NOINLINE __declspec(noinline) |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
238 |
#define ALWAYSINLINE __forceinline |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
36183
diff
changeset
|
239 |
|
7397 | 240 |
#endif // SHARE_VM_UTILITIES_GLOBALDEFINITIONS_VISCPP_HPP |