2007-12-01 00:00:00 +00:00
|
|
|
/*
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#ifndef SHARE_VM_OOPS_ARRAYOOP_HPP
|
|
|
|
#define SHARE_VM_OOPS_ARRAYOOP_HPP
|
|
|
|
|
|
|
|
#include "memory/universe.inline.hpp"
|
|
|
|
#include "oops/oop.hpp"
|
|
|
|
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
// arrayOopDesc is the abstract baseclass for all arrays. It doesn't
|
|
|
|
// declare pure virtual to enforce this because that would allocate a vtbl
|
|
|
|
// in each instance, which we don't want.
|
|
|
|
|
|
|
|
// The layout of array Oops is:
|
|
|
|
//
|
|
|
|
// markOop
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Klass* // 32 bits if compressed but declared 64 in LP64.
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
// length // shares klass memory or allocated after declared fields.
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
class arrayOopDesc : public oopDesc {
|
|
|
|
friend class VMStructs;
|
|
|
|
|
|
|
|
// Interpreter/Compiler offsets
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
|
|
|
|
// Header size computation.
|
|
|
|
// The header is considered the oop part of this type plus the length.
|
|
|
|
// Returns the aligned header_size_in_bytes. This is not equivalent to
|
2008-05-21 16:31:35 -07:00
|
|
|
// sizeof(arrayOopDesc) which should not appear in the code.
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
static int header_size_in_bytes() {
|
2008-05-21 16:31:35 -07:00
|
|
|
size_t hs = align_size_up(length_offset_in_bytes() + sizeof(int),
|
|
|
|
HeapWordSize);
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
#ifdef ASSERT
|
|
|
|
// make sure it isn't called before UseCompressedOops is initialized.
|
|
|
|
static size_t arrayoopdesc_hs = 0;
|
|
|
|
if (arrayoopdesc_hs == 0) arrayoopdesc_hs = hs;
|
|
|
|
assert(arrayoopdesc_hs == hs, "header size can't change");
|
|
|
|
#endif // ASSERT
|
|
|
|
return (int)hs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
// The _length field is not declared in C++. It is allocated after the
|
|
|
|
// declared nonstatic fields in arrayOopDesc if not compressed, otherwise
|
|
|
|
// it occupies the second half of the _klass field in oopDesc.
|
|
|
|
static int length_offset_in_bytes() {
|
2013-08-12 17:37:02 +02:00
|
|
|
return UseCompressedClassPointers ? klass_gap_offset_in_bytes() :
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
sizeof(arrayOopDesc);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the offset of the first element.
|
|
|
|
static int base_offset_in_bytes(BasicType type) {
|
|
|
|
return header_size(type) * HeapWordSize;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Returns the address of the first element.
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
void* base(BasicType type) const {
|
|
|
|
return (void*) (((intptr_t) this) + base_offset_in_bytes(type));
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Tells whether index is within bounds.
|
|
|
|
bool is_within_bounds(int index) const { return 0 <= index && index < length(); }
|
|
|
|
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
// Accessors for instance variable which is not a C++ declared nonstatic
|
|
|
|
// field.
|
|
|
|
int length() const {
|
|
|
|
return *(int*)(((intptr_t)this) + length_offset_in_bytes());
|
|
|
|
}
|
|
|
|
void set_length(int length) {
|
|
|
|
*(int*)(((intptr_t)this) + length_offset_in_bytes()) = length;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
// Should only be called with constants as argument
|
|
|
|
// (will not constant fold otherwise)
|
|
|
|
// Returns the header size in words aligned to the requirements of the
|
|
|
|
// array object type.
|
2007-12-01 00:00:00 +00:00
|
|
|
static int header_size(BasicType type) {
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
size_t typesize_in_bytes = header_size_in_bytes();
|
|
|
|
return (int)(Universe::element_type_should_be_aligned(type)
|
2010-05-27 18:01:56 -07:00
|
|
|
? align_object_offset(typesize_in_bytes/HeapWordSize)
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
: typesize_in_bytes/HeapWordSize);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2008-12-11 12:05:08 -08:00
|
|
|
// Return the maximum length of an array of BasicType. The length can passed
|
|
|
|
// to typeArrayOop::object_size(scale, length, header_size) without causing an
|
2011-10-31 08:01:20 +01:00
|
|
|
// overflow. We also need to make sure that this will not overflow a size_t on
|
|
|
|
// 32 bit platforms when we convert it to a byte size.
|
2007-12-01 00:00:00 +00:00
|
|
|
static int32_t max_array_length(BasicType type) {
|
|
|
|
assert(type >= 0 && type < T_CONFLICT, "wrong type");
|
2008-02-25 15:05:44 -08:00
|
|
|
assert(type2aelembytes(type) != 0, "wrong type");
|
2011-10-31 08:01:20 +01:00
|
|
|
|
2011-11-15 20:17:33 +01:00
|
|
|
const size_t max_element_words_per_size_t =
|
|
|
|
align_size_down((SIZE_MAX/HeapWordSize - header_size(type)), MinObjAlignment);
|
|
|
|
const size_t max_elements_per_size_t =
|
|
|
|
HeapWordSize * max_element_words_per_size_t / type2aelembytes(type);
|
2011-10-31 08:01:20 +01:00
|
|
|
if ((size_t)max_jint < max_elements_per_size_t) {
|
2011-11-15 20:17:33 +01:00
|
|
|
// It should be ok to return max_jint here, but parts of the code
|
|
|
|
// (CollectedHeap, Klass::oop_oop_iterate(), and more) uses an int for
|
|
|
|
// passing around the size (in words) of an object. So, we need to avoid
|
|
|
|
// overflowing an int when we add the header. See CRs 4718400 and 7110613.
|
|
|
|
return align_size_down(max_jint - header_size(type), MinObjAlignment);
|
2008-12-11 12:05:08 -08:00
|
|
|
}
|
2011-10-31 08:01:20 +01:00
|
|
|
return (int32_t)max_elements_per_size_t;
|
2008-12-11 12:05:08 -08:00
|
|
|
}
|
2011-10-31 08:01:20 +01:00
|
|
|
|
|
|
|
// for unit testing
|
|
|
|
#ifndef PRODUCT
|
|
|
|
static bool check_max_length_overflow(BasicType type);
|
|
|
|
static int32_t old_max_array_length(BasicType type);
|
2011-12-14 12:15:26 +01:00
|
|
|
static void test_max_array_length();
|
2011-10-31 08:01:20 +01:00
|
|
|
#endif
|
2007-12-01 00:00:00 +00:00
|
|
|
};
|
2010-11-23 13:22:55 -08:00
|
|
|
|
|
|
|
#endif // SHARE_VM_OOPS_ARRAYOOP_HPP
|