hotspot/src/share/vm/utilities/globalDefinitions_visCPP.hpp
author kvn
Mon, 16 Mar 2009 15:06:33 -0700
changeset 2257 d8e6e11e7f32
parent 1 489c9b5090e2
child 2271 ff6d122287cb
permissions -rw-r--r--
6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003 Summary: Allow Hotspot builds with latest Windows SDK 6.1 on 64bit Windows 2003 Reviewed-by: ohair, tbell, jcoomes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// This file holds compiler-dependent includes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// globally used constants & types, class (forward)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// declarations and a few frequently used utility functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
# include <ctype.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
# include <string.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
# include <stdarg.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
# include <stdlib.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
# include <stddef.h>// for offsetof
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
# include <io.h>    // for stream.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
# include <float.h> // for _isnan
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
# include <stdio.h> // for va_list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
# include <time.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
# include <fcntl.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Need this on windows to get the math constants (e.g., M_PI).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#define _USE_MATH_DEFINES
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
# include <math.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// 4810578: varargs unsafe on 32-bit integer/64-bit pointer architectures
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// When __cplusplus is defined, NULL is defined as 0 (32-bit constant) in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// system header files.  On 32-bit architectures, there is no problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// On 64-bit architectures, defining NULL as a 32-bit constant can cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// problems with varargs functions: C++ integral promotion rules say for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// varargs, we pass the argument 0 as an int.  So, if NULL was passed to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// varargs function it will remain 32-bits.  Depending on the calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// convention of the machine, if the argument is passed on the stack then
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// only 32-bits of the "NULL" pointer may be initialized to zero.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// other 32-bits will be garbage.  If the varargs function is expecting a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// pointer when it extracts the argument, then we may have a problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// Solution: For 64-bit architectures, redefine NULL as 64-bit constant 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#undef NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// 64-bit Windows uses a P64 data model (not LP64, although we define _LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// Since longs are 32-bit we cannot use 0L here.  Use the Visual C++ specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// 64-bit integer-suffix (i64) instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#define NULL 0i64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#ifndef NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#define NULL 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// NULL vs NULL_WORD:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// On Linux NULL is defined as a special type '__null'. Assigning __null to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// integer variable will cause gcc warning. Use NULL_WORD in places where a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// pointer is stored as integer value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
#define NULL_WORD NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// Compiler-specific primitive types
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
typedef unsigned __int8  uint8_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
typedef unsigned __int16 uint16_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
typedef unsigned __int32 uint32_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
typedef unsigned __int64 uint64_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
typedef unsigned __int64 uintptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
typedef unsigned int uintptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
typedef signed   __int8  int8_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
typedef signed   __int16 int16_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
typedef signed   __int32 int32_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
typedef signed   __int64 int64_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
typedef signed   __int64 intptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
typedef signed   __int64 ssize_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
typedef signed   int intptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
typedef signed   int ssize_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// Additional Java basic types
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
typedef unsigned char    jubyte;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
typedef unsigned short   jushort;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
typedef unsigned int     juint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
typedef unsigned __int64 julong;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Special (possibly not-portable) casts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// Cast floats into same-size integers and vice-versa w/o changing bit-pattern
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
inline jint    jint_cast   (jfloat  x)           { return *(jint*   )&x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
inline jlong   jlong_cast  (jdouble x)           { return *(jlong*  )&x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
inline jfloat  jfloat_cast (jint    x)           { return *(jfloat* )&x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
inline jdouble jdouble_cast(jlong   x)           { return *(jdouble*)&x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// Non-standard stdlib-like stuff:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
inline int strcasecmp(const char *s1, const char *s2) { return _stricmp(s1,s2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
// Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
#if _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
extern "C" void breakpoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
#define BREAKPOINT ::breakpoint()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#define BREAKPOINT __asm { int 3 }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// Checking for nanness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
inline int g_isnan(jfloat  f)                    { return _isnan(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
inline int g_isnan(jdouble f)                    { return _isnan(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
// Checking for finiteness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
inline int g_isfinite(jfloat  f)                 { return _finite(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
inline int g_isfinite(jdouble f)                 { return _finite(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// Constant for jlong (specifying an long long constant is C++ compiler specific)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// Build a 64bit integer constant on with Visual C++
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
#define CONST64(x)  (x ## i64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
#define UCONST64(x) ((uint64_t)CONST64(x))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
const jlong min_jlong = CONST64(0x8000000000000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
const jlong max_jlong = CONST64(0x7fffffffffffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// Miscellaneous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
inline int vsnprintf(char* buf, size_t count, const char* fmt, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // If number of characters written == count, Windows doesn't write a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // terminating NULL, so we do it ourselves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  int ret = _vsnprintf(buf, count, fmt, argptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  if (count > 0) buf[count-1] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// 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
   165
#if _MSC_VER >= 1400
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
#define open _open
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
#define close _close
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
#define read  _read
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#define write _write
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
#define lseek _lseek
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
#define unlink _unlink
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
#define strdup _strdup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
#pragma warning( disable : 4100 ) // unreferenced formal parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
#pragma warning( disable : 4127 ) // conditional expression is constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
#pragma warning( disable : 4514 ) // unreferenced inline function has been removed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#pragma warning( disable : 4244 ) // possible loss of data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#pragma warning( disable : 4512 ) // assignment operator could not be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#pragma warning( disable : 4201 ) // nonstandard extension used : nameless struct/union (needed in windows.h)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#pragma warning( disable : 4511 ) // copy constructor could not be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#pragma warning( disable : 4291 ) // no matching operator delete found; memory will not be freed if initialization thows an exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// Portability macros
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
#define PRAGMA_INTERFACE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
#define PRAGMA_IMPLEMENTATION
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
#define PRAGMA_IMPLEMENTATION_(arg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
#define VALUE_OBJ_CLASS_SPEC    : public _ValueObj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
// Formatting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
#define FORMAT64_MODIFIER "I64"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#define offset_of(klass,field) offsetof(klass,field)