src/share/vm/ci/ciInstanceKlass.hpp

Thu, 29 Mar 2012 22:18:56 -0400

author
jiangli
date
Thu, 29 Mar 2012 22:18:56 -0400
changeset 3701
49036505ab5f
parent 2314
f95d63e2154a
child 4037
da91efe96a93
permissions
-rw-r--r--

7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
Summary: Change implementor to embedded instanceKlass field.
Reviewed-by: sspitsyn, minqi, coleenp

duke@435 1 /*
jiangli@3701 2 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_CI_CIINSTANCEKLASS_HPP
stefank@2314 26 #define SHARE_VM_CI_CIINSTANCEKLASS_HPP
stefank@2314 27
stefank@2314 28 #include "ci/ciConstantPoolCache.hpp"
stefank@2314 29 #include "ci/ciFlags.hpp"
stefank@2314 30 #include "ci/ciInstanceKlassKlass.hpp"
stefank@2314 31 #include "ci/ciKlass.hpp"
stefank@2314 32 #include "ci/ciSymbol.hpp"
stefank@2314 33
duke@435 34 // ciInstanceKlass
duke@435 35 //
duke@435 36 // This class represents a klassOop in the HotSpot virtual machine
duke@435 37 // whose Klass part is an instanceKlass. It may or may not
duke@435 38 // be loaded.
duke@435 39 class ciInstanceKlass : public ciKlass {
duke@435 40 CI_PACKAGE_ACCESS
twisti@1573 41 friend class ciBytecodeStream;
duke@435 42 friend class ciEnv;
twisti@1573 43 friend class ciExceptionHandler;
duke@435 44 friend class ciMethod;
duke@435 45 friend class ciField;
duke@435 46
duke@435 47 private:
duke@435 48 jobject _loader;
duke@435 49 jobject _protection_domain;
duke@435 50
never@2000 51 instanceKlass::ClassState _init_state; // state of class
coleenp@548 52 bool _is_shared;
duke@435 53 bool _has_finalizer;
duke@435 54 bool _has_subklass;
coleenp@548 55 bool _has_nonstatic_fields;
coleenp@548 56
duke@435 57 ciFlags _flags;
duke@435 58 jint _nonstatic_field_size;
kvn@479 59 jint _nonstatic_oop_map_size;
duke@435 60
duke@435 61 // Lazy fields get filled in only upon request.
duke@435 62 ciInstanceKlass* _super;
duke@435 63 ciInstance* _java_mirror;
duke@435 64
duke@435 65 ciConstantPoolCache* _field_cache; // cached map index->field
duke@435 66 GrowableArray<ciField*>* _nonstatic_fields;
duke@435 67
jiangli@3701 68 // The possible values of the _implementor fall into following three cases:
jiangli@3701 69 // NULL: no implementor.
jiangli@3701 70 // A ciInstanceKlass that's not itself: one implementor.
jiangli@3701 71 // Itsef: more than one implementors.
jiangli@3701 72 ciInstanceKlass* _implementor;
duke@435 73
kvn@479 74 GrowableArray<ciField*>* _non_static_fields;
kvn@479 75
duke@435 76 protected:
duke@435 77 ciInstanceKlass(KlassHandle h_k);
duke@435 78 ciInstanceKlass(ciSymbol* name, jobject loader, jobject protection_domain);
duke@435 79
duke@435 80 instanceKlass* get_instanceKlass() const {
duke@435 81 return (instanceKlass*)get_Klass();
duke@435 82 }
duke@435 83
duke@435 84 oop loader();
duke@435 85 jobject loader_handle();
duke@435 86
duke@435 87 oop protection_domain();
duke@435 88 jobject protection_domain_handle();
duke@435 89
duke@435 90 const char* type_string() { return "ciInstanceKlass"; }
duke@435 91
twisti@1573 92 bool is_in_package_impl(const char* packagename, int len);
twisti@1573 93
duke@435 94 void print_impl(outputStream* st);
duke@435 95
duke@435 96 ciConstantPoolCache* field_cache();
duke@435 97
duke@435 98 bool is_shared() { return _is_shared; }
duke@435 99
never@2000 100 void compute_shared_init_state();
duke@435 101 bool compute_shared_has_subklass();
duke@435 102 int compute_nonstatic_fields();
duke@435 103 GrowableArray<ciField*>* compute_nonstatic_fields_impl(GrowableArray<ciField*>* super_fields);
duke@435 104
never@2000 105 // Update the init_state for shared klasses
never@2000 106 void update_if_shared(instanceKlass::ClassState expected) {
never@2000 107 if (_is_shared && _init_state != expected) {
never@2000 108 if (is_loaded()) compute_shared_init_state();
never@2000 109 }
never@2000 110 }
never@2000 111
duke@435 112 public:
duke@435 113 // Has this klass been initialized?
duke@435 114 bool is_initialized() {
never@2000 115 update_if_shared(instanceKlass::fully_initialized);
never@2000 116 return _init_state == instanceKlass::fully_initialized;
never@2000 117 }
never@2000 118 // Is this klass being initialized?
never@2000 119 bool is_being_initialized() {
never@2000 120 update_if_shared(instanceKlass::being_initialized);
never@2000 121 return _init_state == instanceKlass::being_initialized;
duke@435 122 }
duke@435 123 // Has this klass been linked?
duke@435 124 bool is_linked() {
never@2000 125 update_if_shared(instanceKlass::linked);
never@2000 126 return _init_state >= instanceKlass::linked;
duke@435 127 }
duke@435 128
duke@435 129 // General klass information.
duke@435 130 ciFlags flags() {
duke@435 131 assert(is_loaded(), "must be loaded");
duke@435 132 return _flags;
duke@435 133 }
duke@435 134 bool has_finalizer() {
duke@435 135 assert(is_loaded(), "must be loaded");
duke@435 136 return _has_finalizer; }
duke@435 137 bool has_subklass() {
duke@435 138 assert(is_loaded(), "must be loaded");
duke@435 139 if (_is_shared && !_has_subklass) {
duke@435 140 if (flags().is_final()) {
duke@435 141 return false;
duke@435 142 } else {
duke@435 143 return compute_shared_has_subklass();
duke@435 144 }
duke@435 145 }
duke@435 146 return _has_subklass;
duke@435 147 }
duke@435 148 jint size_helper() {
duke@435 149 return (Klass::layout_helper_size_in_bytes(layout_helper())
duke@435 150 >> LogHeapWordSize);
duke@435 151 }
duke@435 152 jint nonstatic_field_size() {
duke@435 153 assert(is_loaded(), "must be loaded");
duke@435 154 return _nonstatic_field_size; }
coleenp@548 155 jint has_nonstatic_fields() {
coleenp@548 156 assert(is_loaded(), "must be loaded");
coleenp@548 157 return _has_nonstatic_fields; }
kvn@479 158 jint nonstatic_oop_map_size() {
kvn@479 159 assert(is_loaded(), "must be loaded");
kvn@479 160 return _nonstatic_oop_map_size; }
duke@435 161 ciInstanceKlass* super();
jiangli@3701 162 jint nof_implementors() {
jiangli@3701 163 ciInstanceKlass* impl;
duke@435 164 assert(is_loaded(), "must be loaded");
jiangli@3701 165 impl = implementor();
jiangli@3701 166 if (impl == NULL) {
jiangli@3701 167 return 0;
jiangli@3701 168 } else if (impl != this) {
jiangli@3701 169 return 1;
jiangli@3701 170 } else {
jiangli@3701 171 return 2;
jiangli@3701 172 }
duke@435 173 }
duke@435 174
duke@435 175 ciInstanceKlass* get_canonical_holder(int offset);
duke@435 176 ciField* get_field_by_offset(int field_offset, bool is_static);
never@1515 177 ciField* get_field_by_name(ciSymbol* name, ciSymbol* signature, bool is_static);
kvn@479 178
kvn@479 179 GrowableArray<ciField*>* non_static_fields();
kvn@479 180
duke@435 181 // total number of nonstatic fields (including inherited):
duke@435 182 int nof_nonstatic_fields() {
duke@435 183 if (_nonstatic_fields == NULL)
duke@435 184 return compute_nonstatic_fields();
duke@435 185 else
duke@435 186 return _nonstatic_fields->length();
duke@435 187 }
duke@435 188 // nth nonstatic field (presented by ascending address)
duke@435 189 ciField* nonstatic_field_at(int i) {
duke@435 190 assert(_nonstatic_fields != NULL, "");
duke@435 191 return _nonstatic_fields->at(i);
duke@435 192 }
duke@435 193
duke@435 194 ciInstanceKlass* unique_concrete_subklass();
duke@435 195 bool has_finalizable_subclass();
duke@435 196
duke@435 197 bool contains_field_offset(int offset) {
coleenp@548 198 return instanceOopDesc::contains_field_offset(offset, nonstatic_field_size());
duke@435 199 }
duke@435 200
duke@435 201 // Get the instance of java.lang.Class corresponding to
duke@435 202 // this klass. This instance is used for locking of
duke@435 203 // synchronized static methods of this klass.
duke@435 204 ciInstance* java_mirror();
duke@435 205
duke@435 206 // Java access flags
duke@435 207 bool is_public () { return flags().is_public(); }
duke@435 208 bool is_final () { return flags().is_final(); }
duke@435 209 bool is_super () { return flags().is_super(); }
duke@435 210 bool is_interface () { return flags().is_interface(); }
duke@435 211 bool is_abstract () { return flags().is_abstract(); }
duke@435 212
duke@435 213 ciMethod* find_method(ciSymbol* name, ciSymbol* signature);
duke@435 214 // Note: To find a method from name and type strings, use ciSymbol::make,
duke@435 215 // but consider adding to vmSymbols.hpp instead.
duke@435 216
duke@435 217 bool is_leaf_type();
jiangli@3701 218 ciInstanceKlass* implementor();
duke@435 219
duke@435 220 // Is the defining class loader of this class the default loader?
duke@435 221 bool uses_default_loader();
duke@435 222
duke@435 223 bool is_java_lang_Object();
duke@435 224
twisti@1573 225 // Is this klass in the given package?
twisti@1573 226 bool is_in_package(const char* packagename) {
twisti@1573 227 return is_in_package(packagename, (int) strlen(packagename));
twisti@1573 228 }
twisti@1573 229 bool is_in_package(const char* packagename, int len);
twisti@1573 230
duke@435 231 // What kind of ciObject is this?
duke@435 232 bool is_instance_klass() { return true; }
duke@435 233 bool is_java_klass() { return true; }
duke@435 234 };
stefank@2314 235
stefank@2314 236 #endif // SHARE_VM_CI_CIINSTANCEKLASS_HPP

mercurial