annotate src/share/vm/runtime/registerMap.hpp @ 10292:acac2b03a07f

8014765: VM exits if MaxTenuringThreshold is set below the default InitialTenuringThreshold, and InitialTenuringThreshold is not set Summary: The VM exits when the condition in the subject line applies. The fix sets InitialTenuringThreshold to MaxTenuringThreshold if it is larger than MaxTenuringThreshold and InitialTenuringThreshold has not been set (is default). Reviewed-by: jwilhelm, jmasa, brutisso, johnc
author tschatzl
date Thu, 16 May 2013 23:51:51 +0200
parents 1d1603768966
children 63a4eb8bcd23
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2192
diff changeset
2 * Copyright (c) 2002, 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: 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_REGISTERMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_REGISTERMAP_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 "code/vmreg.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "utilities/globalDefinitions.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #ifdef TARGET_ARCH_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 # include "register_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #ifdef TARGET_ARCH_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 # include "register_sparc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #ifdef TARGET_ARCH_zero
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 # include "register_zero.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 #endif
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
39 #ifdef TARGET_ARCH_arm
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
40 # include "register_arm.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
41 #endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
42 #ifdef TARGET_ARCH_ppc
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
43 # include "register_ppc.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
44 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
45
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46 class JavaThread;
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 //
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // RegisterMap
a61af66fc99e Initial load
duke
parents:
diff changeset
50 //
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // A companion structure used for stack traversal. The RegisterMap contains
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // misc. information needed in order to do correct stack traversal of stack
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // frames. Hence, it must always be passed in as an argument to
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // frame::sender(RegisterMap*).
a61af66fc99e Initial load
duke
parents:
diff changeset
55 //
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // In particular,
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // 1) It provides access to the thread for which the stack belongs. The
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // thread object is needed in order to get sender of a deoptimized frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 //
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // 2) It is used to pass information from a callee frame to its caller
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // frame about how the frame should be traversed. This is used to let
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // the caller frame take care of calling oops-do of out-going
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // arguments, when the callee frame is not instantiated yet. This
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // happens, e.g., when a compiled frame calls into
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // resolve_virtual_call. (Hence, it is critical that the same
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // RegisterMap object is used for the entire stack walk. Normally,
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // this is hidden by using the StackFrameStream.) This is used when
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // doing follow_oops and oops_do.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 //
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // 3) The RegisterMap keeps track of the values of callee-saved registers
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // from frame to frame (hence, the name). For some stack traversal the
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // values of the callee-saved registers does not matter, e.g., if you
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // only need the static properies such as frame type, pc, and such.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Updating of the RegisterMap can be turned off by instantiating the
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // register map as: RegisterMap map(thread, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 class RegisterMap : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 typedef julong LocationValidType;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 reg_count = ConcreteRegisterImpl::number_of_registers,
a61af66fc99e Initial load
duke
parents:
diff changeset
82 location_valid_type_size = sizeof(LocationValidType)*8,
a61af66fc99e Initial load
duke
parents:
diff changeset
83 location_valid_size = (reg_count+location_valid_type_size-1)/location_valid_type_size
a61af66fc99e Initial load
duke
parents:
diff changeset
84 };
a61af66fc99e Initial load
duke
parents:
diff changeset
85 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
86 intptr_t* _location[reg_count]; // Location of registers (intptr_t* looks better than address in the debugger)
a61af66fc99e Initial load
duke
parents:
diff changeset
87 LocationValidType _location_valid[location_valid_size];
a61af66fc99e Initial load
duke
parents:
diff changeset
88 bool _include_argument_oops; // Should include argument_oop marked locations for compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
89 JavaThread* _thread; // Reference to current thread
a61af66fc99e Initial load
duke
parents:
diff changeset
90 bool _update_map; // Tells if the register map need to be
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // updated when traversing the stack
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
94 void check_location_valid();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void check_location_valid() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
97 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
100 debug_only(intptr_t* _update_for_id;) // Assert that RegisterMap is not updated twice for same frame
a61af66fc99e Initial load
duke
parents:
diff changeset
101 RegisterMap(JavaThread *thread, bool update_map = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 RegisterMap(const RegisterMap* map);
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 address location(VMReg reg) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 int index = reg->value() / location_valid_type_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 assert(0 <= reg->value() && reg->value() < reg_count, "range check");
a61af66fc99e Initial load
duke
parents:
diff changeset
107 assert(0 <= index && index < location_valid_size, "range check");
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if (_location_valid[index] & ((LocationValidType)1 << (reg->value() % location_valid_type_size))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return (address) _location[reg->value()];
a61af66fc99e Initial load
duke
parents:
diff changeset
110 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 return pd_location(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void set_location(VMReg reg, address loc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 int index = reg->value() / location_valid_type_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert(0 <= reg->value() && reg->value() < reg_count, "range check");
a61af66fc99e Initial load
duke
parents:
diff changeset
118 assert(0 <= index && index < location_valid_size, "range check");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 assert(_update_map, "updating map that does not need updating");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _location[reg->value()] = (intptr_t*) loc;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 _location_valid[index] |= ((LocationValidType)1 << (reg->value() % location_valid_type_size));
a61af66fc99e Initial load
duke
parents:
diff changeset
122 check_location_valid();
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Called by an entry frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
126 void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 bool include_argument_oops() const { return _include_argument_oops; }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void set_include_argument_oops(bool f) { _include_argument_oops = f; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 JavaThread *thread() const { return _thread; }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 bool update_map() const { return _update_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void print() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // the following contains the definition of pd_xxx methods
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
138 #ifdef TARGET_ARCH_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
139 # include "registerMap_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
140 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
141 #ifdef TARGET_ARCH_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
142 # include "registerMap_sparc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
143 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
144 #ifdef TARGET_ARCH_zero
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
145 # include "registerMap_zero.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
146 #endif
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
147 #ifdef TARGET_ARCH_arm
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
148 # include "registerMap_arm.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
149 #endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
150 #ifdef TARGET_ARCH_ppc
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
151 # include "registerMap_ppc.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
152 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
153
0
a61af66fc99e Initial load
duke
parents:
diff changeset
154 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
155
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
156 #endif // SHARE_VM_RUNTIME_REGISTERMAP_HPP