1 /* 2 * Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * This code is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. 8 * 9 * This code is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 * version 2 for more details (a copy is included in the LICENSE file that 13 * accompanied this code). 14 * 15 * You should have received a copy of the GNU General Public License version 16 * 2 along with this work; if not, write to the Free Software Foundation, 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 * 23 */ 24 25 #ifndef SHARE_OOPS_ARRAYOOP_HPP 26 #define SHARE_OOPS_ARRAYOOP_HPP 27 28 #include "oops/oop.hpp" 29 #include "utilities/align.hpp" 30 #include "utilities/globalDefinitions.hpp" 31 32 // arrayOopDesc is the abstract baseclass for all arrays. It doesn't 33 // declare pure virtual to enforce this because that would allocate a vtbl 34 // in each instance, which we don't want. 35 36 // The layout of array Oops is: 37 // 38 // markWord 39 // Klass* // 32 bits if compressed but declared 64 in LP64. 40 // length // shares klass memory or allocated after declared fields. 41 42 43 class arrayOopDesc : public oopDesc { 44 friend class VMStructs; 45 friend class arrayOopDescTest; 46 47 // Interpreter/Compiler offsets 48 49 private: 50 // Returns the address of the length "field". See length_offset_in_bytes(). 51 static int* length_addr_impl(void* obj_ptr) { 52 char* ptr = static_cast<char*>(obj_ptr); 53 return reinterpret_cast<int*>(ptr + length_offset_in_bytes()); 54 } 55 56 // Given a type, return true if elements of that type must be aligned to 64-bit. 57 static bool element_type_should_be_aligned(BasicType type) { 58 #ifdef _LP64 59 if (type == T_OBJECT || type == T_ARRAY) { 60 return !UseCompressedOops; 61 } 62 #endif 63 return type == T_DOUBLE || type == T_LONG; 64 } 65 66 public: 67 // Header size computation. 68 // The header is considered the oop part of this type plus the length. 69 // This is not equivalent to sizeof(arrayOopDesc) which should not appear in the code. 70 static int header_size_in_bytes() { 71 size_t hs = length_offset_in_bytes() + sizeof(int); 72 #ifdef ASSERT 73 // make sure it isn't called before UseCompressedOops is initialized. 74 static size_t arrayoopdesc_hs = 0; 75 if (arrayoopdesc_hs == 0) arrayoopdesc_hs = hs; 76 assert(arrayoopdesc_hs == hs, "header size can't change"); 77 #endif // ASSERT 78 return (int)hs; 79 } 80 81 // The _length field is not declared in C++. It is allocated after the 82 // declared nonstatic fields in arrayOopDesc if not compressed, otherwise 83 // it occupies the second half of the _klass field in oopDesc. 84 static int length_offset_in_bytes() { 85 if (UseCompactObjectHeaders) { 86 return oopDesc::base_offset_in_bytes(); 87 } else if (UseCompressedClassPointers) { 88 return klass_gap_offset_in_bytes(); 89 } else { 90 return sizeof(arrayOopDesc); 91 } 92 } 93 94 // Returns the offset of the first element. 95 static int base_offset_in_bytes(BasicType type) { 96 size_t hs = header_size_in_bytes(); 97 return (int)(element_type_should_be_aligned(type) ? align_up(hs, BytesPerLong) : hs); 98 } 99 100 // Returns the address of the first element. The elements in the array will not 101 // relocate from this address until a subsequent thread transition. 102 void* base(BasicType type) const { 103 return reinterpret_cast<void*>(cast_from_oop<intptr_t>(as_oop()) + base_offset_in_bytes(type)); 104 } 105 106 template <typename T> 107 static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { 108 if (obj != nullptr) { 109 assert(raw == nullptr, "either raw or in-heap"); 110 char* base = reinterpret_cast<char*>((void*) obj); 111 raw = reinterpret_cast<T*>(base + offset_in_bytes); 112 } else { 113 assert(raw != nullptr, "either raw or in-heap"); 114 } 115 return raw; 116 } 117 118 // Tells whether index is within bounds. 119 bool is_within_bounds(int index) const { return 0 <= index && index < length(); } 120 121 // Accessors for array length. There's not a member variable for 122 // it; see length_offset_in_bytes(). 123 int length() const { return *length_addr_impl(const_cast<arrayOopDesc*>(this)); } 124 void set_length(int length) { *length_addr_impl(this) = length; } 125 126 int* length_addr() { 127 return length_addr_impl(this); 128 } 129 130 static void set_length(HeapWord* mem, int length) { 131 *length_addr_impl(mem) = length; 132 } 133 134 // Return the maximum length of an array of BasicType. The length can be passed 135 // to typeArrayOop::object_size(scale, length, header_size) without causing an 136 // overflow. We also need to make sure that this will not overflow a size_t on 137 // 32 bit platforms when we convert it to a byte size. 138 static int32_t max_array_length(BasicType type) { 139 assert(type < T_CONFLICT, "wrong type"); 140 assert(type2aelembytes(type) != 0, "wrong type"); 141 142 size_t hdr_size_in_bytes = base_offset_in_bytes(type); 143 // This is rounded-up and may overlap with the first array elements. 144 size_t hdr_size_in_words = align_up(hdr_size_in_bytes, HeapWordSize) / HeapWordSize; 145 146 const size_t max_element_words_per_size_t = 147 align_down((SIZE_MAX/HeapWordSize - hdr_size_in_words), MinObjAlignment); 148 const size_t max_elements_per_size_t = 149 HeapWordSize * max_element_words_per_size_t / type2aelembytes(type); 150 if ((size_t)max_jint < max_elements_per_size_t) { 151 // It should be ok to return max_jint here, but parts of the code 152 // (CollectedHeap, Klass::oop_oop_iterate(), and more) uses an int for 153 // passing around the size (in words) of an object. So, we need to avoid 154 // overflowing an int when we add the header. See CRs 4718400 and 7110613. 155 return align_down(max_jint - hdr_size_in_words, MinObjAlignment); 156 } 157 return (int32_t)max_elements_per_size_t; 158 } 159 160 }; 161 162 #endif // SHARE_OOPS_ARRAYOOP_HPP