Skip to content

Commit fe61183

Browse files
stefankpron
authored andcommittedMar 18, 2022
Move inlined functions
1 parent 5fcf720 commit fe61183

10 files changed

+84
-38
lines changed
 

‎src/hotspot/share/oops/instanceStackChunkKlass.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#include "runtime/continuation.hpp"
4949
#include "runtime/globals.hpp"
5050
#include "runtime/orderAccess.hpp"
51-
#include "utilities/bitMap.hpp"
51+
#include "utilities/bitMap.inline.hpp"
5252
#include "utilities/copy.hpp"
5353
#include "utilities/globalDefinitions.hpp"
5454
#include "utilities/macros.hpp"

‎src/hotspot/share/runtime/continuation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#include "oops/instanceStackChunkKlass.inline.hpp"
4747
#include "oops/oopsHierarchy.hpp"
4848
#include "oops/objArrayOop.inline.hpp"
49-
#include "oops/stackChunkOop.hpp"
49+
#include "oops/stackChunkOop.inline.hpp"
5050
#include "oops/weakHandle.inline.hpp"
5151
#include "prims/jvmtiDeferredUpdates.hpp"
5252
#include "prims/jvmtiThreadState.hpp"

‎src/hotspot/share/runtime/deoptimization.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
#include "runtime/sharedRuntime.hpp"
7373
#include "runtime/signature.hpp"
7474
#include "runtime/stackFrameStream.inline.hpp"
75+
#include "runtime/stackValue.inline.hpp"
7576
#include "runtime/stackWatermarkSet.hpp"
7677
#include "runtime/stubRoutines.hpp"
7778
#include "runtime/thread.hpp"

‎src/hotspot/share/runtime/frame.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#include "oops/method.hpp"
4242
#include "oops/methodData.hpp"
4343
#include "oops/oop.inline.hpp"
44+
#include "oops/stackChunkOop.inline.hpp"
4445
#include "oops/verifyOopClosure.hpp"
4546
#include "prims/methodHandles.hpp"
4647
#include "runtime/continuation.hpp"

‎src/hotspot/share/runtime/frame_helpers.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include "compiler/oopMap.hpp"
3232
#include "compiler/oopMap.inline.hpp"
3333
#include "runtime/frame.inline.hpp"
34-
#include "runtime/stackValue.hpp"
34+
#include "runtime/stackValue.inline.hpp"
3535
#include "utilities/macros.hpp"
3636

3737
// Helper, all-static, classes for working with frames

‎src/hotspot/share/runtime/stackValue.hpp

+6-34
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,12 @@
2525
#ifndef SHARE_RUNTIME_STACKVALUE_HPP
2626
#define SHARE_RUNTIME_STACKVALUE_HPP
2727

28-
#include "code/debugInfo.hpp"
2928
#include "code/location.hpp"
30-
#include "oops/instanceStackChunkKlass.inline.hpp"
3129
#include "runtime/handles.hpp"
3230

3331
class BasicLock;
3432
class RegisterMap;
33+
class ScopeValue;
3534

3635
class StackValue : public ResourceObj {
3736
private:
@@ -111,47 +110,20 @@ class StackValue : public ResourceObj {
111110
static BasicLock* resolve_monitor_lock(const frame* fr, Location location);
112111

113112
template<typename RegisterMapT>
114-
static StackValue* create_stack_value(const frame* fr, const RegisterMapT* reg_map, ScopeValue* sv) {
115-
return create_stack_value(sv, stack_value_address(fr, reg_map, sv), reg_map);
116-
}
113+
static StackValue* create_stack_value(const frame* fr, const RegisterMapT* reg_map, ScopeValue* sv);
117114

118115
template<typename RegisterMapT>
119-
static address stack_value_address(const frame* fr, const RegisterMapT* reg_map, ScopeValue* sv) {
120-
if (!sv->is_location())
121-
return NULL;
122-
Location loc = ((LocationValue *)sv)->location();
123-
if (loc.type() == Location::invalid)
124-
return NULL;
125-
126-
address value_addr;
127-
if (!reg_map->in_cont()) {
128-
value_addr = loc.is_register()
129-
// Value was in a callee-save register
130-
? reg_map->location(VMRegImpl::as_VMReg(loc.register_number()), fr->sp())
131-
// Else value was directly saved on the stack. The frame's original stack pointer,
132-
// before any extension by its callee (due to Compiler1 linkage on SPARC), must be used.
133-
: ((address)fr->unextended_sp()) + loc.stack_offset();
134-
135-
assert(value_addr == NULL || reg_map->thread() == NULL || reg_map->thread()->is_in_usable_stack(value_addr), INTPTR_FORMAT, p2i(value_addr));
136-
} else {
137-
value_addr = loc.is_register()
138-
? reg_map->as_RegisterMap()->stack_chunk()->reg_to_location(*fr, reg_map->as_RegisterMap(), VMRegImpl::as_VMReg(loc.register_number()))
139-
: reg_map->as_RegisterMap()->stack_chunk()->usp_offset_to_location(*fr, loc.stack_offset());
140-
141-
assert(value_addr == NULL || Continuation::is_in_usable_stack(value_addr, reg_map->as_RegisterMap()) || (reg_map->thread() != NULL && reg_map->thread()->is_in_usable_stack(value_addr)), INTPTR_FORMAT, p2i(value_addr));
142-
}
143-
return value_addr;
144-
}
116+
static address stack_value_address(const frame* fr, const RegisterMapT* reg_map, ScopeValue* sv);
145117

146118
#ifndef PRODUCT
147119
public:
148120
// Printing
149121
void print_on(outputStream* st) const;
150122
#endif
151123

152-
private:
153-
template<typename RegisterMapT>
154-
static StackValue* create_stack_value(ScopeValue* sv, address value_addr, const RegisterMapT* reg_map);
124+
private:
125+
template<typename RegisterMapT>
126+
static StackValue* create_stack_value(ScopeValue* sv, address value_addr, const RegisterMapT* reg_map);
155127
};
156128

157129
#endif // SHARE_RUNTIME_STACKVALUE_HPP
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*
23+
*/
24+
25+
#ifndef SHARE_RUNTIME_STACKVALUE_INLINE_HPP
26+
#define SHARE_RUNTIME_STACKVALUE_INLINE_HPP
27+
28+
#include "runtime/stackValue.hpp"
29+
30+
#include "code/debugInfo.hpp"
31+
#include "code/location.hpp"
32+
#include "runtime/continuation.hpp"
33+
#include "runtime/handles.hpp"
34+
#include "runtime/thread.hpp"
35+
36+
template<typename RegisterMapT>
37+
StackValue* StackValue::create_stack_value(const frame* fr, const RegisterMapT* reg_map, ScopeValue* sv) {
38+
return create_stack_value(sv, stack_value_address(fr, reg_map, sv), reg_map);
39+
}
40+
41+
template<typename RegisterMapT>
42+
address StackValue::stack_value_address(const frame* fr, const RegisterMapT* reg_map, ScopeValue* sv) {
43+
if (!sv->is_location()) {
44+
return NULL;
45+
}
46+
Location loc = ((LocationValue *)sv)->location();
47+
if (loc.type() == Location::invalid) {
48+
return NULL;
49+
}
50+
51+
if (!reg_map->in_cont()) {
52+
address value_addr = loc.is_register()
53+
// Value was in a callee-save register
54+
? reg_map->location(VMRegImpl::as_VMReg(loc.register_number()), fr->sp())
55+
// Else value was directly saved on the stack. The frame's original stack pointer,
56+
// before any extension by its callee (due to Compiler1 linkage on SPARC), must be used.
57+
: ((address)fr->unextended_sp()) + loc.stack_offset();
58+
59+
assert(value_addr == NULL || reg_map->thread() == NULL || reg_map->thread()->is_in_usable_stack(value_addr), INTPTR_FORMAT, p2i(value_addr));
60+
return value_addr;
61+
}
62+
63+
address value_addr = loc.is_register()
64+
? reg_map->as_RegisterMap()->stack_chunk()->reg_to_location(*fr, reg_map->as_RegisterMap(), VMRegImpl::as_VMReg(loc.register_number()))
65+
: reg_map->as_RegisterMap()->stack_chunk()->usp_offset_to_location(*fr, loc.stack_offset());
66+
67+
assert(value_addr == NULL || Continuation::is_in_usable_stack(value_addr, reg_map->as_RegisterMap()) || (reg_map->thread() != NULL && reg_map->thread()->is_in_usable_stack(value_addr)), INTPTR_FORMAT, p2i(value_addr));
68+
return value_addr;
69+
}
70+
71+
#endif // SHARE_RUNTIME_STACKVALUE_INLINE_HPP

‎src/hotspot/share/runtime/vframe.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ class vframe: public ResourceObj {
8282
const RegisterMap* register_map() const { return &_reg_map; }
8383
JavaThread* thread() const { return _thread; }
8484
stackChunkOop stack_chunk() const { return _chunk(); /*_reg_map.stack_chunk();*/ }
85-
oop continuation() const { return stack_chunk() != NULL ? stack_chunk()->cont() : (oop)NULL; }
8685

8786
// Returns the sender vframe
8887
virtual vframe* sender() const;

‎src/hotspot/share/runtime/vframe.inline.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "runtime/vframe.hpp"
2929

3030
#include "oops/instanceStackChunkKlass.inline.hpp"
31+
#include "oops/stackChunkOop.inline.hpp"
3132
#include "runtime/frame.inline.hpp"
3233
#include "runtime/handles.inline.hpp"
3334
#include "runtime/thread.inline.hpp"

‎src/hotspot/share/runtime/vframe_hp.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#include "runtime/monitorChunk.hpp"
4242
#include "runtime/registerMap.hpp"
4343
#include "runtime/signature.hpp"
44+
#include "runtime/stackValue.inline.hpp"
4445
#include "runtime/stubRoutines.hpp"
4546
#include "runtime/vframeArray.hpp"
4647
#include "runtime/vframe_hp.hpp"

0 commit comments

Comments
 (0)
Please sign in to comment.