Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/cpu/s390/compiledIC_s390.cpp
40930 views
1
/*
2
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
3
* Copyright (c) 2016, 2019 SAP SE. All rights reserved.
4
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
*
6
* This code is free software; you can redistribute it and/or modify it
7
* under the terms of the GNU General Public License version 2 only, as
8
* published by the Free Software Foundation.
9
*
10
* This code is distributed in the hope that it will be useful, but WITHOUT
11
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13
* version 2 for more details (a copy is included in the LICENSE file that
14
* accompanied this code).
15
*
16
* You should have received a copy of the GNU General Public License version
17
* 2 along with this work; if not, write to the Free Software Foundation,
18
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
*
20
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21
* or visit www.oracle.com if you need additional information or have any
22
* questions.
23
*
24
*/
25
26
#include "precompiled.hpp"
27
#include "asm/macroAssembler.inline.hpp"
28
#include "code/compiledIC.hpp"
29
#include "code/icBuffer.hpp"
30
#include "code/nmethod.hpp"
31
#include "memory/resourceArea.hpp"
32
#include "runtime/mutexLocker.hpp"
33
#include "runtime/safepoint.hpp"
34
#ifdef COMPILER2
35
#include "opto/matcher.hpp"
36
#endif
37
38
// ----------------------------------------------------------------------------
39
40
#undef __
41
#define __ _masm.
42
43
address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark/* = NULL*/) {
44
#ifdef COMPILER2
45
// Stub is fixed up when the corresponding call is converted from calling
46
// compiled code to calling interpreted code.
47
if (mark == NULL) {
48
// Get the mark within main instrs section which is set to the address of the call.
49
mark = cbuf.insts_mark();
50
}
51
assert(mark != NULL, "mark must not be NULL");
52
53
// Note that the code buffer's insts_mark is always relative to insts.
54
// That's why we must use the macroassembler to generate a stub.
55
MacroAssembler _masm(&cbuf);
56
57
address stub = __ start_a_stub(CompiledStaticCall::to_interp_stub_size());
58
if (stub == NULL) {
59
return NULL; // CodeBuffer::expand failed.
60
}
61
__ relocate(static_stub_Relocation::spec(mark));
62
63
AddressLiteral meta = __ allocate_metadata_address(NULL);
64
bool success = __ load_const_from_toc(as_Register(Matcher::inline_cache_reg_encode()), meta);
65
66
__ set_inst_mark();
67
AddressLiteral a((address)-1);
68
success = success && __ load_const_from_toc(Z_R1, a);
69
if (!success) {
70
return NULL; // CodeCache is full.
71
}
72
73
__ z_br(Z_R1);
74
__ end_a_stub(); // Update current stubs pointer and restore insts_end.
75
return stub;
76
#else
77
ShouldNotReachHere();
78
return NULL;
79
#endif
80
}
81
82
#undef __
83
84
int CompiledStaticCall::to_interp_stub_size() {
85
return 2 * MacroAssembler::load_const_from_toc_size() +
86
2; // branch
87
}
88
89
// Relocation entries for call stub, compiled java to interpreter.
90
int CompiledStaticCall::reloc_to_interp_stub() {
91
return 5; // 4 in emit_java_to_interp + 1 in Java_Static_Call
92
}
93
94
void CompiledDirectStaticCall::set_to_interpreted(const methodHandle& callee, address entry) {
95
address stub = find_stub();
96
guarantee(stub != NULL, "stub not found");
97
98
if (TraceICs) {
99
ResourceMark rm;
100
tty->print_cr("CompiledDirectStaticCall@" INTPTR_FORMAT ": set_to_interpreted %s",
101
p2i(instruction_address()),
102
callee->name_and_sig_as_C_string());
103
}
104
105
// Creation also verifies the object.
106
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub + NativeCall::get_IC_pos_in_java_to_interp_stub());
107
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address());
108
verify_mt_safe(callee, entry, method_holder, jump);
109
110
// Update stub.
111
method_holder->set_data((intptr_t)callee(), relocInfo::metadata_type);
112
jump->set_jump_destination(entry);
113
114
// Update jump to call.
115
set_destination_mt_safe(stub);
116
}
117
118
void CompiledDirectStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) {
119
// Reset stub.
120
address stub = static_stub->addr();
121
assert(stub != NULL, "stub not found");
122
assert(CompiledICLocker::is_safe(stub), "mt unsafe call");
123
// Creation also verifies the object.
124
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub + NativeCall::get_IC_pos_in_java_to_interp_stub());
125
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address());
126
method_holder->set_data(0, relocInfo::metadata_type);
127
jump->set_jump_destination((address)-1);
128
}
129
130
//-----------------------------------------------------------------------------
131
132
#ifndef PRODUCT
133
134
void CompiledDirectStaticCall::verify() {
135
// Verify call.
136
_call->verify();
137
_call->verify_alignment();
138
139
// Verify stub.
140
address stub = find_stub();
141
assert(stub != NULL, "no stub found for static call");
142
// Creation also verifies the object.
143
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub + NativeCall::get_IC_pos_in_java_to_interp_stub());
144
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address());
145
146
// Verify state.
147
assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted(), "sanity check");
148
}
149
150
#endif // !PRODUCT
151
152