annotate src/share/vm/ci/ciKlass.hpp @ 666:ebebd376f657

6805522: Server VM fails with assertion (block1->start() != block2->start(),"successors have unique bcis") Reviewed-by: kvn
author never
date Mon, 23 Mar 2009 13:58:58 -0700
parents a61af66fc99e
children dd57230ba8fe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // ciKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
26 //
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // This class and its subclasses represent klassOops in the
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // HotSpot virtual machine. In the vm, each klassOop contains an
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // embedded Klass object. ciKlass is subclassed to explicitly
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // represent the kind of Klass embedded in the klassOop. For
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // example, a klassOop with an embedded objArrayKlass object is
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // represented in the ciObject hierarchy by the class
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // ciObjArrayKlass.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class ciKlass : public ciType {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 CI_PACKAGE_ACCESS
a61af66fc99e Initial load
duke
parents:
diff changeset
36 friend class ciEnv;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 friend class ciField;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 friend class ciMethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 friend class ciObjArrayKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 ciSymbol* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 jint _layout_helper;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ciKlass(KlassHandle k_h, ciSymbol* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
47 ciKlass(ciSymbol* name, ciKlass* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 klassOop get_klassOop() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 klassOop k = (klassOop)get_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
51 assert(k != NULL, "illegal use of unloaded klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
52 return k;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 Klass* get_Klass() const { return get_klassOop()->klass_part(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Certain subklasses have an associated class loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 virtual oop loader() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 virtual jobject loader_handle() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 virtual oop protection_domain() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 virtual jobject protection_domain_handle() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 const char* type_string() { return "ciKlass"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void print_impl(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ciKlass(KlassHandle k_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // What is the name of this klass?
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ciSymbol* name() { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // What is its layout helper value?
a61af66fc99e Initial load
duke
parents:
diff changeset
75 jint layout_helper() { return _layout_helper; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 bool is_subtype_of(ciKlass* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 bool is_subclass_of(ciKlass* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 juint super_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 juint super_check_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ciKlass* super_of_depth(juint i);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 bool can_be_primary_super();
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static juint primary_super_limit() { return Klass::primary_super_limit(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // Get the shared parent of two klasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
86 ciKlass* least_common_ancestor(ciKlass* k);
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 virtual bool is_interface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 virtual bool is_abstract() {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Does this type (array, class, interface) have no subtypes?
a61af66fc99e Initial load
duke
parents:
diff changeset
97 virtual bool is_leaf_type() {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Attempt to get a klass using this ciKlass's loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ciKlass* find_klass(ciSymbol* klass_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Note: To find a class from its name string, use ciSymbol::make,
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // but consider adding to vmSymbols.hpp instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Get the instance of java.lang.Class corresponding to this klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
107 ciInstance* java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Fetch Klass::modifier_flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 jint modifier_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Fetch Klass::access_flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
113 jint access_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // What kind of ciObject is this?
a61af66fc99e Initial load
duke
parents:
diff changeset
116 bool is_klass() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void print_name_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 };