author | stefank |
Thu, 09 May 2019 14:28:30 +0200 | |
changeset 54786 | ebf733a324d4 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
4013 | 1 |
/* |
35479
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
2 |
* Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved. |
4013 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
21 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
22 |
* questions. |
4013 | 23 |
* |
24 |
*/ |
|
25 |
||
7397 | 26 |
#include "precompiled.hpp" |
27 |
#include "asm/assembler.hpp" |
|
28 |
#include "interpreter/bytecodeInterpreter.hpp" |
|
29 |
#include "interpreter/bytecodeInterpreter.inline.hpp" |
|
30 |
#include "interpreter/interpreter.hpp" |
|
31 |
#include "interpreter/interpreterRuntime.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
32 |
#include "oops/methodData.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
33 |
#include "oops/method.hpp" |
7397 | 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" |
|
4013 | 42 |
|
43 |
#ifdef CC_INTERP |
|
44 |
||
45 |
const char *BytecodeInterpreter::name_of_field_at_address(address addr) { |
|
46 |
#define DO(member) {if (addr == (address) &(member)) return XSTR(member);} |
|
47 |
DO(_thread); |
|
48 |
DO(_bcp); |
|
49 |
DO(_locals); |
|
50 |
DO(_constants); |
|
51 |
DO(_method); |
|
38074
8475fdc6dcc3
8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents:
35479
diff
changeset
|
52 |
DO(_mirror); |
4013 | 53 |
DO(_mdx); |
54 |
DO(_stack); |
|
55 |
DO(_msg); |
|
56 |
DO(_result); |
|
57 |
DO(_prev_link); |
|
58 |
DO(_oop_temp); |
|
59 |
DO(_stack_base); |
|
60 |
DO(_stack_limit); |
|
61 |
DO(_monitor_base); |
|
62 |
DO(_self_link); |
|
63 |
#undef DO |
|
64 |
if (addr > (address) &_result && addr < (address) (&_result + 1)) |
|
65 |
return "_result)"; |
|
66 |
return NULL; |
|
67 |
} |
|
68 |
||
35479
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
69 |
void BytecodeInterpreter::layout_interpreterState(interpreterState istate, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
70 |
frame* caller, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
71 |
frame* current, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
72 |
Method* method, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
73 |
intptr_t* locals, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
74 |
intptr_t* stack, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
75 |
intptr_t* stack_base, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
76 |
intptr_t* monitor_base, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
77 |
intptr_t* frame_bottom, |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
78 |
bool is_top_frame) { |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
79 |
istate->set_locals(locals); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
80 |
istate->set_method(method); |
38074
8475fdc6dcc3
8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents:
35479
diff
changeset
|
81 |
istate->set_mirror(method->method_holder()->java_mirror()); |
35479
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
82 |
istate->set_self_link(istate); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
83 |
istate->set_prev_link(NULL); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
84 |
// thread will be set by a hacky repurposing of frame::patch_pc() |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
85 |
// bcp will be set by vframeArrayElement::unpack_on_stack() |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
86 |
istate->set_constants(method->constants()->cache()); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
87 |
istate->set_msg(BytecodeInterpreter::method_resume); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
88 |
istate->set_bcp_advance(0); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
89 |
istate->set_oop_temp(NULL); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
90 |
istate->set_mdx(NULL); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
91 |
if (caller->is_interpreted_frame()) { |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
92 |
interpreterState prev = caller->get_interpreterState(); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
93 |
prev->set_callee(method); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
94 |
if (*prev->bcp() == Bytecodes::_invokeinterface) |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
95 |
prev->set_bcp_advance(5); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
96 |
else |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
97 |
prev->set_bcp_advance(3); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
98 |
} |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
99 |
istate->set_callee(NULL); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
100 |
istate->set_monitor_base((BasicObjectLock *) monitor_base); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
101 |
istate->set_stack_base(stack_base); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
102 |
istate->set_stack(stack); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
103 |
istate->set_stack_limit(stack_base - method->max_stack() - 1); |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
104 |
} |
62c12ca7a45e
8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents:
13728
diff
changeset
|
105 |
|
4013 | 106 |
#endif // CC_INTERP |