author | goetz |
Sun, 15 Sep 2013 15:28:58 +0200 | |
changeset 22836 | e7e511228518 |
parent 18687 | 5a0543c157c9 |
child 22794 | f1c014ad3754 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
15437 | 2 |
* Copyright (c) 1997, 2013, 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:
4571
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4571
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:
4571
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_ARRAYKLASS_HPP |
26 |
#define SHARE_VM_OOPS_ARRAYKLASS_HPP |
|
27 |
||
28 |
#include "memory/universe.hpp" |
|
29 |
#include "oops/klass.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
30 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
31 |
class klassVtable; |
7397 | 32 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
33 |
// ArrayKlass is the abstract baseclass for all array classes |
1 | 34 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
35 |
class ArrayKlass: public Klass { |
1 | 36 |
friend class VMStructs; |
37 |
private: |
|
38 |
int _dimension; // This is n'th-dimensional array. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
39 |
Klass* volatile _higher_dimension; // Refers the (n+1)'th-dimensional array (if present). |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
40 |
Klass* volatile _lower_dimension; // Refers the (n-1)'th-dimensional array (if present). |
1 | 41 |
int _vtable_len; // size of vtable for this klass |
42 |
oop _component_mirror; // component type, as a java/lang/Class |
|
43 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
44 |
protected: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
45 |
// Constructors |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
46 |
// The constructor with the Symbol argument does the real array |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
47 |
// initialization, the other is a dummy |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
48 |
ArrayKlass(Symbol* name); |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
49 |
ArrayKlass() { assert(DumpSharedSpaces || UseSharedSpaces, "only for cds"); } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
50 |
|
1 | 51 |
public: |
52 |
// Testing operation |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
53 |
bool oop_is_array_slow() const { return true; } |
1 | 54 |
|
55 |
// Instance variables |
|
56 |
int dimension() const { return _dimension; } |
|
57 |
void set_dimension(int dimension) { _dimension = dimension; } |
|
58 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
59 |
Klass* higher_dimension() const { return _higher_dimension; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
60 |
void set_higher_dimension(Klass* k) { _higher_dimension = k; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
61 |
Klass** adr_higher_dimension() { return (Klass**)&this->_higher_dimension;} |
1 | 62 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
63 |
Klass* lower_dimension() const { return _lower_dimension; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
64 |
void set_lower_dimension(Klass* k) { _lower_dimension = k; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
65 |
Klass** adr_lower_dimension() { return (Klass**)&this->_lower_dimension;} |
1 | 66 |
|
67 |
// offset of first element, including any padding for the sake of alignment |
|
68 |
int array_header_in_bytes() const { return layout_helper_header_size(layout_helper()); } |
|
69 |
int log2_element_size() const { return layout_helper_log2_element_size(layout_helper()); } |
|
70 |
// type of elements (T_OBJECT for both oop arrays and array-arrays) |
|
71 |
BasicType element_type() const { return layout_helper_element_type(layout_helper()); } |
|
72 |
||
73 |
oop component_mirror() const { return _component_mirror; } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
74 |
void set_component_mirror(oop m) { klass_oop_store(&_component_mirror, m); } |
1 | 75 |
oop* adr_component_mirror() { return (oop*)&this->_component_mirror;} |
76 |
||
77 |
// Compiler/Interpreter offset |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
78 |
static ByteSize component_mirror_offset() { return in_ByteSize(offset_of(ArrayKlass, _component_mirror)); } |
1 | 79 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
80 |
virtual Klass* java_super() const;//{ return SystemDictionary::Object_klass(); } |
1 | 81 |
|
82 |
// Allocation |
|
83 |
// Sizes points to the first dimension of the array, subsequent dimensions |
|
84 |
// are always in higher memory. The callers of these set that up. |
|
85 |
virtual oop multi_allocate(int rank, jint* sizes, TRAPS); |
|
86 |
objArrayOop allocate_arrayArray(int n, int length, TRAPS); |
|
87 |
||
88 |
// Lookup operations |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
89 |
Method* uncached_lookup_method(Symbol* name, Symbol* signature) const; |
1 | 90 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
91 |
// Casting from Klass* |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
92 |
static ArrayKlass* cast(Klass* k) { |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
93 |
assert(k->oop_is_array(), "cast to ArrayKlass"); |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
94 |
return (ArrayKlass*) k; |
1 | 95 |
} |
96 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
97 |
GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
98 |
bool compute_is_subtype_of(Klass* k); |
1 | 99 |
|
100 |
// Sizing |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
101 |
static int header_size() { return sizeof(ArrayKlass)/HeapWordSize; } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
102 |
static int static_size(int header_size); |
1 | 103 |
|
15437 | 104 |
#if INCLUDE_SERVICES |
105 |
virtual void collect_statistics(KlassSizeStats *sz) const { |
|
106 |
Klass::collect_statistics(sz); |
|
107 |
// Do nothing for now, but remember to modify if you add new |
|
108 |
// stuff to ArrayKlass. |
|
109 |
} |
|
110 |
#endif |
|
111 |
||
1 | 112 |
// Java vtable |
113 |
klassVtable* vtable() const; // return new klassVtable |
|
114 |
int vtable_length() const { return _vtable_len; } |
|
115 |
static int base_vtable_length() { return Universe::base_vtable_size(); } |
|
116 |
void set_vtable_length(int len) { assert(len == base_vtable_length(), "bad length"); _vtable_len = len; } |
|
117 |
protected: |
|
118 |
inline intptr_t* start_of_vtable() const; |
|
119 |
||
120 |
public: |
|
121 |
// Iterators |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
122 |
void array_klasses_do(void f(Klass* k)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
123 |
void array_klasses_do(void f(Klass* k, TRAPS), TRAPS); |
1 | 124 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
125 |
// GC support |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
126 |
virtual void oops_do(OopClosure* cl); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
127 |
|
1 | 128 |
// Return a handle. |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
129 |
static void complete_create_array_klass(ArrayKlass* k, KlassHandle super_klass, TRAPS); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
130 |
|
1 | 131 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
132 |
// jvm support |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
133 |
jint compute_modifier_flags(TRAPS) const; |
1 | 134 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
135 |
// JVMTI support |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
136 |
jint jvmti_class_status() const; |
1 | 137 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
138 |
// CDS support - remove and restore oops from metadata. Oops are not shared. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
139 |
virtual void remove_unshareable_info(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
140 |
virtual void restore_unshareable_info(TRAPS); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
141 |
|
1 | 142 |
// Printing |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
143 |
void print_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
144 |
void print_value_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
145 |
|
1 | 146 |
void oop_print_on(oop obj, outputStream* st); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
147 |
|
1 | 148 |
// Verification |
18439 | 149 |
void verify_on(outputStream* st, bool check_dictionary); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
150 |
|
1 | 151 |
void oop_verify_on(oop obj, outputStream* st); |
152 |
}; |
|
7397 | 153 |
|
154 |
#endif // SHARE_VM_OOPS_ARRAYKLASS_HPP |