src/share/vm/utilities/globalDefinitions_sparcWorks.hpp

Thu, 19 Mar 2015 19:53:34 +0100

author
zmajo
date
Thu, 19 Mar 2015 19:53:34 +0100
changeset 7638
aefa2e84b424
parent 7624
6a4b9e574124
child 7994
04ff2f6cd0eb
child 9858
b985cbb00e68
permissions
-rw-r--r--

8074869: C2 code generator can replace -0.0f with +0.0f on Linux
Summary: Instead of 'fpclass', use cast float->int and double->long to check if value is +0.0f and +0.0d, respectively.
Reviewed-by: kvn, simonis, dlong

duke@435 1 /*
gthornbr@7624 2 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_UTILITIES_GLOBALDEFINITIONS_SPARCWORKS_HPP
stefank@2314 26 #define SHARE_VM_UTILITIES_GLOBALDEFINITIONS_SPARCWORKS_HPP
stefank@2314 27
stefank@2314 28 #include "prims/jni.h"
stefank@2314 29
duke@435 30 // This file holds compiler-dependent includes,
duke@435 31 // globally used constants & types, class (forward)
duke@435 32 // declarations and a few frequently used utility functions.
duke@435 33
duke@435 34
duke@435 35 # include <ctype.h>
gthornbr@7624 36 #define __USE_LEGACY_PROTOTYPES__
duke@435 37 # include <dirent.h>
gthornbr@7624 38 #undef __USE_LEGACY_PROTOTYPES__
duke@435 39 # include <string.h>
duke@435 40 # include <strings.h> // for bsd'isms
duke@435 41 # include <stdarg.h>
duke@435 42 # include <stddef.h> // for offsetof
duke@435 43 # include <stdio.h>
duke@435 44 # include <stdlib.h>
duke@435 45 # include <wchar.h>
duke@435 46 # include <stdarg.h>
dcubed@485 47 #ifdef SOLARIS
duke@435 48 # include <ieeefp.h>
dcubed@485 49 #endif
duke@435 50 # include <math.h>
duke@435 51 # include <time.h>
duke@435 52 # include <fcntl.h>
duke@435 53 # include <dlfcn.h>
duke@435 54 # include <pthread.h>
dcubed@485 55 #ifdef SOLARIS
duke@435 56 # include <thread.h>
dcubed@485 57 #endif
duke@435 58 # include <limits.h>
duke@435 59 # include <errno.h>
dcubed@485 60 #ifdef SOLARIS
duke@435 61 # include <sys/trap.h>
duke@435 62 # include <sys/regset.h>
duke@435 63 # include <sys/procset.h>
duke@435 64 # include <ucontext.h>
duke@435 65 # include <setjmp.h>
dcubed@485 66 #endif
duke@435 67 # ifdef SOLARIS_MUTATOR_LIBTHREAD
duke@435 68 # include <sys/procfs.h>
duke@435 69 # endif
never@3156 70
never@3156 71 #include <inttypes.h>
never@3156 72
never@3156 73 // Solaris 8 doesn't provide definitions of these
never@3156 74 #ifdef SOLARIS
never@3156 75 #ifndef PRIdPTR
never@3156 76 #if defined(_LP64)
never@3156 77 #define PRIdPTR "ld"
never@3156 78 #define PRIuPTR "lu"
never@3156 79 #define PRIxPTR "lx"
never@3156 80 #else
never@3156 81 #define PRIdPTR "d"
never@3156 82 #define PRIuPTR "u"
never@3156 83 #define PRIxPTR "x"
never@3156 84 #endif
never@3156 85 #endif
never@3156 86 #endif
never@3156 87
dcubed@485 88 #ifdef LINUX
dcubed@485 89 # include <signal.h>
dcubed@485 90 # include <ucontext.h>
dcubed@485 91 # include <sys/time.h>
dcubed@485 92 #endif
dcubed@485 93
duke@435 94
duke@435 95 // 4810578: varargs unsafe on 32-bit integer/64-bit pointer architectures
duke@435 96 // When __cplusplus is defined, NULL is defined as 0 (32-bit constant) in
duke@435 97 // system header files. On 32-bit architectures, there is no problem.
duke@435 98 // On 64-bit architectures, defining NULL as a 32-bit constant can cause
duke@435 99 // problems with varargs functions: C++ integral promotion rules say for
duke@435 100 // varargs, we pass the argument 0 as an int. So, if NULL was passed to a
duke@435 101 // varargs function it will remain 32-bits. Depending on the calling
duke@435 102 // convention of the machine, if the argument is passed on the stack then
duke@435 103 // only 32-bits of the "NULL" pointer may be initialized to zero. The
duke@435 104 // other 32-bits will be garbage. If the varargs function is expecting a
duke@435 105 // pointer when it extracts the argument, then we have a problem.
duke@435 106 //
duke@435 107 // Solution: For 64-bit architectures, redefine NULL as 64-bit constant 0.
dcubed@485 108 //
dcubed@485 109 // Note: this fix doesn't work well on Linux because NULL will be overwritten
dcubed@485 110 // whenever a system header file is included. Linux handles NULL correctly
dcubed@485 111 // through a special type '__null'.
dcubed@485 112 #ifdef SOLARIS
duke@435 113 #ifdef _LP64
duke@435 114 #undef NULL
duke@435 115 #define NULL 0L
duke@435 116 #else
duke@435 117 #ifndef NULL
duke@435 118 #define NULL 0
duke@435 119 #endif
duke@435 120 #endif
dcubed@485 121 #endif
duke@435 122
duke@435 123 // NULL vs NULL_WORD:
duke@435 124 // On Linux NULL is defined as a special type '__null'. Assigning __null to
duke@435 125 // integer variable will cause gcc warning. Use NULL_WORD in places where a
dcubed@485 126 // pointer is stored as integer value. On some platforms, sizeof(intptr_t) >
dcubed@485 127 // sizeof(void*), so here we want something which is integer type, but has the
dcubed@485 128 // same size as a pointer.
dcubed@485 129 #ifdef LINUX
dcubed@485 130 #ifdef _LP64
dcubed@485 131 #define NULL_WORD 0L
dcubed@485 132 #else
xlu@947 133 // Cast 0 to intptr_t rather than int32_t since they are not the same type
xlu@947 134 // on some platforms.
xlu@947 135 #define NULL_WORD ((intptr_t)0)
dcubed@485 136 #endif
dcubed@485 137 #else
dcubed@485 138 #define NULL_WORD NULL
dcubed@485 139 #endif
duke@435 140
dcubed@485 141 #ifndef LINUX
duke@435 142 // Compiler-specific primitive types
duke@435 143 typedef unsigned short uint16_t;
duke@435 144 #ifndef _UINT32_T
duke@435 145 #define _UINT32_T
duke@435 146 typedef unsigned int uint32_t;
duke@435 147 #endif
duke@435 148 #if !defined(_SYS_INT_TYPES_H)
duke@435 149 #ifndef _UINT64_T
duke@435 150 #define _UINT64_T
duke@435 151 typedef unsigned long long uint64_t;
duke@435 152 #endif
duke@435 153 // %%%% how to access definition of intptr_t portably in 5.5 onward?
duke@435 154 typedef int intptr_t;
duke@435 155 typedef unsigned int uintptr_t;
duke@435 156 // If this gets an error, figure out a symbol XXX that implies the
duke@435 157 // prior definition of intptr_t, and add "&& !defined(XXX)" above.
duke@435 158 #endif
dcubed@485 159 #endif
duke@435 160
kamg@2589 161 // On solaris 8, UINTPTR_MAX is defined as empty.
kamg@2589 162 // Everywhere else it's an actual value.
kamg@2589 163 #if UINTPTR_MAX - 1 == -1
kamg@2589 164 #undef UINTPTR_MAX
kamg@2589 165 #ifdef _LP64
kamg@2589 166 #define UINTPTR_MAX UINT64_MAX
kamg@2589 167 #else
kamg@2589 168 #define UINTPTR_MAX UINT32_MAX
kamg@2589 169 #endif /* ifdef _LP64 */
kamg@2589 170 #endif
kamg@2589 171
duke@435 172 // Additional Java basic types
duke@435 173
duke@435 174 typedef unsigned char jubyte;
duke@435 175 typedef unsigned short jushort;
duke@435 176 typedef unsigned int juint;
duke@435 177 typedef unsigned long long julong;
duke@435 178
duke@435 179
duke@435 180 //----------------------------------------------------------------------------------------------------
duke@435 181 // Constant for jlong (specifying an long long constant is C++ compiler specific)
duke@435 182
duke@435 183 // Build a 64bit integer constant
duke@435 184 #define CONST64(x) (x ## LL)
duke@435 185 #define UCONST64(x) (x ## ULL)
duke@435 186
duke@435 187 const jlong min_jlong = CONST64(0x8000000000000000);
duke@435 188 const jlong max_jlong = CONST64(0x7fffffffffffffff);
duke@435 189
dcubed@485 190 #ifdef SOLARIS
duke@435 191 //----------------------------------------------------------------------------------------------------
duke@435 192 // ANSI C++ fixes
duke@435 193 // NOTE:In the ANSI committee's continuing attempt to make each version
duke@435 194 // of C++ incompatible with the previous version, you can no longer cast
duke@435 195 // pointers to functions without specifying linkage unless you want to get
duke@435 196 // warnings.
duke@435 197 //
duke@435 198 // This also means that pointers to functions can no longer be "hidden"
duke@435 199 // in opaque types like void * because at the invokation point warnings
duke@435 200 // will be generated. While this makes perfect sense from a type safety
duke@435 201 // point of view it causes a lot of warnings on old code using C header
duke@435 202 // files. Here are some typedefs to make the job of silencing warnings
duke@435 203 // a bit easier.
duke@435 204 //
duke@435 205 // The final kick in the teeth is that you can only have extern "C" linkage
duke@435 206 // specified at file scope. So these typedefs are here rather than in the
duke@435 207 // .hpp for the class (os:Solaris usually) that needs them.
duke@435 208
duke@435 209 extern "C" {
duke@435 210 typedef int (*int_fnP_thread_t_iP_uP_stack_tP_gregset_t)(thread_t, int*, unsigned *, stack_t*, gregset_t);
duke@435 211 typedef int (*int_fnP_thread_t_i_gregset_t)(thread_t, int, gregset_t);
duke@435 212 typedef int (*int_fnP_thread_t_i)(thread_t, int);
duke@435 213 typedef int (*int_fnP_thread_t)(thread_t);
duke@435 214
duke@435 215 typedef int (*int_fnP_cond_tP_mutex_tP_timestruc_tP)(cond_t *cv, mutex_t *mx, timestruc_t *abst);
duke@435 216 typedef int (*int_fnP_cond_tP_mutex_tP)(cond_t *cv, mutex_t *mx);
duke@435 217
duke@435 218 // typedef for missing API in libc
duke@435 219 typedef int (*int_fnP_mutex_tP_i_vP)(mutex_t *, int, void *);
duke@435 220 typedef int (*int_fnP_mutex_tP)(mutex_t *);
duke@435 221 typedef int (*int_fnP_cond_tP_i_vP)(cond_t *cv, int scope, void *arg);
duke@435 222 typedef int (*int_fnP_cond_tP)(cond_t *cv);
duke@435 223 };
dcubed@485 224 #endif
duke@435 225
duke@435 226 //----------------------------------------------------------------------------------------------------
duke@435 227 // Debugging
duke@435 228
duke@435 229 #define DEBUG_EXCEPTION ::abort();
duke@435 230
duke@435 231 extern "C" void breakpoint();
duke@435 232 #define BREAKPOINT ::breakpoint()
duke@435 233
duke@435 234 // checking for nanness
dcubed@485 235 #ifdef SOLARIS
duke@435 236 #ifdef SPARC
duke@435 237 inline int g_isnan(float f) { return isnanf(f); }
duke@435 238 #else
duke@435 239 // isnanf() broken on Intel Solaris use isnand()
duke@435 240 inline int g_isnan(float f) { return isnand(f); }
duke@435 241 #endif
duke@435 242
duke@435 243 inline int g_isnan(double f) { return isnand(f); }
dcubed@485 244 #elif LINUX
dcubed@485 245 inline int g_isnan(float f) { return isnanf(f); }
dcubed@485 246 inline int g_isnan(double f) { return isnan(f); }
dcubed@485 247 #else
dcubed@485 248 #error "missing platform-specific definition here"
dcubed@485 249 #endif
duke@435 250
duke@435 251 // Checking for finiteness
duke@435 252
duke@435 253 inline int g_isfinite(jfloat f) { return finite(f); }
duke@435 254 inline int g_isfinite(jdouble f) { return finite(f); }
duke@435 255
duke@435 256
duke@435 257 // Wide characters
duke@435 258
duke@435 259 inline int wcslen(const jchar* x) { return wcslen((const wchar_t*)x); }
duke@435 260
duke@435 261
duke@435 262 // Misc
dcubed@485 263 // NOTE: This one leads to an infinite recursion on Linux
dcubed@485 264 #ifndef LINUX
duke@435 265 int local_vsnprintf(char* buf, size_t count, const char* fmt, va_list argptr);
duke@435 266 #define vsnprintf local_vsnprintf
dcubed@485 267 #endif
duke@435 268
duke@435 269 // Portability macros
duke@435 270 #define PRAGMA_INTERFACE
duke@435 271 #define PRAGMA_IMPLEMENTATION
duke@435 272 #define PRAGMA_IMPLEMENTATION_(arg)
duke@435 273 #define VALUE_OBJ_CLASS_SPEC : public _ValueObj
duke@435 274
duke@435 275 // Formatting.
duke@435 276 #ifdef _LP64
duke@435 277 #define FORMAT64_MODIFIER "l"
duke@435 278 #else // !_LP64
duke@435 279 #define FORMAT64_MODIFIER "ll"
duke@435 280 #endif // _LP64
duke@435 281
duke@435 282 #define offset_of(klass,field) offsetof(klass,field)
stefank@2314 283
stefank@2314 284 #endif // SHARE_VM_UTILITIES_GLOBALDEFINITIONS_SPARCWORKS_HPP

mercurial