src/hotspot/share/utilities/globalDefinitions_gcc.hpp
author coleenp
Wed, 14 Mar 2018 07:27:19 -0400
changeset 49392 2956d0ece7a9
parent 47659 a8e9aff89f7b
child 50120 9da00197ff72
permissions -rw-r--r--
8199282: Remove ValueObj class for allocation subclassing for gc code Reviewed-by: stefank, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49392
2956d0ece7a9 8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents: 47659
diff changeset
     2
 * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
1
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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
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: 2105
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    25
#ifndef SHARE_VM_UTILITIES_GLOBALDEFINITIONS_GCC_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    26
#define SHARE_VM_UTILITIES_GLOBALDEFINITIONS_GCC_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    27
47659
a8e9aff89f7b 8189608: Remove duplicated jni.h
ihse
parents: 47216
diff changeset
    28
#include "jni.h"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// This file holds compiler-dependent includes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// globally used constants & types, class (forward)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// declarations and a few frequently used utility functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#include <ctype.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#include <string.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#include <stdarg.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#include <stddef.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#include <stdio.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#include <stdlib.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#include <wchar.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#include <ieeefp.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#endif // SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#include <math.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#include <time.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#include <fcntl.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
#include <dlfcn.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#include <pthread.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#include <thread.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
#endif // SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#include <limits.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#include <errno.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#include <sys/trap.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#include <sys/regset.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#include <sys/procset.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#include <ucontext.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#include <setjmp.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#endif // SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
# ifdef SOLARIS_MUTATOR_LIBTHREAD
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
# include <sys/procfs.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
# endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    71
#if defined(LINUX) || defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
#include <inttypes.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#include <signal.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    74
#ifndef __OpenBSD__
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#include <ucontext.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    76
#endif
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    77
#ifdef __APPLE__
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    78
  #include <AvailabilityMacros.h>
11881
9642744ae9a5 7132070: Use a mach_port_t as the OSThread thread_id rather than pthread_t on BSD/OSX
sla
parents: 10565
diff changeset
    79
  #include <mach/mach.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    80
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
#include <sys/time.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    82
#endif // LINUX || _ALLBSD_SOURCE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// 4810578: varargs unsafe on 32-bit integer/64-bit pointer architectures
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
// When __cplusplus is defined, NULL is defined as 0 (32-bit constant) in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// system header files.  On 32-bit architectures, there is no problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// On 64-bit architectures, defining NULL as a 32-bit constant can cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// problems with varargs functions: C++ integral promotion rules say for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// varargs, we pass the argument 0 as an int.  So, if NULL was passed to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// varargs function it will remain 32-bits.  Depending on the calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// convention of the machine, if the argument is passed on the stack then
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// only 32-bits of the "NULL" pointer may be initialized to zero.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// other 32-bits will be garbage.  If the varargs function is expecting a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// pointer when it extracts the argument, then we have a problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// Solution: For 64-bit architectures, redefine NULL as 64-bit constant 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// Note: this fix doesn't work well on Linux because NULL will be overwritten
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// whenever a system header file is included. Linux handles NULL correctly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// through a special type '__null'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  #ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    #undef NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    #define NULL 0L
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    #ifndef NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      #define NULL 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// NULL vs NULL_WORD:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// On Linux NULL is defined as a special type '__null'. Assigning __null to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// integer variable will cause gcc warning. Use NULL_WORD in places where a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// pointer is stored as integer value.  On some platforms, sizeof(intptr_t) >
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// sizeof(void*), so here we want something which is integer type, but has the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// same size as a pointer.
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   118
#ifdef __GNUC__
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  #ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    #define NULL_WORD  0L
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  #else
1888
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1
diff changeset
   122
    // Cast 0 to intptr_t rather than int32_t since they are not the same type
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1
diff changeset
   123
    // on platforms such as Mac OS X.
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1
diff changeset
   124
    #define NULL_WORD  ((intptr_t)0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  #define NULL_WORD  NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   130
#if !defined(LINUX) && !defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// Compiler-specific primitive types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
typedef unsigned short     uint16_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
#ifndef _UINT32_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
#define _UINT32_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
typedef unsigned int       uint32_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
#endif // _UINT32_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
#if !defined(_SYS_INT_TYPES_H)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
#ifndef _UINT64_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#define _UINT64_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
typedef unsigned long long uint64_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#endif // _UINT64_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// %%%% how to access definition of intptr_t portably in 5.5 onward?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
typedef int                     intptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
typedef unsigned int            uintptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// If this gets an error, figure out a symbol XXX that implies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// prior definition of intptr_t, and add "&& !defined(XXX)" above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
#endif // _SYS_INT_TYPES_H
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   150
#endif // !LINUX && !_ALLBSD_SOURCE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
// Additional Java basic types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
typedef uint8_t  jubyte;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
typedef uint16_t jushort;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
typedef uint32_t juint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
typedef uint64_t julong;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// ANSI C++ fixes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// NOTE:In the ANSI committee's continuing attempt to make each version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// of C++ incompatible with the previous version, you can no longer cast
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// pointers to functions without specifying linkage unless you want to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// warnings.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// This also means that pointers to functions can no longer be "hidden"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// in opaque types like void * because at the invokation point warnings
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// will be generated. While this makes perfect sense from a type safety
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// point of view it causes a lot of warnings on old code using C header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// files. Here are some typedefs to make the job of silencing warnings
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
// a bit easier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
// The final kick in the teeth is that you can only have extern "C" linkage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// specified at file scope. So these typedefs are here rather than in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// .hpp for the class (os:Solaris usually) that needs them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
   typedef int (*int_fnP_thread_t_iP_uP_stack_tP_gregset_t)(thread_t, int*, unsigned *, stack_t*, gregset_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
   typedef int (*int_fnP_thread_t_i_gregset_t)(thread_t, int, gregset_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
   typedef int (*int_fnP_thread_t_i)(thread_t, int);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
   typedef int (*int_fnP_thread_t)(thread_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
   typedef int (*int_fnP_cond_tP_mutex_tP_timestruc_tP)(cond_t *cv, mutex_t *mx, timestruc_t *abst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
   typedef int (*int_fnP_cond_tP_mutex_tP)(cond_t *cv, mutex_t *mx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
   // typedef for missing API in libc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
   typedef int (*int_fnP_mutex_tP_i_vP)(mutex_t *, int, void *);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
   typedef int (*int_fnP_mutex_tP)(mutex_t *);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
   typedef int (*int_fnP_cond_tP_i_vP)(cond_t *cv, int scope, void *arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
   typedef int (*int_fnP_cond_tP)(cond_t *cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#endif // SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// checking for nanness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
#ifdef SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
inline int g_isnan(float  f) { return isnanf(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
// isnanf() broken on Intel Solaris use isnand()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
inline int g_isnan(float  f) { return isnand(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
inline int g_isnan(double f) { return isnand(f); }
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   204
#elif defined(__APPLE__)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   205
inline int g_isnan(double f) { return isnan(f); }
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   206
#elif defined(LINUX) || defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
inline int g_isnan(float  f) { return isnanf(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
inline int g_isnan(double f) { return isnan(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
#error "missing platform-specific definition here"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   213
// GCC 4.3 does not allow 0.0/0.0 to produce a NAN value
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   214
#if (__GNUC__ == 4) && (__GNUC_MINOR__ > 2)
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   215
#define CAN_USE_NAN_DEFINE 1
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   216
#endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   217
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   218
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// Checking for finiteness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
inline int g_isfinite(jfloat  f)                 { return finite(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
inline int g_isfinite(jdouble f)                 { return finite(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// Wide characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
inline int wcslen(const jchar* x) { return wcslen((const wchar_t*)x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
// Portability macros
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
#define PRAGMA_INTERFACE             #pragma interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
#define PRAGMA_IMPLEMENTATION        #pragma implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
#if (__GNUC__ == 2) && (__GNUC_MINOR__ < 95)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
#define TEMPLATE_TABLE_BUG
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
#if (__GNUC__ == 2) && (__GNUC_MINOR__ >= 96)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
#define CONST_SDM_BUG
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// Formatting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
#ifdef _LP64
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46560
diff changeset
   243
# ifdef __APPLE__
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46560
diff changeset
   244
# define FORMAT64_MODIFIER "ll"
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46560
diff changeset
   245
# else
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46560
diff changeset
   246
# define FORMAT64_MODIFIER "l"
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46560
diff changeset
   247
# endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
#else // !_LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
#define FORMAT64_MODIFIER "ll"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// HACK: gcc warns about applying offsetof() to non-POD object or calculating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
//       offset directly when base address is NULL. Use 16 to get around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
//       warning. gcc-3.4 has an option -Wno-invalid-offsetof to suppress
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
//       this warning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
#define offset_of(klass,field) (size_t)((intx)&(((klass*)16)->field) - 16)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
#ifdef offsetof
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
# undef offsetof
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
#define offsetof(klass,field) offset_of(klass,field)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
   262
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   263
#if defined(_LP64) && defined(__APPLE__)
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   264
#define JLONG_FORMAT           "%ld"
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   265
#endif // _LP64 && __APPLE__
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   266
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   267
#ifndef USE_LIBRARY_BASED_TLS_ONLY
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   268
#define THREAD_LOCAL_DECL __thread
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   269
#endif
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   270
37092
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 35490
diff changeset
   271
// Inlining support
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 35490
diff changeset
   272
#define NOINLINE     __attribute__ ((noinline))
39405
314741ca98d5 8153743: AllocateHeap() and ReallocateHeap() should use ALWAYSINLINE macro
ysuenaga
parents: 37092
diff changeset
   273
#define ALWAYSINLINE inline __attribute__ ((always_inline))
37092
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 35490
diff changeset
   274
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
   275
#endif // SHARE_VM_UTILITIES_GLOBALDEFINITIONS_GCC_HPP