hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
author ysuenaga
Tue, 21 Jun 2016 19:29:39 -0400
changeset 39405 314741ca98d5
parent 37092 0e56e3c9d545
child 42061 67176803a846
permissions -rw-r--r--
8153743: AllocateHeap() and ReallocateHeap() should use ALWAYSINLINE macro Reviewed-by: dholmes, zgu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
35490
74e4d7d16790 8077648: ARM: BREAKPOINT is wrong for thumb
dholmes
parents: 34633
diff changeset
     2
 * Copyright (c) 1998, 2016, 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
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    28
#include "prims/jni.h"
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)
9103
535a93f494f6 7032458: Zero and Shark fixes
twisti
parents: 8481
diff changeset
    72
#ifndef __STDC_LIMIT_MACROS
8481
42a79b703814 6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents: 7397
diff changeset
    73
#define __STDC_LIMIT_MACROS
9103
535a93f494f6 7032458: Zero and Shark fixes
twisti
parents: 8481
diff changeset
    74
#endif // __STDC_LIMIT_MACROS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#include <inttypes.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#include <signal.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    77
#ifndef __OpenBSD__
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
#include <ucontext.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    79
#endif
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    80
#ifdef __APPLE__
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    81
  #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
    82
  #include <mach/mach.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    83
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#include <sys/time.h>
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
    85
#endif // LINUX || _ALLBSD_SOURCE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// 4810578: varargs unsafe on 32-bit integer/64-bit pointer architectures
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// When __cplusplus is defined, NULL is defined as 0 (32-bit constant) in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// system header files.  On 32-bit architectures, there is no problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// On 64-bit architectures, defining NULL as a 32-bit constant can cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// problems with varargs functions: C++ integral promotion rules say for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// varargs, we pass the argument 0 as an int.  So, if NULL was passed to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// varargs function it will remain 32-bits.  Depending on the calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// convention of the machine, if the argument is passed on the stack then
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// only 32-bits of the "NULL" pointer may be initialized to zero.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// other 32-bits will be garbage.  If the varargs function is expecting a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// pointer when it extracts the argument, then we have a problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// Solution: For 64-bit architectures, redefine NULL as 64-bit constant 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// Note: this fix doesn't work well on Linux because NULL will be overwritten
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// whenever a system header file is included. Linux handles NULL correctly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// through a special type '__null'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  #ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    #undef NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    #define NULL 0L
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    #ifndef NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      #define NULL 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// NULL vs NULL_WORD:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// On Linux NULL is defined as a special type '__null'. Assigning __null to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// integer variable will cause gcc warning. Use NULL_WORD in places where a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// pointer is stored as integer value.  On some platforms, sizeof(intptr_t) >
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// sizeof(void*), so here we want something which is integer type, but has the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
// same size as a pointer.
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   121
#ifdef __GNUC__
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  #ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    #define NULL_WORD  0L
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  #else
1888
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1
diff changeset
   125
    // 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
   126
    // 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
   127
    #define NULL_WORD  ((intptr_t)0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  #define NULL_WORD  NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   133
#if !defined(LINUX) && !defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// Compiler-specific primitive types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
typedef unsigned short     uint16_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
#ifndef _UINT32_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
#define _UINT32_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
typedef unsigned int       uint32_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
#endif // _UINT32_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
#if !defined(_SYS_INT_TYPES_H)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#ifndef _UINT64_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
#define _UINT64_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
typedef unsigned long long uint64_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
#endif // _UINT64_T
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// %%%% how to access definition of intptr_t portably in 5.5 onward?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
typedef int                     intptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
typedef unsigned int            uintptr_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
// If this gets an error, figure out a symbol XXX that implies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// prior definition of intptr_t, and add "&& !defined(XXX)" above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
#endif // _SYS_INT_TYPES_H
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   153
#endif // !LINUX && !_ALLBSD_SOURCE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// Additional Java basic types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
typedef uint8_t  jubyte;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
typedef uint16_t jushort;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
typedef uint32_t juint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
typedef uint64_t julong;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
//----------------------------------------------------------------------------------------------------
32393
4406de22d8ce 8133625: src/share/vm/opto/compile.hpp:96: error: integer constant is too large for ‘long’ type
zmajo
parents: 29581
diff changeset
   164
// Constant for jlong (specifying a long long constant is C++ compiler specific)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// Build a 64bit integer constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
#define CONST64(x)  (x ## LL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
#define UCONST64(x) (x ## ULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
const jlong min_jlong = CONST64(0x8000000000000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
const jlong max_jlong = CONST64(0x7fffffffffffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// ANSI C++ fixes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// NOTE:In the ANSI committee's continuing attempt to make each version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
// of C++ incompatible with the previous version, you can no longer cast
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// pointers to functions without specifying linkage unless you want to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// warnings.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
// This also means that pointers to functions can no longer be "hidden"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
// in opaque types like void * because at the invokation point warnings
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// will be generated. While this makes perfect sense from a type safety
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// point of view it causes a lot of warnings on old code using C header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// files. Here are some typedefs to make the job of silencing warnings
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
// a bit easier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// The final kick in the teeth is that you can only have extern "C" linkage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
// specified at file scope. So these typedefs are here rather than in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// .hpp for the class (os:Solaris usually) that needs them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
   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
   195
   typedef int (*int_fnP_thread_t_i_gregset_t)(thread_t, int, gregset_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
   typedef int (*int_fnP_thread_t_i)(thread_t, int);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
   typedef int (*int_fnP_thread_t)(thread_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
   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
   200
   typedef int (*int_fnP_cond_tP_mutex_tP)(cond_t *cv, mutex_t *mx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
   // typedef for missing API in libc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
   typedef int (*int_fnP_mutex_tP_i_vP)(mutex_t *, int, void *);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
   typedef int (*int_fnP_mutex_tP)(mutex_t *);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
   typedef int (*int_fnP_cond_tP_i_vP)(cond_t *cv, int scope, void *arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
   typedef int (*int_fnP_cond_tP)(cond_t *cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
#endif // SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
//----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
// Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
#define DEBUG_EXCEPTION ::abort();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
extern "C" void breakpoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
#define BREAKPOINT ::breakpoint()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// checking for nanness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
#ifdef SOLARIS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
#ifdef SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
inline int g_isnan(float  f) { return isnanf(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// isnanf() broken on Intel Solaris use isnand()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
inline int g_isnan(float  f) { return isnand(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
inline int g_isnan(double f) { return isnand(f); }
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   227
#elif defined(__APPLE__)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   228
inline int g_isnan(double f) { return isnan(f); }
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9124
diff changeset
   229
#elif defined(LINUX) || defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
inline int g_isnan(float  f) { return isnanf(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
inline int g_isnan(double f) { return isnan(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
#error "missing platform-specific definition here"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   236
// 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
   237
#if (__GNUC__ == 4) && (__GNUC_MINOR__ > 2)
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   238
#define CAN_USE_NAN_DEFINE 1
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   239
#endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   240
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   241
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// Checking for finiteness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
inline int g_isfinite(jfloat  f)                 { return finite(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
inline int g_isfinite(jdouble f)                 { return finite(f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// Wide characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
inline int wcslen(const jchar* x) { return wcslen((const wchar_t*)x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
// Portability macros
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
#define PRAGMA_INTERFACE             #pragma interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
#define PRAGMA_IMPLEMENTATION        #pragma implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
#define VALUE_OBJ_CLASS_SPEC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
24444
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   258
// Diagnostic pragmas like the ones defined below in PRAGMA_FORMAT_NONLITERAL_IGNORED
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   259
// were only introduced in GCC 4.2. Because we have no other possibility to ignore
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   260
// these warnings for older versions of GCC, we simply don't decorate our printf-style
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   261
// functions with __attribute__(format) in that case.
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   262
#if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2)) || (__GNUC__ > 4)
26693
f2910bf56d71 8056039: Hotspot does not compile with clang 3.4 on Linux
mgerdin
parents: 25918
diff changeset
   263
#ifndef ATTRIBUTE_PRINTF
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   264
#define ATTRIBUTE_PRINTF(fmt,vargs)  __attribute__((format(printf, fmt, vargs)))
26693
f2910bf56d71 8056039: Hotspot does not compile with clang 3.4 on Linux
mgerdin
parents: 25918
diff changeset
   265
#endif
f2910bf56d71 8056039: Hotspot does not compile with clang 3.4 on Linux
mgerdin
parents: 25918
diff changeset
   266
#ifndef ATTRIBUTE_SCANF
f2910bf56d71 8056039: Hotspot does not compile with clang 3.4 on Linux
mgerdin
parents: 25918
diff changeset
   267
#define ATTRIBUTE_SCANF(fmt,vargs)  __attribute__((format(scanf, fmt, vargs)))
24444
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   268
#endif
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   269
#endif
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   270
24444
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   271
#define PRAGMA_FORMAT_NONLITERAL_IGNORED _Pragma("GCC diagnostic ignored \"-Wformat-nonliteral\"") \
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   272
                                         _Pragma("GCC diagnostic ignored \"-Wformat-security\"")
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   273
#define PRAGMA_FORMAT_IGNORED _Pragma("GCC diagnostic ignored \"-Wformat\"")
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   274
24444
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   275
#if defined(__clang_major__) && \
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   276
      (__clang_major__ >= 4 || \
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   277
      (__clang_major__ >= 3 && __clang_minor__ >= 1)) || \
6620ba171a94 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
simonis
parents: 24424
diff changeset
   278
    ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   279
// Tested to work with clang version 3.1 and better.
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   280
#define PRAGMA_DIAG_PUSH             _Pragma("GCC diagnostic push")
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   281
#define PRAGMA_DIAG_POP              _Pragma("GCC diagnostic pop")
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   282
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   283
// Hack to deal with gcc yammering about non-security format stuff
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   284
#else
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   285
// Old versions of gcc don't do push/pop, also do not cope with this pragma within a function
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   286
// One method does so much varied printing that it is decorated with both internal and external
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   287
// versions of the macro-pragma to obtain better checking with newer compilers.
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   288
#define PRAGMA_DIAG_PUSH
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   289
#define PRAGMA_DIAG_POP
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   290
#endif
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22227
diff changeset
   291
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
#if (__GNUC__ == 2) && (__GNUC_MINOR__ < 95)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#define TEMPLATE_TABLE_BUG
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
#if (__GNUC__ == 2) && (__GNUC_MINOR__ >= 96)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
#define CONST_SDM_BUG
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// Formatting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
#define FORMAT64_MODIFIER "l"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
#else // !_LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
#define FORMAT64_MODIFIER "ll"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// HACK: gcc warns about applying offsetof() to non-POD object or calculating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
//       offset directly when base address is NULL. Use 16 to get around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
//       warning. gcc-3.4 has an option -Wno-invalid-offsetof to suppress
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
//       this warning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
#define offset_of(klass,field) (size_t)((intx)&(((klass*)16)->field) - 16)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
#ifdef offsetof
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
# undef offsetof
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
#define offsetof(klass,field) offset_of(klass,field)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
   316
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   317
#if defined(_LP64) && defined(__APPLE__)
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   318
#define JLONG_FORMAT           "%ld"
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   319
#endif // _LP64 && __APPLE__
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 11881
diff changeset
   320
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   321
#ifndef USE_LIBRARY_BASED_TLS_ONLY
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   322
#define THREAD_LOCAL_DECL __thread
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   323
#endif
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33604
diff changeset
   324
37092
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 35490
diff changeset
   325
// Inlining support
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 35490
diff changeset
   326
#define NOINLINE     __attribute__ ((noinline))
39405
314741ca98d5 8153743: AllocateHeap() and ReallocateHeap() should use ALWAYSINLINE macro
ysuenaga
parents: 37092
diff changeset
   327
#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
   328
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
   329
#endif // SHARE_VM_UTILITIES_GLOBALDEFINITIONS_GCC_HPP