Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/interpreter/interpreter.cpp
40949 views
1
/*
2
* Copyright (c) 1997, 2020, 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
#include "precompiled.hpp"
26
#include "asm/macroAssembler.hpp"
27
#include "asm/macroAssembler.inline.hpp"
28
#include "compiler/disassembler.hpp"
29
#include "interpreter/interpreter.hpp"
30
#include "interpreter/interpreterRuntime.hpp"
31
#include "interpreter/interp_masm.hpp"
32
#include "interpreter/templateTable.hpp"
33
#include "memory/allocation.inline.hpp"
34
#include "memory/resourceArea.hpp"
35
#include "oops/arrayOop.hpp"
36
#include "oops/methodData.hpp"
37
#include "oops/method.hpp"
38
#include "oops/oop.inline.hpp"
39
#include "prims/forte.hpp"
40
#include "prims/jvmtiExport.hpp"
41
#include "prims/methodHandles.hpp"
42
#include "runtime/handles.inline.hpp"
43
#include "runtime/sharedRuntime.hpp"
44
#include "runtime/stubRoutines.hpp"
45
#include "runtime/timer.hpp"
46
47
# define __ _masm->
48
49
50
//------------------------------------------------------------------------------------------------------------------------
51
// Implementation of InterpreterCodelet
52
53
void InterpreterCodelet::initialize(const char* description, Bytecodes::Code bytecode) {
54
_description = description;
55
_bytecode = bytecode;
56
}
57
58
59
void InterpreterCodelet::verify() {
60
}
61
62
63
void InterpreterCodelet::print_on(outputStream* st) const {
64
ttyLocker ttyl;
65
66
if (PrintInterpreter) {
67
st->cr();
68
st->print_cr("----------------------------------------------------------------------");
69
}
70
71
if (description() != NULL) st->print("%s ", description());
72
if (bytecode() >= 0 ) st->print("%d %s ", bytecode(), Bytecodes::name(bytecode()));
73
st->print_cr("[" INTPTR_FORMAT ", " INTPTR_FORMAT "] %d bytes",
74
p2i(code_begin()), p2i(code_end()), code_size());
75
76
if (PrintInterpreter) {
77
st->cr();
78
Disassembler::decode(code_begin(), code_end(), st DEBUG_ONLY(COMMA &_strings));
79
}
80
}
81
82
void InterpreterCodelet::print() const { print_on(tty); }
83
84
CodeletMark::CodeletMark(InterpreterMacroAssembler*& masm,
85
const char* description,
86
Bytecodes::Code bytecode) :
87
_clet((InterpreterCodelet*)AbstractInterpreter::code()->request(codelet_size())),
88
_cb(_clet->code_begin(), _clet->code_size()) {
89
// Request all space (add some slack for Codelet data).
90
assert(_clet != NULL, "we checked not enough space already");
91
92
// Initialize Codelet attributes.
93
_clet->initialize(description, bytecode);
94
// Create assembler for code generation.
95
masm = new InterpreterMacroAssembler(&_cb);
96
_masm = &masm;
97
}
98
99
CodeletMark::~CodeletMark() {
100
// Align so printing shows nop's instead of random code at the end (Codelets are aligned).
101
(*_masm)->align(wordSize);
102
// Make sure all code is in code buffer.
103
(*_masm)->flush();
104
105
// Commit Codelet.
106
int committed_code_size = (*_masm)->code()->pure_insts_size();
107
if (committed_code_size) {
108
CodeStrings cs NOT_PRODUCT(= (*_masm)->code()->strings());
109
AbstractInterpreter::code()->commit(committed_code_size, cs);
110
}
111
// Make sure nobody can use _masm outside a CodeletMark lifespan.
112
*_masm = NULL;
113
}
114
115
// The reason that interpreter initialization is split into two parts is that the first part
116
// needs to run before methods are loaded (which with CDS implies linked also), and the other
117
// part needs to run after. The reason is that when methods are loaded (with CDS) or linked
118
// (without CDS), the i2c adapters are generated that assert we are currently in the interpreter.
119
// Asserting that requires knowledge about where the interpreter is in memory. Therefore,
120
// establishing the interpreter address must be done before methods are loaded. However,
121
// we would like to actually generate the interpreter after methods are loaded. That allows
122
// us to remove otherwise hardcoded offsets regarding fields that are needed in the interpreter
123
// code. This leads to a split if 1. reserving the memory for the interpreter, 2. loading methods
124
// and 3. generating the interpreter.
125
void interpreter_init_stub() {
126
Interpreter::initialize_stub();
127
}
128
129
void interpreter_init_code() {
130
Interpreter::initialize_code();
131
#ifndef PRODUCT
132
if (TraceBytecodes) BytecodeTracer::set_closure(BytecodeTracer::std_closure());
133
#endif // PRODUCT
134
// need to hit every safepoint in order to call zapping routine
135
// register the interpreter
136
Forte::register_stub(
137
"Interpreter",
138
AbstractInterpreter::code()->code_start(),
139
AbstractInterpreter::code()->code_end()
140
);
141
142
// notify JVMTI profiler
143
if (JvmtiExport::should_post_dynamic_code_generated()) {
144
JvmtiExport::post_dynamic_code_generated("Interpreter",
145
AbstractInterpreter::code()->code_start(),
146
AbstractInterpreter::code()->code_end());
147
}
148
}
149
150