Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/cpu/zero/bytecodeInterpreter_zero.cpp
40931 views
1
/*
2
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
3
* Copyright 2008 Red Hat, Inc.
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/assembler.hpp"
28
#include "interpreter/interpreter.hpp"
29
#include "interpreter/interpreterRuntime.hpp"
30
#include "interpreter/zero/bytecodeInterpreter.inline.hpp"
31
#include "oops/klass.inline.hpp"
32
#include "oops/methodData.hpp"
33
#include "oops/method.hpp"
34
#include "oops/oop.inline.hpp"
35
#include "runtime/deoptimization.hpp"
36
#include "runtime/frame.inline.hpp"
37
#include "runtime/sharedRuntime.hpp"
38
#include "runtime/stubRoutines.hpp"
39
#include "runtime/synchronizer.hpp"
40
#include "runtime/vframeArray.hpp"
41
#include "utilities/debug.hpp"
42
43
const char *BytecodeInterpreter::name_of_field_at_address(address addr) {
44
#define DO(member) {if (addr == (address) &(member)) return XSTR(member);}
45
DO(_thread);
46
DO(_bcp);
47
DO(_locals);
48
DO(_constants);
49
DO(_method);
50
DO(_mirror);
51
DO(_stack);
52
DO(_msg);
53
DO(_result);
54
DO(_prev_link);
55
DO(_oop_temp);
56
DO(_stack_base);
57
DO(_stack_limit);
58
DO(_monitor_base);
59
DO(_self_link);
60
#undef DO
61
if (addr > (address) &_result && addr < (address) (&_result + 1))
62
return "_result)";
63
return NULL;
64
}
65
66
void BytecodeInterpreter::layout_interpreterState(interpreterState istate,
67
frame* caller,
68
frame* current,
69
Method* method,
70
intptr_t* locals,
71
intptr_t* stack,
72
intptr_t* stack_base,
73
intptr_t* monitor_base,
74
intptr_t* frame_bottom,
75
bool is_top_frame) {
76
istate->set_locals(locals);
77
istate->set_method(method);
78
istate->set_mirror(method->method_holder()->java_mirror());
79
istate->set_self_link(istate);
80
istate->set_prev_link(NULL);
81
// thread will be set by a hacky repurposing of frame::patch_pc()
82
// bcp will be set by vframeArrayElement::unpack_on_stack()
83
istate->set_constants(method->constants()->cache());
84
istate->set_msg(BytecodeInterpreter::method_resume);
85
istate->set_bcp_advance(0);
86
istate->set_oop_temp(NULL);
87
if (caller->is_interpreted_frame()) {
88
interpreterState prev = caller->get_interpreterState();
89
prev->set_callee(method);
90
if (*prev->bcp() == Bytecodes::_invokeinterface)
91
prev->set_bcp_advance(5);
92
else
93
prev->set_bcp_advance(3);
94
}
95
istate->set_callee(NULL);
96
istate->set_monitor_base((BasicObjectLock *) monitor_base);
97
istate->set_stack_base(stack_base);
98
istate->set_stack(stack);
99
istate->set_stack_limit(stack_base - method->max_stack() - 1);
100
}
101
102