author | coleenp |
Wed, 24 Jul 2019 10:22:11 -0400 | |
changeset 57511 | 00ae3b739184 |
parent 54786 | ebf733a324d4 |
child 57777 | 90ead0febf56 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50882
diff
changeset
|
2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50882
diff
changeset
|
25 |
#ifndef SHARE_OOPS_ARRAYOOP_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50882
diff
changeset
|
26 |
#define SHARE_OOPS_ARRAYOOP_HPP |
7397 | 27 |
|
28 |
#include "oops/oop.hpp" |
|
46625 | 29 |
#include "utilities/align.hpp" |
7397 | 30 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
31 |
// arrayOopDesc is the abstract baseclass for all arrays. It doesn't |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
32 |
// declare pure virtual to enforce this because that would allocate a vtbl |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
33 |
// in each instance, which we don't want. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
34 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
35 |
// The layout of array Oops is: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
36 |
// |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
37 |
// markOop |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11247
diff
changeset
|
38 |
// Klass* // 32 bits if compressed but declared 64 in LP64. |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
39 |
// length // shares klass memory or allocated after declared fields. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
40 |
|
1 | 41 |
|
42 |
class arrayOopDesc : public oopDesc { |
|
43 |
friend class VMStructs; |
|
41290 | 44 |
friend class arrayOopDescTest; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
45 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
46 |
// Interpreter/Compiler offsets |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
47 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
48 |
// Header size computation. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
49 |
// The header is considered the oop part of this type plus the length. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
50 |
// Returns the aligned header_size_in_bytes. This is not equivalent to |
591
04d2e26e6d69
6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents:
360
diff
changeset
|
51 |
// sizeof(arrayOopDesc) which should not appear in the code. |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
52 |
static int header_size_in_bytes() { |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
41290
diff
changeset
|
53 |
size_t hs = align_up(length_offset_in_bytes() + sizeof(int), |
591
04d2e26e6d69
6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents:
360
diff
changeset
|
54 |
HeapWordSize); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
55 |
#ifdef ASSERT |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
56 |
// make sure it isn't called before UseCompressedOops is initialized. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
57 |
static size_t arrayoopdesc_hs = 0; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
58 |
if (arrayoopdesc_hs == 0) arrayoopdesc_hs = hs; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
59 |
assert(arrayoopdesc_hs == hs, "header size can't change"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
60 |
#endif // ASSERT |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
61 |
return (int)hs; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
62 |
} |
1 | 63 |
|
49359
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
64 |
// Check whether an element of a typeArrayOop with the given type must be |
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
65 |
// aligned 0 mod 8. The typeArrayOop itself must be aligned at least this |
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
66 |
// strongly. |
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
67 |
static bool element_type_should_be_aligned(BasicType type) { |
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
68 |
return type == T_DOUBLE || type == T_LONG; |
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
69 |
} |
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
70 |
|
1 | 71 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
72 |
// The _length field is not declared in C++. It is allocated after the |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
73 |
// declared nonstatic fields in arrayOopDesc if not compressed, otherwise |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
74 |
// it occupies the second half of the _klass field in oopDesc. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
75 |
static int length_offset_in_bytes() { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
13728
diff
changeset
|
76 |
return UseCompressedClassPointers ? klass_gap_offset_in_bytes() : |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
77 |
sizeof(arrayOopDesc); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
78 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
79 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
80 |
// Returns the offset of the first element. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
81 |
static int base_offset_in_bytes(BasicType type) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
82 |
return header_size(type) * HeapWordSize; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
83 |
} |
1 | 84 |
|
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
47216
diff
changeset
|
85 |
// Returns the address of the first element. The elements in the array will not |
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
47216
diff
changeset
|
86 |
// relocate from this address until a subsequent thread transition. |
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
47216
diff
changeset
|
87 |
inline void* base(BasicType type) const; |
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
47216
diff
changeset
|
88 |
inline void* base_raw(BasicType type) const; // GC barrier invariant |
1 | 89 |
|
50389
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
90 |
template <typename T> |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
91 |
static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
92 |
if (obj != NULL) { |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
93 |
assert(raw == NULL, "either raw or in-heap"); |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
94 |
char* base = reinterpret_cast<char*>((void*) obj); |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
95 |
raw = reinterpret_cast<T*>(base + offset_in_bytes); |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
96 |
} else { |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
97 |
assert(raw != NULL, "either raw or in-heap"); |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
98 |
} |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
99 |
return raw; |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
100 |
} |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
49359
diff
changeset
|
101 |
|
1 | 102 |
// Tells whether index is within bounds. |
103 |
bool is_within_bounds(int index) const { return 0 <= index && index < length(); } |
|
104 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
105 |
// Accessors for instance variable which is not a C++ declared nonstatic |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
106 |
// field. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
107 |
int length() const { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
108 |
return *(int*)(((intptr_t)this) + length_offset_in_bytes()); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
109 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
110 |
void set_length(int length) { |
50882
80abf702eed8
8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
50389
diff
changeset
|
111 |
set_length((HeapWord*)this, length); |
80abf702eed8
8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
50389
diff
changeset
|
112 |
} |
80abf702eed8
8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
50389
diff
changeset
|
113 |
static void set_length(HeapWord* mem, int length) { |
80abf702eed8
8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
50389
diff
changeset
|
114 |
*(int*)(((char*)mem) + length_offset_in_bytes()) = length; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
115 |
} |
1 | 116 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
117 |
// Should only be called with constants as argument |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
118 |
// (will not constant fold otherwise) |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
119 |
// Returns the header size in words aligned to the requirements of the |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
120 |
// array object type. |
1 | 121 |
static int header_size(BasicType type) { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
122 |
size_t typesize_in_bytes = header_size_in_bytes(); |
49359
59f6547e151f
8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents:
49041
diff
changeset
|
123 |
return (int)(element_type_should_be_aligned(type) |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
2105
diff
changeset
|
124 |
? align_object_offset(typesize_in_bytes/HeapWordSize) |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
202
diff
changeset
|
125 |
: typesize_in_bytes/HeapWordSize); |
1 | 126 |
} |
127 |
||
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
670
diff
changeset
|
128 |
// Return the maximum length of an array of BasicType. The length can passed |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
670
diff
changeset
|
129 |
// to typeArrayOop::object_size(scale, length, header_size) without causing an |
10994
fc93bca9c720
7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents:
7397
diff
changeset
|
130 |
// overflow. We also need to make sure that this will not overflow a size_t on |
fc93bca9c720
7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents:
7397
diff
changeset
|
131 |
// 32 bit platforms when we convert it to a byte size. |
1 | 132 |
static int32_t max_array_length(BasicType type) { |
133 |
assert(type >= 0 && type < T_CONFLICT, "wrong type"); |
|
202
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
1
diff
changeset
|
134 |
assert(type2aelembytes(type) != 0, "wrong type"); |
10994
fc93bca9c720
7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents:
7397
diff
changeset
|
135 |
|
10999
83a6068d99c5
7110152: assert(size_in_words <= (julong)max_jint) failed: no overflow
brutisso
parents:
10994
diff
changeset
|
136 |
const size_t max_element_words_per_size_t = |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
41290
diff
changeset
|
137 |
align_down((SIZE_MAX/HeapWordSize - header_size(type)), MinObjAlignment); |
10999
83a6068d99c5
7110152: assert(size_in_words <= (julong)max_jint) failed: no overflow
brutisso
parents:
10994
diff
changeset
|
138 |
const size_t max_elements_per_size_t = |
83a6068d99c5
7110152: assert(size_in_words <= (julong)max_jint) failed: no overflow
brutisso
parents:
10994
diff
changeset
|
139 |
HeapWordSize * max_element_words_per_size_t / type2aelembytes(type); |
10994
fc93bca9c720
7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents:
7397
diff
changeset
|
140 |
if ((size_t)max_jint < max_elements_per_size_t) { |
10999
83a6068d99c5
7110152: assert(size_in_words <= (julong)max_jint) failed: no overflow
brutisso
parents:
10994
diff
changeset
|
141 |
// It should be ok to return max_jint here, but parts of the code |
83a6068d99c5
7110152: assert(size_in_words <= (julong)max_jint) failed: no overflow
brutisso
parents:
10994
diff
changeset
|
142 |
// (CollectedHeap, Klass::oop_oop_iterate(), and more) uses an int for |
83a6068d99c5
7110152: assert(size_in_words <= (julong)max_jint) failed: no overflow
brutisso
parents:
10994
diff
changeset
|
143 |
// passing around the size (in words) of an object. So, we need to avoid |
83a6068d99c5
7110152: assert(size_in_words <= (julong)max_jint) failed: no overflow
brutisso
parents:
10994
diff
changeset
|
144 |
// overflowing an int when we add the header. See CRs 4718400 and 7110613. |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
41290
diff
changeset
|
145 |
return align_down(max_jint - header_size(type), MinObjAlignment); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
670
diff
changeset
|
146 |
} |
10994
fc93bca9c720
7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents:
7397
diff
changeset
|
147 |
return (int32_t)max_elements_per_size_t; |
fc93bca9c720
7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents:
7397
diff
changeset
|
148 |
} |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
670
diff
changeset
|
149 |
|
1 | 150 |
}; |
7397 | 151 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50882
diff
changeset
|
152 |
#endif // SHARE_OOPS_ARRAYOOP_HPP |