aoqi@0: /* aoqi@0: * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. aoqi@0: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. aoqi@0: * aoqi@0: * This code is free software; you can redistribute it and/or modify it aoqi@0: * under the terms of the GNU General Public License version 2 only, as aoqi@0: * published by the Free Software Foundation. aoqi@0: * aoqi@0: * This code is distributed in the hope that it will be useful, but WITHOUT aoqi@0: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or aoqi@0: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License aoqi@0: * version 2 for more details (a copy is included in the LICENSE file that aoqi@0: * accompanied this code). aoqi@0: * aoqi@0: * You should have received a copy of the GNU General Public License version aoqi@0: * 2 along with this work; if not, write to the Free Software Foundation, aoqi@0: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. aoqi@0: * aoqi@0: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA aoqi@0: * or visit www.oracle.com if you need additional information or have any aoqi@0: * questions. aoqi@0: * aoqi@0: */ aoqi@0: aoqi@0: #include "precompiled.hpp" aoqi@0: #include "runtime/os.hpp" aoqi@0: #include "utilities/globalDefinitions.hpp" aoqi@0: #include "utilities/top.hpp" aoqi@0: aoqi@0: // Basic error support aoqi@0: aoqi@0: // Info for oops within a java object. Defaults are zero so aoqi@0: // things will break badly if incorrectly initialized. aoqi@0: int heapOopSize = 0; aoqi@0: int LogBytesPerHeapOop = 0; aoqi@0: int LogBitsPerHeapOop = 0; aoqi@0: int BytesPerHeapOop = 0; aoqi@0: int BitsPerHeapOop = 0; aoqi@0: aoqi@0: // Object alignment, in units of HeapWords. aoqi@0: // Defaults are -1 so things will break badly if incorrectly initialized. aoqi@0: int MinObjAlignment = -1; aoqi@0: int MinObjAlignmentInBytes = -1; aoqi@0: int MinObjAlignmentInBytesMask = 0; aoqi@0: aoqi@0: int LogMinObjAlignment = -1; aoqi@0: int LogMinObjAlignmentInBytes = -1; aoqi@0: aoqi@0: // Oop encoding heap max aoqi@0: uint64_t OopEncodingHeapMax = 0; aoqi@0: aoqi@0: void basic_fatal(const char* msg) { aoqi@0: fatal(msg); aoqi@0: } aoqi@0: aoqi@0: // Something to help porters sleep at night aoqi@0: aoqi@0: void basic_types_init() { aoqi@0: #ifdef ASSERT aoqi@0: #ifdef _LP64 aoqi@0: assert(min_intx == (intx)CONST64(0x8000000000000000), "correct constant"); aoqi@0: assert(max_intx == CONST64(0x7FFFFFFFFFFFFFFF), "correct constant"); aoqi@0: assert(max_uintx == CONST64(0xFFFFFFFFFFFFFFFF), "correct constant"); aoqi@0: assert( 8 == sizeof( intx), "wrong size for basic type"); aoqi@0: assert( 8 == sizeof( jobject), "wrong size for basic type"); aoqi@0: #else aoqi@0: assert(min_intx == (intx)0x80000000, "correct constant"); aoqi@0: assert(max_intx == 0x7FFFFFFF, "correct constant"); aoqi@0: assert(max_uintx == 0xFFFFFFFF, "correct constant"); aoqi@0: assert( 4 == sizeof( intx), "wrong size for basic type"); aoqi@0: assert( 4 == sizeof( jobject), "wrong size for basic type"); aoqi@0: #endif aoqi@0: assert( (~max_juint) == 0, "max_juint has all its bits"); aoqi@0: assert( (~max_uintx) == 0, "max_uintx has all its bits"); aoqi@0: assert( (~max_julong) == 0, "max_julong has all its bits"); aoqi@0: assert( 1 == sizeof( jbyte), "wrong size for basic type"); aoqi@0: assert( 2 == sizeof( jchar), "wrong size for basic type"); aoqi@0: assert( 2 == sizeof( jshort), "wrong size for basic type"); aoqi@0: assert( 4 == sizeof( juint), "wrong size for basic type"); aoqi@0: assert( 4 == sizeof( jint), "wrong size for basic type"); aoqi@0: assert( 1 == sizeof( jboolean), "wrong size for basic type"); aoqi@0: assert( 8 == sizeof( jlong), "wrong size for basic type"); aoqi@0: assert( 4 == sizeof( jfloat), "wrong size for basic type"); aoqi@0: assert( 8 == sizeof( jdouble), "wrong size for basic type"); aoqi@0: assert( 1 == sizeof( u1), "wrong size for basic type"); aoqi@0: assert( 2 == sizeof( u2), "wrong size for basic type"); aoqi@0: assert( 4 == sizeof( u4), "wrong size for basic type"); aoqi@0: aoqi@0: int num_type_chars = 0; aoqi@0: for (int i = 0; i < 99; i++) { aoqi@0: if (type2char((BasicType)i) != 0) { aoqi@0: assert(char2type(type2char((BasicType)i)) == i, "proper inverses"); aoqi@0: num_type_chars++; aoqi@0: } aoqi@0: } aoqi@0: assert(num_type_chars == 11, "must have tested the right number of mappings"); aoqi@0: assert(char2type(0) == T_ILLEGAL, "correct illegality"); aoqi@0: aoqi@0: { aoqi@0: for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) { aoqi@0: BasicType vt = (BasicType)i; aoqi@0: BasicType ft = type2field[vt]; aoqi@0: switch (vt) { aoqi@0: // the following types might plausibly show up in memory layouts: aoqi@0: case T_BOOLEAN: aoqi@0: case T_BYTE: aoqi@0: case T_CHAR: aoqi@0: case T_SHORT: aoqi@0: case T_INT: aoqi@0: case T_FLOAT: aoqi@0: case T_DOUBLE: aoqi@0: case T_LONG: aoqi@0: case T_OBJECT: aoqi@0: case T_ADDRESS: // random raw pointer aoqi@0: case T_METADATA: // metadata pointer aoqi@0: case T_NARROWOOP: // compressed pointer aoqi@0: case T_NARROWKLASS: // compressed klass pointer aoqi@0: case T_CONFLICT: // might as well support a bottom type aoqi@0: case T_VOID: // padding or other unaddressed word aoqi@0: // layout type must map to itself aoqi@0: assert(vt == ft, ""); aoqi@0: break; aoqi@0: default: aoqi@0: // non-layout type must map to a (different) layout type aoqi@0: assert(vt != ft, ""); aoqi@0: assert(ft == type2field[ft], ""); aoqi@0: } aoqi@0: // every type must map to same-sized layout type: aoqi@0: assert(type2size[vt] == type2size[ft], ""); aoqi@0: } aoqi@0: } aoqi@0: // These are assumed, e.g., when filling HeapWords with juints. aoqi@0: assert(is_power_of_2(sizeof(juint)), "juint must be power of 2"); aoqi@0: assert(is_power_of_2(HeapWordSize), "HeapWordSize must be power of 2"); aoqi@0: assert((size_t)HeapWordSize >= sizeof(juint), aoqi@0: "HeapWord should be at least as large as juint"); aoqi@0: assert(sizeof(NULL) == sizeof(char*), "NULL must be same size as pointer"); aoqi@0: #endif aoqi@0: aoqi@0: if( JavaPriority1_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[1] = JavaPriority1_To_OSPriority; aoqi@0: if( JavaPriority2_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[2] = JavaPriority2_To_OSPriority; aoqi@0: if( JavaPriority3_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[3] = JavaPriority3_To_OSPriority; aoqi@0: if( JavaPriority4_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[4] = JavaPriority4_To_OSPriority; aoqi@0: if( JavaPriority5_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[5] = JavaPriority5_To_OSPriority; aoqi@0: if( JavaPriority6_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[6] = JavaPriority6_To_OSPriority; aoqi@0: if( JavaPriority7_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[7] = JavaPriority7_To_OSPriority; aoqi@0: if( JavaPriority8_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[8] = JavaPriority8_To_OSPriority; aoqi@0: if( JavaPriority9_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[9] = JavaPriority9_To_OSPriority; aoqi@0: if(JavaPriority10_To_OSPriority != -1 ) aoqi@0: os::java_to_os_priority[10] = JavaPriority10_To_OSPriority; aoqi@0: aoqi@0: // Set the size of basic types here (after argument parsing but before aoqi@0: // stub generation). aoqi@0: if (UseCompressedOops) { aoqi@0: // Size info for oops within java objects is fixed aoqi@0: heapOopSize = jintSize; aoqi@0: LogBytesPerHeapOop = LogBytesPerInt; aoqi@0: LogBitsPerHeapOop = LogBitsPerInt; aoqi@0: BytesPerHeapOop = BytesPerInt; aoqi@0: BitsPerHeapOop = BitsPerInt; aoqi@0: } else { aoqi@0: heapOopSize = oopSize; aoqi@0: LogBytesPerHeapOop = LogBytesPerWord; aoqi@0: LogBitsPerHeapOop = LogBitsPerWord; aoqi@0: BytesPerHeapOop = BytesPerWord; aoqi@0: BitsPerHeapOop = BitsPerWord; aoqi@0: } aoqi@0: _type2aelembytes[T_OBJECT] = heapOopSize; aoqi@0: _type2aelembytes[T_ARRAY] = heapOopSize; aoqi@0: } aoqi@0: aoqi@0: aoqi@0: // Map BasicType to signature character aoqi@0: char type2char_tab[T_CONFLICT+1]={ 0, 0, 0, 0, 'Z', 'C', 'F', 'D', 'B', 'S', 'I', 'J', 'L', '[', 'V', 0, 0, 0, 0, 0}; aoqi@0: aoqi@0: // Map BasicType to Java type name aoqi@0: const char* type2name_tab[T_CONFLICT+1] = { aoqi@0: NULL, NULL, NULL, NULL, aoqi@0: "boolean", aoqi@0: "char", aoqi@0: "float", aoqi@0: "double", aoqi@0: "byte", aoqi@0: "short", aoqi@0: "int", aoqi@0: "long", aoqi@0: "object", aoqi@0: "array", aoqi@0: "void", aoqi@0: "*address*", aoqi@0: "*narrowoop*", aoqi@0: "*metadata*", aoqi@0: "*narrowklass*", aoqi@0: "*conflict*" aoqi@0: }; aoqi@0: aoqi@0: aoqi@0: BasicType name2type(const char* name) { aoqi@0: for (int i = T_BOOLEAN; i <= T_VOID; i++) { aoqi@0: BasicType t = (BasicType)i; aoqi@0: if (type2name_tab[t] != NULL && 0 == strcmp(type2name_tab[t], name)) aoqi@0: return t; aoqi@0: } aoqi@0: return T_ILLEGAL; aoqi@0: } aoqi@0: aoqi@0: aoqi@0: // Map BasicType to size in words aoqi@0: int type2size[T_CONFLICT+1]={ -1, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, -1}; aoqi@0: aoqi@0: BasicType type2field[T_CONFLICT+1] = { aoqi@0: (BasicType)0, // 0, aoqi@0: (BasicType)0, // 1, aoqi@0: (BasicType)0, // 2, aoqi@0: (BasicType)0, // 3, aoqi@0: T_BOOLEAN, // T_BOOLEAN = 4, aoqi@0: T_CHAR, // T_CHAR = 5, aoqi@0: T_FLOAT, // T_FLOAT = 6, aoqi@0: T_DOUBLE, // T_DOUBLE = 7, aoqi@0: T_BYTE, // T_BYTE = 8, aoqi@0: T_SHORT, // T_SHORT = 9, aoqi@0: T_INT, // T_INT = 10, aoqi@0: T_LONG, // T_LONG = 11, aoqi@0: T_OBJECT, // T_OBJECT = 12, aoqi@0: T_OBJECT, // T_ARRAY = 13, aoqi@0: T_VOID, // T_VOID = 14, aoqi@0: T_ADDRESS, // T_ADDRESS = 15, aoqi@0: T_NARROWOOP, // T_NARROWOOP= 16, aoqi@0: T_METADATA, // T_METADATA = 17, aoqi@0: T_NARROWKLASS, // T_NARROWKLASS = 18, aoqi@0: T_CONFLICT // T_CONFLICT = 19, aoqi@0: }; aoqi@0: aoqi@0: aoqi@0: BasicType type2wfield[T_CONFLICT+1] = { aoqi@0: (BasicType)0, // 0, aoqi@0: (BasicType)0, // 1, aoqi@0: (BasicType)0, // 2, aoqi@0: (BasicType)0, // 3, aoqi@0: T_INT, // T_BOOLEAN = 4, aoqi@0: T_INT, // T_CHAR = 5, aoqi@0: T_FLOAT, // T_FLOAT = 6, aoqi@0: T_DOUBLE, // T_DOUBLE = 7, aoqi@0: T_INT, // T_BYTE = 8, aoqi@0: T_INT, // T_SHORT = 9, aoqi@0: T_INT, // T_INT = 10, aoqi@0: T_LONG, // T_LONG = 11, aoqi@0: T_OBJECT, // T_OBJECT = 12, aoqi@0: T_OBJECT, // T_ARRAY = 13, aoqi@0: T_VOID, // T_VOID = 14, aoqi@0: T_ADDRESS, // T_ADDRESS = 15, aoqi@0: T_NARROWOOP, // T_NARROWOOP = 16, aoqi@0: T_METADATA, // T_METADATA = 17, aoqi@0: T_NARROWKLASS, // T_NARROWKLASS = 18, aoqi@0: T_CONFLICT // T_CONFLICT = 19, aoqi@0: }; aoqi@0: aoqi@0: aoqi@0: int _type2aelembytes[T_CONFLICT+1] = { aoqi@0: 0, // 0 aoqi@0: 0, // 1 aoqi@0: 0, // 2 aoqi@0: 0, // 3 aoqi@0: T_BOOLEAN_aelem_bytes, // T_BOOLEAN = 4, aoqi@0: T_CHAR_aelem_bytes, // T_CHAR = 5, aoqi@0: T_FLOAT_aelem_bytes, // T_FLOAT = 6, aoqi@0: T_DOUBLE_aelem_bytes, // T_DOUBLE = 7, aoqi@0: T_BYTE_aelem_bytes, // T_BYTE = 8, aoqi@0: T_SHORT_aelem_bytes, // T_SHORT = 9, aoqi@0: T_INT_aelem_bytes, // T_INT = 10, aoqi@0: T_LONG_aelem_bytes, // T_LONG = 11, aoqi@0: T_OBJECT_aelem_bytes, // T_OBJECT = 12, aoqi@0: T_ARRAY_aelem_bytes, // T_ARRAY = 13, aoqi@0: 0, // T_VOID = 14, aoqi@0: T_OBJECT_aelem_bytes, // T_ADDRESS = 15, aoqi@0: T_NARROWOOP_aelem_bytes, // T_NARROWOOP= 16, aoqi@0: T_OBJECT_aelem_bytes, // T_METADATA = 17, aoqi@0: T_NARROWKLASS_aelem_bytes, // T_NARROWKLASS= 18, aoqi@0: 0 // T_CONFLICT = 19, aoqi@0: }; aoqi@0: aoqi@0: #ifdef ASSERT aoqi@0: int type2aelembytes(BasicType t, bool allow_address) { aoqi@0: assert(allow_address || t != T_ADDRESS, " "); aoqi@0: return _type2aelembytes[t]; aoqi@0: } aoqi@0: #endif aoqi@0: aoqi@0: // Support for 64-bit integer arithmetic aoqi@0: aoqi@0: // The following code is mostly taken from JVM typedefs_md.h and system_md.c aoqi@0: aoqi@0: static const jlong high_bit = (jlong)1 << (jlong)63; aoqi@0: static const jlong other_bits = ~high_bit; aoqi@0: aoqi@0: jlong float2long(jfloat f) { aoqi@0: jlong tmp = (jlong) f; aoqi@0: if (tmp != high_bit) { aoqi@0: return tmp; aoqi@0: } else { aoqi@0: if (g_isnan((jdouble)f)) { aoqi@0: return 0; aoqi@0: } aoqi@0: if (f < 0) { aoqi@0: return high_bit; aoqi@0: } else { aoqi@0: return other_bits; aoqi@0: } aoqi@0: } aoqi@0: } aoqi@0: aoqi@0: aoqi@0: jlong double2long(jdouble f) { aoqi@0: jlong tmp = (jlong) f; aoqi@0: if (tmp != high_bit) { aoqi@0: return tmp; aoqi@0: } else { aoqi@0: if (g_isnan(f)) { aoqi@0: return 0; aoqi@0: } aoqi@0: if (f < 0) { aoqi@0: return high_bit; aoqi@0: } else { aoqi@0: return other_bits; aoqi@0: } aoqi@0: } aoqi@0: } aoqi@0: aoqi@0: // least common multiple aoqi@0: size_t lcm(size_t a, size_t b) { aoqi@0: size_t cur, div, next; aoqi@0: aoqi@0: cur = MAX2(a, b); aoqi@0: div = MIN2(a, b); aoqi@0: aoqi@0: assert(div != 0, "lcm requires positive arguments"); aoqi@0: aoqi@0: aoqi@0: while ((next = cur % div) != 0) { aoqi@0: cur = div; div = next; aoqi@0: } aoqi@0: aoqi@0: aoqi@0: julong result = julong(a) * b / div; aoqi@0: assert(result <= (size_t)max_uintx, "Integer overflow in lcm"); aoqi@0: aoqi@0: return size_t(result); aoqi@0: } aoqi@0: aoqi@0: #ifndef PRODUCT aoqi@0: aoqi@0: void GlobalDefinitions::test_globals() { aoqi@0: intptr_t page_sizes[] = { os::vm_page_size(), 4096, 8192, 65536, 2*1024*1024 }; aoqi@0: const int num_page_sizes = sizeof(page_sizes) / sizeof(page_sizes[0]); aoqi@0: aoqi@0: for (int i = 0; i < num_page_sizes; i++) { aoqi@0: intptr_t page_size = page_sizes[i]; aoqi@0: aoqi@0: address a_page = (address)(10*page_size); aoqi@0: aoqi@0: // Check that address within page is returned as is aoqi@0: assert(clamp_address_in_page(a_page, a_page, page_size) == a_page, "incorrect"); aoqi@0: assert(clamp_address_in_page(a_page + 128, a_page, page_size) == a_page + 128, "incorrect"); aoqi@0: assert(clamp_address_in_page(a_page + page_size - 1, a_page, page_size) == a_page + page_size - 1, "incorrect"); aoqi@0: aoqi@0: // Check that address above page returns start of next page aoqi@0: assert(clamp_address_in_page(a_page + page_size, a_page, page_size) == a_page + page_size, "incorrect"); aoqi@0: assert(clamp_address_in_page(a_page + page_size + 1, a_page, page_size) == a_page + page_size, "incorrect"); aoqi@0: assert(clamp_address_in_page(a_page + page_size*5 + 1, a_page, page_size) == a_page + page_size, "incorrect"); aoqi@0: aoqi@0: // Check that address below page returns start of page aoqi@0: assert(clamp_address_in_page(a_page - 1, a_page, page_size) == a_page, "incorrect"); aoqi@0: assert(clamp_address_in_page(a_page - 2*page_size - 1, a_page, page_size) == a_page, "incorrect"); aoqi@0: assert(clamp_address_in_page(a_page - 5*page_size - 1, a_page, page_size) == a_page, "incorrect"); aoqi@0: } aoqi@0: } aoqi@0: aoqi@0: #endif // PRODUCT