annotate src/share/vm/runtime/vmStructs.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 8b46b0196eb0
children dffc37fa7157
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 7171
diff changeset
2 * Copyright (c) 2000, 2013, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
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_RUNTIME_VMSTRUCTS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_VMSTRUCTS_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 "utilities/debug.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #ifdef COMPILER1
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "c1/c1_Runtime1.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // This table encapsulates the debugging information required by the
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // serviceability agent in order to run. Specifically, we need to
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // understand the layout of certain C data structures (offsets, in
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // bytes, of their fields.)
a61af66fc99e Initial load
duke
parents:
diff changeset
37 //
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // There are alternatives for the design of this mechanism, including
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // parsing platform-specific debugging symbols from a debug build into
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // a program database. While this current mechanism can be considered
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // to be a workaround for the inability to debug arbitrary C and C++
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // programs at the present time, it does have certain advantages.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // First, it is platform-independent, which will vastly simplify the
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // initial bringup of the system both now and on future platforms.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // Second, it is embedded within the VM, as opposed to being in a
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // separate program database; experience has shown that whenever
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // portions of a system are decoupled, version skew is problematic.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // Third, generating a program database, for example for a product
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // build, would probably require two builds to be done: the desired
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // product build as well as an intermediary build with the PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // flag turned on but also compiled with -g, leading to a doubling of
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // the time required to get a serviceability agent-debuggable product
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // build. Fourth, and very significantly, this table probably
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // preserves more information about field types than stabs do; for
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // example, it preserves the fact that a field is a "jlong" rather
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // than transforming the type according to the typedef in jni_md.h,
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // which allows the Java-side code to identify "Java-sized" fields in
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // C++ data structures. If the symbol parsing mechanism was redone
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // using stabs, it might still be necessary to have a table somewhere
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // containing this information.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 //
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // Do not change the sizes or signedness of the integer values in
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // these data structures; they are fixed over in the serviceability
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // agent's Java code (for bootstrapping).
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 typedef struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 const char* typeName; // The type name containing the given field (example: "Klass")
a61af66fc99e Initial load
duke
parents:
diff changeset
68 const char* fieldName; // The field name within the type (example: "_name")
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
69 const char* typeString; // Quoted name of the type of this field (example: "Symbol*";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // parsed in Java to ensure type correctness
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int32_t isStatic; // Indicates whether following field is an offset or an address
a61af66fc99e Initial load
duke
parents:
diff changeset
72 uint64_t offset; // Offset of field within structure; only used for nonstatic fields
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void* address; // Address of field; only used for static fields
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // ("offset" can not be reused because of apparent SparcWorks compiler bug
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // in generation of initializer data)
a61af66fc99e Initial load
duke
parents:
diff changeset
76 } VMStructEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 typedef struct {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2426
diff changeset
79 const char* typeName; // Type name (example: "Method")
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 const char* superclassName; // Superclass name, or null if none (example: "oopDesc")
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2426
diff changeset
81 int32_t isOopType; // Does this type represent an oop typedef? (i.e., "Method*" or
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2426
diff changeset
82 // "Klass*", but NOT "Method")
0
a61af66fc99e Initial load
duke
parents:
diff changeset
83 int32_t isIntegerType; // Does this type represent an integer type (of arbitrary size)?
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int32_t isUnsigned; // If so, is it unsigned?
a61af66fc99e Initial load
duke
parents:
diff changeset
85 uint64_t size; // Size, in bytes, of the type
a61af66fc99e Initial load
duke
parents:
diff changeset
86 } VMTypeEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 typedef struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 const char* name; // Name of constant (example: "_thread_in_native")
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int32_t value; // Value of constant
a61af66fc99e Initial load
duke
parents:
diff changeset
91 } VMIntConstantEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 typedef struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 const char* name; // Name of constant (example: "_thread_in_native")
a61af66fc99e Initial load
duke
parents:
diff changeset
95 uint64_t value; // Value of constant
a61af66fc99e Initial load
duke
parents:
diff changeset
96 } VMLongConstantEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // This class is a friend of most classes, to be able to access
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // private fields
a61af66fc99e Initial load
duke
parents:
diff changeset
100 class VMStructs {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // The last entry is identified over in the serviceability agent by
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // the fact that it has a NULL fieldName
a61af66fc99e Initial load
duke
parents:
diff changeset
104 static VMStructEntry localHotSpotVMStructs[];
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // The last entry is identified over in the serviceability agent by
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // the fact that it has a NULL typeName
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static VMTypeEntry localHotSpotVMTypes[];
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // Table of integer constants required by the serviceability agent.
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // The last entry is identified over in the serviceability agent by
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // the fact that it has a NULL typeName
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static VMIntConstantEntry localHotSpotVMIntConstants[];
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Table of long constants required by the serviceability agent.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // The last entry is identified over in the serviceability agent by
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // the fact that it has a NULL typeName
a61af66fc99e Initial load
duke
parents:
diff changeset
118 static VMLongConstantEntry localHotSpotVMLongConstants[];
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // This is used to run any checking code necessary for validation of
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // the data structure (debug build only)
a61af66fc99e Initial load
duke
parents:
diff changeset
122 static void init();
a61af66fc99e Initial load
duke
parents:
diff changeset
123
7171
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6725
diff changeset
124 #ifndef PRODUCT
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6725
diff changeset
125 // Execute unit tests
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6725
diff changeset
126 static void test();
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6725
diff changeset
127 #endif
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6725
diff changeset
128
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Look up a type in localHotSpotVMTypes using strcmp() (debug build only).
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Returns 1 if found, 0 if not.
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // debug_only(static int findType(const char* typeName);)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 static int findType(const char* typeName);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
135
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
136 #endif // SHARE_VM_RUNTIME_VMSTRUCTS_HPP