annotate src/share/vm/ci/ciKlass.hpp @ 9126:bc26f978b0ce

HotSpotResolvedObjectType: implement hasFinalizeSubclass() correctly don't use the (wrong) cached value, but ask the runtime on each request. Fixes regression on xml.* benchmarks @ specjvm2008. The problem was: After the constructor of Object was deoptimized due to an assumption violation, it was recompiled again after some time. However, on recompilation, the value of hasFinalizeSubclass for the class was not updated and it was compiled again with a, now wrong, assumption, which then triggers deoptimization again. This was repeated until it hit the recompilation limit (defined by PerMethodRecompilationCutoff), and therefore only executed by the interpreter from now on, causing the performance regression.
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 15 Apr 2013 19:54:58 +0200
parents d8ce2825b193
children d13d7aba8c12
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
2 * Copyright (c) 1999, 2012, 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: 1138
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
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: 1138
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: 1552
diff changeset
25 #ifndef SHARE_VM_CI_CIKLASS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_CI_CIKLASS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "ci/ciType.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // ciKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
31 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
32 // This class and its subclasses represent Klass*s in the
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
33 // HotSpot virtual machine. In the vm, each Klass* contains an
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // embedded Klass object. ciKlass is subclassed to explicitly
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
35 // represent the kind of Klass embedded in the Klass*. For
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
36 // example, a Klass* with an embedded ObjArrayKlass object is
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // represented in the ciObject hierarchy by the class
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // ciObjArrayKlass.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class ciKlass : public ciType {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 CI_PACKAGE_ACCESS
a61af66fc99e Initial load
duke
parents:
diff changeset
41 friend class ciEnv;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 friend class ciField;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 friend class ciMethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 friend class ciObjArrayKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
47 ciSymbol* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 jint _layout_helper;
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ciKlass(KlassHandle k_h, ciSymbol* name);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
52 ciKlass(ciSymbol* name, BasicType bt);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
54 Klass* get_Klass() const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
55 Klass* k = (Klass*)_metadata;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 assert(k != NULL, "illegal use of unloaded klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
57 return k;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Certain subklasses have an associated class loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 virtual oop loader() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 virtual jobject loader_handle() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 virtual oop protection_domain() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 virtual jobject protection_domain_handle() { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 const char* type_string() { return "ciKlass"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void print_impl(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ciKlass(KlassHandle k_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // What is the name of this klass?
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 0
diff changeset
75 ciSymbol* name() const { return _name; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // What is its layout helper value?
a61af66fc99e Initial load
duke
parents:
diff changeset
78 jint layout_helper() { return _layout_helper; }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 bool is_subtype_of(ciKlass* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 bool is_subclass_of(ciKlass* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 juint super_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
83 juint super_check_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 ciKlass* super_of_depth(juint i);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 bool can_be_primary_super();
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static juint primary_super_limit() { return Klass::primary_super_limit(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
88 // Is this ciObject the ciInstanceKlass representing java.lang.Object()?
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
89 virtual bool is_java_lang_Object() const { return false; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
90
0
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Get the shared parent of two klasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ciKlass* least_common_ancestor(ciKlass* k);
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 virtual bool is_interface() {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 virtual bool is_abstract() {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Does this type (array, class, interface) have no subtypes?
a61af66fc99e Initial load
duke
parents:
diff changeset
103 virtual bool is_leaf_type() {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Attempt to get a klass using this ciKlass's loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
108 ciKlass* find_klass(ciSymbol* klass_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Note: To find a class from its name string, use ciSymbol::make,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // but consider adding to vmSymbols.hpp instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Get the instance of java.lang.Class corresponding to this klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
113 ciInstance* java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Fetch Klass::modifier_flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 jint modifier_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // Fetch Klass::access_flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
119 jint access_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // What kind of ciObject is this?
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
122 bool is_klass() const { return true; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void print_name_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
126
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
127 #endif // SHARE_VM_CI_CIKLASS_HPP