annotate src/share/vm/oops/arrayKlass.hpp @ 3011:f00918f35c7f

inlining and runtime interface related changes: added codeSize() and compilerStorage() to RiMethod HotSpotMethodResolved uses reflective methods instead of vmIds and survives compilations HotSpotResolvedType.isInitialized not represented as field (can change) inlining stores graphs into method objects and reuses them
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 16 Jun 2011 20:36:17 +0200
parents 3582bf76420e
children 069ab3f976d3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2119
d4fca0a6abde 7011386: race in objArrayKlass::array_klass_impl
kvn
parents: 1972
diff changeset
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1142
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1142
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1142
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
25 #ifndef SHARE_VM_OOPS_ARRAYKLASS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
26 #define SHARE_VM_OOPS_ARRAYKLASS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
28 #include "memory/universe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
29 #include "oops/klass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
30 #include "oops/klassOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
31 #include "oops/klassVtable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // arrayKlass is the abstract baseclass for all array classes
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class arrayKlass: public Klass {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
38 int _dimension; // This is n'th-dimensional array.
2119
d4fca0a6abde 7011386: race in objArrayKlass::array_klass_impl
kvn
parents: 1972
diff changeset
39 volatile klassOop _higher_dimension; // Refers the (n+1)'th-dimensional array (if present).
d4fca0a6abde 7011386: race in objArrayKlass::array_klass_impl
kvn
parents: 1972
diff changeset
40 volatile klassOop _lower_dimension; // Refers the (n-1)'th-dimensional array (if present).
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41 int _vtable_len; // size of vtable for this klass
a61af66fc99e Initial load
duke
parents:
diff changeset
42 juint _alloc_size; // allocation profiling support
a61af66fc99e Initial load
duke
parents:
diff changeset
43 oop _component_mirror; // component type, as a java/lang/Class
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Testing operation
a61af66fc99e Initial load
duke
parents:
diff changeset
47 bool oop_is_array() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int dimension() const { return _dimension; }
a61af66fc99e Initial load
duke
parents:
diff changeset
51 void set_dimension(int dimension) { _dimension = dimension; }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 klassOop higher_dimension() const { return _higher_dimension; }
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void set_higher_dimension(klassOop k) { oop_store_without_check((oop*) &_higher_dimension, (oop) k); }
a61af66fc99e Initial load
duke
parents:
diff changeset
55 oop* adr_higher_dimension() { return (oop*)&this->_higher_dimension;}
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 klassOop lower_dimension() const { return _lower_dimension; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void set_lower_dimension(klassOop k) { oop_store_without_check((oop*) &_lower_dimension, (oop) k); }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 oop* adr_lower_dimension() { return (oop*)&this->_lower_dimension;}
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Allocation profiling support
a61af66fc99e Initial load
duke
parents:
diff changeset
62 juint alloc_size() const { return _alloc_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 void set_alloc_size(juint n) { _alloc_size = n; }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // offset of first element, including any padding for the sake of alignment
a61af66fc99e Initial load
duke
parents:
diff changeset
66 int array_header_in_bytes() const { return layout_helper_header_size(layout_helper()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 int log2_element_size() const { return layout_helper_log2_element_size(layout_helper()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // type of elements (T_OBJECT for both oop arrays and array-arrays)
a61af66fc99e Initial load
duke
parents:
diff changeset
69 BasicType element_type() const { return layout_helper_element_type(layout_helper()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 oop component_mirror() const { return _component_mirror; }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void set_component_mirror(oop m) { oop_store((oop*) &_component_mirror, m); }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 oop* adr_component_mirror() { return (oop*)&this->_component_mirror;}
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Compiler/Interpreter offset
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static ByteSize component_mirror_offset() { return byte_offset_of(arrayKlass, _component_mirror); }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 0
diff changeset
78 virtual klassOop java_super() const;//{ return SystemDictionary::Object_klass(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Sizes points to the first dimension of the array, subsequent dimensions
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // are always in higher memory. The callers of these set that up.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 virtual oop multi_allocate(int rank, jint* sizes, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 objArrayOop allocate_arrayArray(int n, int length, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Lookup operations
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2119
diff changeset
87 methodOop uncached_lookup_method(Symbol* name, Symbol* signature) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Casting from klassOop
a61af66fc99e Initial load
duke
parents:
diff changeset
90 static arrayKlass* cast(klassOop k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 Klass* kp = k->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 assert(kp->null_vtbl() || kp->oop_is_array(), "cast to arrayKlass");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 return (arrayKlass*) kp;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 objArrayOop compute_secondary_supers(int num_extra_slots, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 bool compute_is_subtype_of(klassOop k);
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Sizing
a61af66fc99e Initial load
duke
parents:
diff changeset
100 static int header_size() { return oopDesc::header_size() + sizeof(arrayKlass)/HeapWordSize; }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 int object_size(int header_size) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 bool object_is_parsable() const { return _vtable_len > 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Java vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
106 klassVtable* vtable() const; // return new klassVtable
a61af66fc99e Initial load
duke
parents:
diff changeset
107 int vtable_length() const { return _vtable_len; }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static int base_vtable_length() { return Universe::base_vtable_size(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 void set_vtable_length(int len) { assert(len == base_vtable_length(), "bad length"); _vtable_len = len; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
111 inline intptr_t* start_of_vtable() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Iterators
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void array_klasses_do(void f(klassOop k));
a61af66fc99e Initial load
duke
parents:
diff changeset
116 void with_array_klasses_do(void f(klassOop k));
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // Shared creation method
a61af66fc99e Initial load
duke
parents:
diff changeset
119 static arrayKlassHandle base_create_array_klass(
a61af66fc99e Initial load
duke
parents:
diff changeset
120 const Klass_vtbl& vtbl,
a61af66fc99e Initial load
duke
parents:
diff changeset
121 int header_size, KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
122 TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // Return a handle.
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static void complete_create_array_klass(arrayKlassHandle k, KlassHandle super_klass, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
125
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
126 // jvm support
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
127 jint compute_modifier_flags(TRAPS) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
129 // JVMTI support
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
130 jint jvmti_class_status() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
133 void oop_print_on(oop obj, outputStream* st);
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
134
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Verification
a61af66fc99e Initial load
duke
parents:
diff changeset
136 void oop_verify_on(oop obj, outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
138
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
139 #endif // SHARE_VM_OOPS_ARRAYKLASS_HPP