2
* Copyright (c) 2003, 2023, 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.
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.
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).
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.
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
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"
43
const char *BytecodeInterpreter::name_of_field_at_address(address addr) {
44
#define DO(member) {if (addr == (address) &(member)) return XSTR(member);}
61
if (addr > (address) &_result && addr < (address) (&_result + 1))
66
void BytecodeInterpreter::layout_interpreterState(interpreterState istate,
73
intptr_t* monitor_base,
74
intptr_t* frame_bottom,
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(nullptr);
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(nullptr);
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);
93
prev->set_bcp_advance(3);
95
istate->set_callee(nullptr);
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);