annotate src/cpu/ppc/vm/templateInterpreter_ppc.cpp @ 24154:c2e117633778

use openjdk prefix if bootstrap jdk is an openjdk
author Doug Simon <doug.simon@oracle.com>
date Fri, 07 Jul 2017 14:56:32 +0200
parents b5f3a471e646
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1 /*
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
3 * Copyright 2013, 2014 SAP AG. All rights reserved.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
5 *
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
6 * This code is free software; you can redistribute it and/or modify it
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
7 * under the terms of the GNU General Public License version 2 only, as
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
8 * published by the Free Software Foundation.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
9 *
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
10 * This code is distributed in the hope that it will be useful, but WITHOUT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
13 * version 2 for more details (a copy is included in the LICENSE file that
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
14 * accompanied this code).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
15 *
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License version
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
17 * 2 along with this work; if not, write to the Free Software Foundation,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
19 *
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
21 * or visit www.oracle.com if you need additional information or have any
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
22 * questions.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
23 *
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
24 */
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
25
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
26 #include "precompiled.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
27 #ifndef CC_INTERP
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
28 #include "asm/macroAssembler.inline.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
29 #include "interpreter/bytecodeHistogram.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
30 #include "interpreter/interpreter.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
31 #include "interpreter/interpreterGenerator.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
32 #include "interpreter/interpreterRuntime.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
33 #include "interpreter/templateTable.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
34 #include "oops/arrayOop.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
35 #include "oops/methodData.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
36 #include "oops/method.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
37 #include "oops/oop.inline.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
38 #include "prims/jvmtiExport.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
39 #include "prims/jvmtiThreadState.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
40 #include "runtime/arguments.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
41 #include "runtime/deoptimization.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
42 #include "runtime/frame.inline.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
43 #include "runtime/sharedRuntime.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
44 #include "runtime/stubRoutines.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
45 #include "runtime/synchronizer.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
46 #include "runtime/timer.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
47 #include "runtime/vframeArray.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
48 #include "utilities/debug.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
49 #include "utilities/macros.hpp"
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
50
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
51 #undef __
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
52 #define __ _masm->
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
53
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
54 #ifdef PRODUCT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
55 #define BLOCK_COMMENT(str) /* nothing */
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
56 #else
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
57 #define BLOCK_COMMENT(str) __ block_comment(str)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
58 #endif
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
59
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
60 #define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
61
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
62 //-----------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
63
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
64 // Actually we should never reach here since we do stack overflow checks before pushing any frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
65 address TemplateInterpreterGenerator::generate_StackOverflowError_handler() {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
66 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
67 __ unimplemented("generate_StackOverflowError_handler");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
68 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
69 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
70
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
71 address TemplateInterpreterGenerator::generate_ArrayIndexOutOfBounds_handler(const char* name) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
72 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
73 __ empty_expression_stack();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
74 __ load_const_optimized(R4_ARG2, (address) name);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
75 // Index is in R17_tos.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
76 __ mr(R5_ARG3, R17_tos);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
77 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_ArrayIndexOutOfBoundsException));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
78 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
79 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
80
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
81 #if 0
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
82 // Call special ClassCastException constructor taking object to cast
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
83 // and target class as arguments.
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
84 address TemplateInterpreterGenerator::generate_ClassCastException_verbose_handler() {
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
85 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
86
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
87 // Expression stack must be empty before entering the VM if an
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
88 // exception happened.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
89 __ empty_expression_stack();
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
90
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
91 // Thread will be loaded to R3_ARG1.
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
92 // Target class oop is in register R5_ARG3 by convention!
20710
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
93 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_ClassCastException_verbose), R17_tos, R5_ARG3);
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
94 // Above call must not return here since exception pending.
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
95 DEBUG_ONLY(__ should_not_reach_here();)
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
96 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
97 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
98 #endif
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
99
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
100 address TemplateInterpreterGenerator::generate_ClassCastException_handler() {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
101 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
102 // Expression stack must be empty before entering the VM if an
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
103 // exception happened.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
104 __ empty_expression_stack();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
105
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
106 // Load exception object.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
107 // Thread will be loaded to R3_ARG1.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
108 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_ClassCastException), R17_tos);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
109 #ifdef ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
110 // Above call must not return here since exception pending.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
111 __ should_not_reach_here();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
112 #endif
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
113 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
114 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
115
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
116 address TemplateInterpreterGenerator::generate_exception_handler_common(const char* name, const char* message, bool pass_oop) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
117 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
118 //__ untested("generate_exception_handler_common");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
119 Register Rexception = R17_tos;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
120
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
121 // Expression stack must be empty before entering the VM if an exception happened.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
122 __ empty_expression_stack();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
123
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
124 __ load_const_optimized(R4_ARG2, (address) name, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
125 if (pass_oop) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
126 __ mr(R5_ARG3, Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
127 __ call_VM(Rexception, CAST_FROM_FN_PTR(address, InterpreterRuntime::create_klass_exception), false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
128 } else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
129 __ load_const_optimized(R5_ARG3, (address) message, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
130 __ call_VM(Rexception, CAST_FROM_FN_PTR(address, InterpreterRuntime::create_exception), false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
131 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
132
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
133 // Throw exception.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
134 __ mr(R3_ARG1, Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
135 __ load_const_optimized(R11_scratch1, Interpreter::throw_exception_entry(), R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
136 __ mtctr(R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
137 __ bctr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
138
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
139 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
140 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
141
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
142 address TemplateInterpreterGenerator::generate_continuation_for(TosState state) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
143 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
144 __ unimplemented("generate_continuation_for");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
145 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
146 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
147
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
148 // This entry is returned to when a call returns to the interpreter.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
149 // When we arrive here, we expect that the callee stack frame is already popped.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
150 address TemplateInterpreterGenerator::generate_return_entry_for(TosState state, int step, size_t index_size) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
151 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
152
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
153 // Move the value out of the return register back to the TOS cache of current frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
154 switch (state) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
155 case ltos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
156 case btos:
23627
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
157 case ztos:
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
158 case ctos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
159 case stos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
160 case atos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
161 case itos: __ mr(R17_tos, R3_RET); break; // RET -> TOS cache
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
162 case ftos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
163 case dtos: __ fmr(F15_ftos, F1_RET); break; // TOS cache -> GR_FRET
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
164 case vtos: break; // Nothing to do, this was a void return.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
165 default : ShouldNotReachHere();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
166 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
167
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
168 __ restore_interpreter_state(R11_scratch1); // Sets R11_scratch1 = fp.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
169 __ ld(R12_scratch2, _ijava_state_neg(top_frame_sp), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
170 __ resize_frame_absolute(R12_scratch2, R11_scratch1, R0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
171
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
172 // Compiled code destroys templateTableBase, reload.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
173 __ load_const_optimized(R25_templateTableBase, (address)Interpreter::dispatch_table((TosState)0), R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
174
20710
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
175 if (state == atos) {
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
176 __ profile_return_type(R3_RET, R11_scratch1, R12_scratch2);
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
177 }
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
178
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
179 const Register cache = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
180 const Register size = R12_scratch2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
181 __ get_cache_and_index_at_bcp(cache, 1, index_size);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
182
20418
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
183 // Get least significant byte of 64 bit value:
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
184 #if defined(VM_LITTLE_ENDIAN)
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
185 __ lbz(size, in_bytes(ConstantPoolCache::base_offset() + ConstantPoolCacheEntry::flags_offset()), cache);
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
186 #else
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
187 __ lbz(size, in_bytes(ConstantPoolCache::base_offset() + ConstantPoolCacheEntry::flags_offset()) + 7, cache);
20418
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
188 #endif
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
189 __ sldi(size, size, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
190 __ add(R15_esp, R15_esp, size);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
191 __ dispatch_next(state, step);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
192 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
193 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
194
18857
5214669b01f2 moved generate_deopt_entry_for to InterpreterGenerator for all architectures
Doug Simon <doug.simon@oracle.com>
parents: 17980
diff changeset
195 address InterpreterGenerator::generate_deopt_entry_for(TosState state, int step) {
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
196 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
197 // If state != vtos, we're returning from a native method, which put it's result
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
198 // into the result register. So move the value out of the return register back
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
199 // to the TOS cache of current frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
200
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
201 switch (state) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
202 case ltos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
203 case btos:
23627
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
204 case ztos:
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
205 case ctos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
206 case stos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
207 case atos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
208 case itos: __ mr(R17_tos, R3_RET); break; // GR_RET -> TOS cache
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
209 case ftos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
210 case dtos: __ fmr(F15_ftos, F1_RET); break; // TOS cache -> GR_FRET
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
211 case vtos: break; // Nothing to do, this was a void return.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
212 default : ShouldNotReachHere();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
213 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
214
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
215 // Load LcpoolCache @@@ should be already set!
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
216 __ get_constant_pool_cache(R27_constPoolCache);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
217
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
218 // Handle a pending exception, fall through if none.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
219 __ check_and_forward_exception(R11_scratch1, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
220
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
221 // Start executing bytecodes.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
222 __ dispatch_next(state, step);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
223
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
224 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
225 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
226
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
227 // A result handler converts the native result into java format.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
228 // Use the shared code between c++ and template interpreter.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
229 address TemplateInterpreterGenerator::generate_result_handler_for(BasicType type) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
230 return AbstractInterpreterGenerator::generate_result_handler_for(type);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
231 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
232
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
233 address TemplateInterpreterGenerator::generate_safept_entry_for(TosState state, address runtime_entry) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
234 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
235
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
236 __ push(state);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
237 __ call_VM(noreg, runtime_entry);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
238 __ dispatch_via(vtos, Interpreter::_normal_table.table_for(vtos));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
239
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
240 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
241 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
242
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
243 // Helpers for commoning out cases in the various type of method entries.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
244
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
245 // Increment invocation count & check for overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
246 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
247 // Note: checking for negative value instead of overflow
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
248 // so we have a 'sticky' overflow test.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
249 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
250 void TemplateInterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
251 // Note: In tiered we increment either counters in method or in MDO depending if we're profiling or not.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
252 Register Rscratch1 = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
253 Register Rscratch2 = R12_scratch2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
254 Register R3_counters = R3_ARG1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
255 Label done;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
256
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
257 if (TieredCompilation) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
258 const int increment = InvocationCounter::count_increment;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
259 const int mask = ((1 << Tier0InvokeNotifyFreqLog) - 1) << InvocationCounter::count_shift;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
260 Label no_mdo;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
261 if (ProfileInterpreter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
262 const Register Rmdo = Rscratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
263 // If no method data exists, go to profile_continue.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
264 __ ld(Rmdo, in_bytes(Method::method_data_offset()), R19_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
265 __ cmpdi(CCR0, Rmdo, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
266 __ beq(CCR0, no_mdo);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
267
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
268 // Increment backedge counter in the MDO.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
269 const int mdo_bc_offs = in_bytes(MethodData::backedge_counter_offset()) + in_bytes(InvocationCounter::counter_offset());
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
270 __ lwz(Rscratch2, mdo_bc_offs, Rmdo);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
271 __ addi(Rscratch2, Rscratch2, increment);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
272 __ stw(Rscratch2, mdo_bc_offs, Rmdo);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
273 __ load_const_optimized(Rscratch1, mask, R0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
274 __ and_(Rscratch1, Rscratch2, Rscratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
275 __ bne(CCR0, done);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
276 __ b(*overflow);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
277 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
278
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
279 // Increment counter in MethodCounters*.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
280 const int mo_bc_offs = in_bytes(MethodCounters::backedge_counter_offset()) + in_bytes(InvocationCounter::counter_offset());
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
281 __ bind(no_mdo);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
282 __ get_method_counters(R19_method, R3_counters, done);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
283 __ lwz(Rscratch2, mo_bc_offs, R3_counters);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
284 __ addi(Rscratch2, Rscratch2, increment);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
285 __ stw(Rscratch2, mo_bc_offs, R3_counters);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
286 __ load_const_optimized(Rscratch1, mask, R0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
287 __ and_(Rscratch1, Rscratch2, Rscratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
288 __ beq(CCR0, *overflow);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
289
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
290 __ bind(done);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
291
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
292 } else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
293
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
294 // Update standard invocation counters.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
295 Register Rsum_ivc_bec = R4_ARG2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
296 __ get_method_counters(R19_method, R3_counters, done);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
297 __ increment_invocation_counter(R3_counters, Rsum_ivc_bec, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
298 // Increment interpreter invocation counter.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
299 if (ProfileInterpreter) { // %%% Merge this into methodDataOop.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
300 __ lwz(R12_scratch2, in_bytes(MethodCounters::interpreter_invocation_counter_offset()), R3_counters);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
301 __ addi(R12_scratch2, R12_scratch2, 1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
302 __ stw(R12_scratch2, in_bytes(MethodCounters::interpreter_invocation_counter_offset()), R3_counters);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
303 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
304 // Check if we must create a method data obj.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
305 if (ProfileInterpreter && profile_method != NULL) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
306 const Register profile_limit = Rscratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
307 int pl_offs = __ load_const_optimized(profile_limit, &InvocationCounter::InterpreterProfileLimit, R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
308 __ lwz(profile_limit, pl_offs, profile_limit);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
309 // Test to see if we should create a method data oop.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
310 __ cmpw(CCR0, Rsum_ivc_bec, profile_limit);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
311 __ blt(CCR0, *profile_method_continue);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
312 // If no method data exists, go to profile_method.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
313 __ test_method_data_pointer(*profile_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
314 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
315 // Finally check for counter overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
316 if (overflow) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
317 const Register invocation_limit = Rscratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
318 int il_offs = __ load_const_optimized(invocation_limit, &InvocationCounter::InterpreterInvocationLimit, R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
319 __ lwz(invocation_limit, il_offs, invocation_limit);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
320 assert(4 == sizeof(InvocationCounter::InterpreterInvocationLimit), "unexpected field size");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
321 __ cmpw(CCR0, Rsum_ivc_bec, invocation_limit);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
322 __ bge(CCR0, *overflow);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
323 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
324
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
325 __ bind(done);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
326 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
327 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
328
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
329 // Generate code to initiate compilation on invocation counter overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
330 void TemplateInterpreterGenerator::generate_counter_overflow(Label& continue_entry) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
331 // Generate code to initiate compilation on the counter overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
332
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
333 // InterpreterRuntime::frequency_counter_overflow takes one arguments,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
334 // which indicates if the counter overflow occurs at a backwards branch (NULL bcp)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
335 // We pass zero in.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
336 // The call returns the address of the verified entry point for the method or NULL
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
337 // if the compilation did not complete (either went background or bailed out).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
338 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
339 // Unlike the C++ interpreter above: Check exceptions!
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
340 // Assumption: Caller must set the flag "do_not_unlock_if_sychronized" if the monitor of a sync'ed
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
341 // method has not yet been created. Thus, no unlocking of a non-existing monitor can occur.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
342
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
343 __ li(R4_ARG2, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
344 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::frequency_counter_overflow), R4_ARG2, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
345
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
346 // Returns verified_entry_point or NULL.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
347 // We ignore it in any case.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
348 __ b(continue_entry);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
349 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
350
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
351 void TemplateInterpreterGenerator::generate_stack_overflow_check(Register Rmem_frame_size, Register Rscratch1) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
352 assert_different_registers(Rmem_frame_size, Rscratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
353 __ generate_stack_overflow_check_with_compare_and_throw(Rmem_frame_size, Rscratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
354 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
355
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
356 void TemplateInterpreterGenerator::unlock_method(bool check_exceptions) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
357 __ unlock_object(R26_monitor, check_exceptions);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
358 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
359
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
360 // Lock the current method, interpreter register window must be set up!
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
361 void TemplateInterpreterGenerator::lock_method(Register Rflags, Register Rscratch1, Register Rscratch2, bool flags_preloaded) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
362 const Register Robj_to_lock = Rscratch2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
363
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
364 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
365 if (!flags_preloaded) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
366 __ lwz(Rflags, method_(access_flags));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
367 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
368
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
369 #ifdef ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
370 // Check if methods needs synchronization.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
371 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
372 Label Lok;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
373 __ testbitdi(CCR0, R0, Rflags, JVM_ACC_SYNCHRONIZED_BIT);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
374 __ btrue(CCR0,Lok);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
375 __ stop("method doesn't need synchronization");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
376 __ bind(Lok);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
377 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
378 #endif // ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
379 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
380
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
381 // Get synchronization object to Rscratch2.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
382 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
383 const int mirror_offset = in_bytes(Klass::java_mirror_offset());
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
384 Label Lstatic;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
385 Label Ldone;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
386
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
387 __ testbitdi(CCR0, R0, Rflags, JVM_ACC_STATIC_BIT);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
388 __ btrue(CCR0, Lstatic);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
389
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
390 // Non-static case: load receiver obj from stack and we're done.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
391 __ ld(Robj_to_lock, R18_locals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
392 __ b(Ldone);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
393
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
394 __ bind(Lstatic); // Static case: Lock the java mirror
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
395 __ ld(Robj_to_lock, in_bytes(Method::const_offset()), R19_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
396 __ ld(Robj_to_lock, in_bytes(ConstMethod::constants_offset()), Robj_to_lock);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
397 __ ld(Robj_to_lock, ConstantPool::pool_holder_offset_in_bytes(), Robj_to_lock);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
398 __ ld(Robj_to_lock, mirror_offset, Robj_to_lock);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
399
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
400 __ bind(Ldone);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
401 __ verify_oop(Robj_to_lock);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
402 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
403
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
404 // Got the oop to lock => execute!
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
405 __ add_monitor_to_stack(true, Rscratch1, R0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
406
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
407 __ std(Robj_to_lock, BasicObjectLock::obj_offset_in_bytes(), R26_monitor);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
408 __ lock_object(R26_monitor, Robj_to_lock);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
409 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
410
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
411 // Generate a fixed interpreter frame for pure interpreter
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
412 // and I2N native transition frames.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
413 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
414 // Before (stack grows downwards):
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
415 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
416 // | ... |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
417 // |------------- |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
418 // | java arg0 |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
419 // | ... |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
420 // | java argn |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
421 // | | <- R15_esp
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
422 // | |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
423 // |--------------|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
424 // | abi_112 |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
425 // | | <- R1_SP
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
426 // |==============|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
427 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
428 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
429 // After:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
430 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
431 // | ... |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
432 // | java arg0 |<- R18_locals
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
433 // | ... |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
434 // | java argn |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
435 // |--------------|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
436 // | |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
437 // | java locals |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
438 // | |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
439 // |--------------|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
440 // | abi_48 |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
441 // |==============|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
442 // | |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
443 // | istate |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
444 // | |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
445 // |--------------|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
446 // | monitor |<- R26_monitor
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
447 // |--------------|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
448 // | |<- R15_esp
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
449 // | expression |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
450 // | stack |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
451 // | |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
452 // |--------------|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
453 // | |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
454 // | abi_112 |<- R1_SP
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
455 // |==============|
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
456 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
457 // The top most frame needs an abi space of 112 bytes. This space is needed,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
458 // since we call to c. The c function may spill their arguments to the caller
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
459 // frame. When we call to java, we don't need these spill slots. In order to save
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
460 // space on the stack, we resize the caller. However, java local reside in
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
461 // the caller frame and the frame has to be increased. The frame_size for the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
462 // current frame was calculated based on max_stack as size for the expression
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
463 // stack. At the call, just a part of the expression stack might be used.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
464 // We don't want to waste this space and cut the frame back accordingly.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
465 // The resulting amount for resizing is calculated as follows:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
466 // resize = (number_of_locals - number_of_arguments) * slot_size
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
467 // + (R1_SP - R15_esp) + 48
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
468 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
469 // The size for the callee frame is calculated:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
470 // framesize = 112 + max_stack + monitor + state_size
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
471 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
472 // maxstack: Max number of slots on the expression stack, loaded from the method.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
473 // monitor: We statically reserve room for one monitor object.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
474 // state_size: We save the current state of the interpreter to this area.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
475 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
476 void TemplateInterpreterGenerator::generate_fixed_frame(bool native_call, Register Rsize_of_parameters, Register Rsize_of_locals) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
477 Register parent_frame_resize = R6_ARG4, // Frame will grow by this number of bytes.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
478 top_frame_size = R7_ARG5,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
479 Rconst_method = R8_ARG6;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
480
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
481 assert_different_registers(Rsize_of_parameters, Rsize_of_locals, parent_frame_resize, top_frame_size);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
482
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
483 __ ld(Rconst_method, method_(const));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
484 __ lhz(Rsize_of_parameters /* number of params */,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
485 in_bytes(ConstMethod::size_of_parameters_offset()), Rconst_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
486 if (native_call) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
487 // If we're calling a native method, we reserve space for the worst-case signature
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
488 // handler varargs vector, which is max(Argument::n_register_parameters, parameter_count+2).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
489 // We add two slots to the parameter_count, one for the jni
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
490 // environment and one for a possible native mirror.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
491 Label skip_native_calculate_max_stack;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
492 __ addi(top_frame_size, Rsize_of_parameters, 2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
493 __ cmpwi(CCR0, top_frame_size, Argument::n_register_parameters);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
494 __ bge(CCR0, skip_native_calculate_max_stack);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
495 __ li(top_frame_size, Argument::n_register_parameters);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
496 __ bind(skip_native_calculate_max_stack);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
497 __ sldi(Rsize_of_parameters, Rsize_of_parameters, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
498 __ sldi(top_frame_size, top_frame_size, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
499 __ sub(parent_frame_resize, R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
500 assert(Rsize_of_locals == noreg, "Rsize_of_locals not initialized"); // Only relevant value is Rsize_of_parameters.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
501 } else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
502 __ lhz(Rsize_of_locals /* number of params */, in_bytes(ConstMethod::size_of_locals_offset()), Rconst_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
503 __ sldi(Rsize_of_parameters, Rsize_of_parameters, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
504 __ sldi(Rsize_of_locals, Rsize_of_locals, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
505 __ lhz(top_frame_size, in_bytes(ConstMethod::max_stack_offset()), Rconst_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
506 __ sub(R11_scratch1, Rsize_of_locals, Rsize_of_parameters); // >=0
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
507 __ sub(parent_frame_resize, R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
508 __ sldi(top_frame_size, top_frame_size, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
509 __ add(parent_frame_resize, parent_frame_resize, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
510 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
511
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
512 // Compute top frame size.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
513 __ addi(top_frame_size, top_frame_size, frame::abi_reg_args_size + frame::ijava_state_size);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
514
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
515 // Cut back area between esp and max_stack.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
516 __ addi(parent_frame_resize, parent_frame_resize, frame::abi_minframe_size - Interpreter::stackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
517
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
518 __ round_to(top_frame_size, frame::alignment_in_bytes);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
519 __ round_to(parent_frame_resize, frame::alignment_in_bytes);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
520 // parent_frame_resize = (locals-parameters) - (ESP-SP-ABI48) Rounded to frame alignment size.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
521 // Enlarge by locals-parameters (not in case of native_call), shrink by ESP-SP-ABI48.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
522
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
523 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
524 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
525 // Stack overflow check
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
526
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
527 Label cont;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
528 __ add(R11_scratch1, parent_frame_resize, top_frame_size);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
529 generate_stack_overflow_check(R11_scratch1, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
530 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
531
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
532 // Set up interpreter state registers.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
533
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
534 __ add(R18_locals, R15_esp, Rsize_of_parameters);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
535 __ ld(R27_constPoolCache, in_bytes(ConstMethod::constants_offset()), Rconst_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
536 __ ld(R27_constPoolCache, ConstantPool::cache_offset_in_bytes(), R27_constPoolCache);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
537
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
538 // Set method data pointer.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
539 if (ProfileInterpreter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
540 Label zero_continue;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
541 __ ld(R28_mdx, method_(method_data));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
542 __ cmpdi(CCR0, R28_mdx, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
543 __ beq(CCR0, zero_continue);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
544 __ addi(R28_mdx, R28_mdx, in_bytes(MethodData::data_offset()));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
545 __ bind(zero_continue);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
546 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
547
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
548 if (native_call) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
549 __ li(R14_bcp, 0); // Must initialize.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
550 } else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
551 __ add(R14_bcp, in_bytes(ConstMethod::codes_offset()), Rconst_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
552 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
553
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
554 // Resize parent frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
555 __ mflr(R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
556 __ neg(parent_frame_resize, parent_frame_resize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
557 __ resize_frame(parent_frame_resize, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
558 __ std(R12_scratch2, _abi(lr), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
559
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
560 __ addi(R26_monitor, R1_SP, - frame::ijava_state_size);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
561 __ addi(R15_esp, R26_monitor, - Interpreter::stackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
562
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
563 // Store values.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
564 // R15_esp, R14_bcp, R26_monitor, R28_mdx are saved at java calls
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
565 // in InterpreterMacroAssembler::call_from_interpreter.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
566 __ std(R19_method, _ijava_state_neg(method), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
567 __ std(R21_sender_SP, _ijava_state_neg(sender_sp), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
568 __ std(R27_constPoolCache, _ijava_state_neg(cpoolCache), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
569 __ std(R18_locals, _ijava_state_neg(locals), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
570
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
571 // Note: esp, bcp, monitor, mdx live in registers. Hence, the correct version can only
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
572 // be found in the frame after save_interpreter_state is done. This is always true
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
573 // for non-top frames. But when a signal occurs, dumping the top frame can go wrong,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
574 // because e.g. frame::interpreter_frame_bcp() will not access the correct value
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
575 // (Enhanced Stack Trace).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
576 // The signal handler does not save the interpreter state into the frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
577 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
578 #ifdef ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
579 // Fill remaining slots with constants.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
580 __ load_const_optimized(R11_scratch1, 0x5afe);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
581 __ load_const_optimized(R12_scratch2, 0xdead);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
582 #endif
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
583 // We have to initialize some frame slots for native calls (accessed by GC).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
584 if (native_call) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
585 __ std(R26_monitor, _ijava_state_neg(monitors), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
586 __ std(R14_bcp, _ijava_state_neg(bcp), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
587 if (ProfileInterpreter) { __ std(R28_mdx, _ijava_state_neg(mdx), R1_SP); }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
588 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
589 #ifdef ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
590 else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
591 __ std(R12_scratch2, _ijava_state_neg(monitors), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
592 __ std(R12_scratch2, _ijava_state_neg(bcp), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
593 __ std(R12_scratch2, _ijava_state_neg(mdx), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
594 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
595 __ std(R11_scratch1, _ijava_state_neg(ijava_reserved), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
596 __ std(R12_scratch2, _ijava_state_neg(esp), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
597 __ std(R12_scratch2, _ijava_state_neg(lresult), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
598 __ std(R12_scratch2, _ijava_state_neg(fresult), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
599 #endif
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
600 __ subf(R12_scratch2, top_frame_size, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
601 __ std(R0, _ijava_state_neg(oop_tmp), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
602 __ std(R12_scratch2, _ijava_state_neg(top_frame_sp), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
603
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
604 // Push top frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
605 __ push_frame(top_frame_size, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
606 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
607
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
608 // End of helpers
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
609
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
610 // ============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
611 // Various method entries
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
612 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
613
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
614 // Empty method, generate a very fast return. We must skip this entry if
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
615 // someone's debugging, indicated by the flag
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
616 // "interp_mode" in the Thread obj.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
617 // Note: empty methods are generated mostly methods that do assertions, which are
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
618 // disabled in the "java opt build".
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
619 address TemplateInterpreterGenerator::generate_empty_entry(void) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
620 if (!UseFastEmptyMethods) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
621 NOT_PRODUCT(__ should_not_reach_here();)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
622 return Interpreter::entry_for_kind(Interpreter::zerolocals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
623 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
624
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
625 Label Lslow_path;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
626 const Register Rjvmti_mode = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
627 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
628
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
629 __ lwz(Rjvmti_mode, thread_(interp_only_mode));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
630 __ cmpwi(CCR0, Rjvmti_mode, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
631 __ bne(CCR0, Lslow_path); // jvmti_mode!=0
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
632
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
633 // Noone's debuggin: Simply return.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
634 // Pop c2i arguments (if any) off when we return.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
635 #ifdef ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
636 __ ld(R9_ARG7, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
637 __ ld(R10_ARG8, 0, R21_sender_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
638 __ cmpd(CCR0, R9_ARG7, R10_ARG8);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
639 __ asm_assert_eq("backlink", 0x545);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
640 #endif // ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
641 __ mr(R1_SP, R21_sender_SP); // Cut the stack back to where the caller started.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
642
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
643 // And we're done.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
644 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
645
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
646 __ bind(Lslow_path);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
647 __ branch_to_entry(Interpreter::entry_for_kind(Interpreter::zerolocals), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
648 __ flush();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
649
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
650 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
651 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
652
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
653 // Support abs and sqrt like in compiler.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
654 // For others we can use a normal (native) entry.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
655
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
656 inline bool math_entry_available(AbstractInterpreter::MethodKind kind) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
657 // Provide math entry with debugging on demand.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
658 // Note: Debugging changes which code will get executed:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
659 // Debugging or disabled InlineIntrinsics: java method will get interpreted and performs a native call.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
660 // Not debugging and enabled InlineIntrinics: processor instruction will get used.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
661 // Result might differ slightly due to rounding etc.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
662 if (!InlineIntrinsics && (!FLAG_IS_ERGO(InlineIntrinsics))) return false; // Generate a vanilla entry.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
663
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
664 return ((kind==Interpreter::java_lang_math_sqrt && VM_Version::has_fsqrt()) ||
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
665 (kind==Interpreter::java_lang_math_abs));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
666 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
667
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
668 address TemplateInterpreterGenerator::generate_math_entry(AbstractInterpreter::MethodKind kind) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
669 if (!math_entry_available(kind)) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
670 NOT_PRODUCT(__ should_not_reach_here();)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
671 return Interpreter::entry_for_kind(Interpreter::zerolocals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
672 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
673
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
674 Label Lslow_path;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
675 const Register Rjvmti_mode = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
676 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
677
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
678 // Provide math entry with debugging on demand.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
679 __ lwz(Rjvmti_mode, thread_(interp_only_mode));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
680 __ cmpwi(CCR0, Rjvmti_mode, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
681 __ bne(CCR0, Lslow_path); // jvmti_mode!=0
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
682
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
683 __ lfd(F1_RET, Interpreter::stackElementSize, R15_esp);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
684
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
685 // Pop c2i arguments (if any) off when we return.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
686 #ifdef ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
687 __ ld(R9_ARG7, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
688 __ ld(R10_ARG8, 0, R21_sender_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
689 __ cmpd(CCR0, R9_ARG7, R10_ARG8);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
690 __ asm_assert_eq("backlink", 0x545);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
691 #endif // ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
692 __ mr(R1_SP, R21_sender_SP); // Cut the stack back to where the caller started.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
693
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
694 if (kind == Interpreter::java_lang_math_sqrt) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
695 __ fsqrt(F1_RET, F1_RET);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
696 } else if (kind == Interpreter::java_lang_math_abs) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
697 __ fabs(F1_RET, F1_RET);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
698 } else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
699 ShouldNotReachHere();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
700 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
701
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
702 // And we're done.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
703 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
704
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
705 // Provide slow path for JVMTI case.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
706 __ bind(Lslow_path);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
707 __ branch_to_entry(Interpreter::entry_for_kind(Interpreter::zerolocals), R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
708 __ flush();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
709
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
710 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
711 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
712
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
713 // Interpreter stub for calling a native method. (asm interpreter)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
714 // This sets up a somewhat different looking stack for calling the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
715 // native method than the typical interpreter frame setup.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
716 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
717 // On entry:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
718 // R19_method - method
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
719 // R16_thread - JavaThread*
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
720 // R15_esp - intptr_t* sender tos
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
721 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
722 // abstract stack (grows up)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
723 // [ IJava (caller of JNI callee) ] <-- ASP
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
724 // ...
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
725 address TemplateInterpreterGenerator::generate_native_entry(bool synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
726
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
727 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
728
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
729 const bool inc_counter = UseCompiler || CountCompiledCalls;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
730
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
731 // -----------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
732 // Allocate a new frame that represents the native callee (i2n frame).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
733 // This is not a full-blown interpreter frame, but in particular, the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
734 // following registers are valid after this:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
735 // - R19_method
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
736 // - R18_local (points to start of argumuments to native function)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
737 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
738 // abstract stack (grows up)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
739 // [ IJava (caller of JNI callee) ] <-- ASP
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
740 // ...
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
741
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
742 const Register signature_handler_fd = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
743 const Register pending_exception = R0;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
744 const Register result_handler_addr = R31;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
745 const Register native_method_fd = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
746 const Register access_flags = R22_tmp2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
747 const Register active_handles = R11_scratch1; // R26_monitor saved to state.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
748 const Register sync_state = R12_scratch2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
749 const Register sync_state_addr = sync_state; // Address is dead after use.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
750 const Register suspend_flags = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
751
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
752 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
753 // Allocate new frame and initialize interpreter state.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
754
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
755 Label exception_return;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
756 Label exception_return_sync_check;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
757 Label stack_overflow_return;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
758
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
759 // Generate new interpreter state and jump to stack_overflow_return in case of
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
760 // a stack overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
761 //generate_compute_interpreter_state(stack_overflow_return);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
762
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
763 Register size_of_parameters = R22_tmp2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
764
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
765 generate_fixed_frame(true, size_of_parameters, noreg /* unused */);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
766
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
767 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
768 // Increment invocation counter. On overflow, entry to JNI method
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
769 // will be compiled.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
770 Label invocation_counter_overflow, continue_after_compile;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
771 if (inc_counter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
772 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
773 // Since at this point in the method invocation the exception handler
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
774 // would try to exit the monitor of synchronized methods which hasn't
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
775 // been entered yet, we set the thread local variable
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
776 // _do_not_unlock_if_synchronized to true. If any exception was thrown by
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
777 // runtime, exception handling i.e. unlock_if_synchronized_method will
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
778 // check this thread local flag.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
779 // This flag has two effects, one is to force an unwind in the topmost
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
780 // interpreter frame and not perform an unlock while doing so.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
781 __ li(R0, 1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
782 __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
783 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
784 generate_counter_incr(&invocation_counter_overflow, NULL, NULL);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
785
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
786 __ BIND(continue_after_compile);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
787 // Reset the _do_not_unlock_if_synchronized flag.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
788 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
789 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
790 __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
791 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
792 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
793
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
794 // access_flags = method->access_flags();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
795 // Load access flags.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
796 assert(access_flags->is_nonvolatile(),
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
797 "access_flags must be in a non-volatile register");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
798 // Type check.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
799 assert(4 == sizeof(AccessFlags), "unexpected field size");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
800 __ lwz(access_flags, method_(access_flags));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
801
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
802 // We don't want to reload R19_method and access_flags after calls
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
803 // to some helper functions.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
804 assert(R19_method->is_nonvolatile(),
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
805 "R19_method must be a non-volatile register");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
806
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
807 // Check for synchronized methods. Must happen AFTER invocation counter
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
808 // check, so method is not locked if counter overflows.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
809
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
810 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
811 lock_method(access_flags, R11_scratch1, R12_scratch2, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
812
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
813 // Update monitor in state.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
814 __ ld(R11_scratch1, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
815 __ std(R26_monitor, _ijava_state_neg(monitors), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
816 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
817
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
818 // jvmti/jvmpi support
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
819 __ notify_method_entry();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
820
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
821 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
822 // Get and call the signature handler.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
823
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
824 __ ld(signature_handler_fd, method_(signature_handler));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
825 Label call_signature_handler;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
826
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
827 __ cmpdi(CCR0, signature_handler_fd, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
828 __ bne(CCR0, call_signature_handler);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
829
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
830 // Method has never been called. Either generate a specialized
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
831 // handler or point to the slow one.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
832 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
833 // Pass parameter 'false' to avoid exception check in call_VM.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
834 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::prepare_native_call), R19_method, false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
835
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
836 // Check for an exception while looking up the target method. If we
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
837 // incurred one, bail.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
838 __ ld(pending_exception, thread_(pending_exception));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
839 __ cmpdi(CCR0, pending_exception, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
840 __ bne(CCR0, exception_return_sync_check); // Has pending exception.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
841
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
842 // Reload signature handler, it may have been created/assigned in the meanwhile.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
843 __ ld(signature_handler_fd, method_(signature_handler));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
844 __ twi_0(signature_handler_fd); // Order wrt. load of klass mirror and entry point (isync is below).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
845
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
846 __ BIND(call_signature_handler);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
847
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
848 // Before we call the signature handler we push a new frame to
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
849 // protect the interpreter frame volatile registers when we return
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
850 // from jni but before we can get back to Java.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
851
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
852 // First set the frame anchor while the SP/FP registers are
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
853 // convenient and the slow signature handler can use this same frame
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
854 // anchor.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
855
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
856 // We have a TOP_IJAVA_FRAME here, which belongs to us.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
857 __ set_top_ijava_frame_at_SP_as_last_Java_frame(R1_SP, R12_scratch2/*tmp*/);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
858
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
859 // Now the interpreter frame (and its call chain) have been
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
860 // invalidated and flushed. We are now protected against eager
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
861 // being enabled in native code. Even if it goes eager the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
862 // registers will be reloaded as clean and we will invalidate after
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
863 // the call so no spurious flush should be possible.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
864
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
865 // Call signature handler and pass locals address.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
866 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
867 // Our signature handlers copy required arguments to the C stack
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
868 // (outgoing C args), R3_ARG1 to R10_ARG8, and FARG1 to FARG13.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
869 __ mr(R3_ARG1, R18_locals);
20418
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
870 #if !defined(ABI_ELFv2)
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
871 __ ld(signature_handler_fd, 0, signature_handler_fd);
20418
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
872 #endif
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
873
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
874 __ call_stub(signature_handler_fd);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
875
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
876 // Remove the register parameter varargs slots we allocated in
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
877 // compute_interpreter_state. SP+16 ends up pointing to the ABI
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
878 // outgoing argument area.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
879 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
880 // Not needed on PPC64.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
881 //__ add(SP, SP, Argument::n_register_parameters*BytesPerWord);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
882
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
883 assert(result_handler_addr->is_nonvolatile(), "result_handler_addr must be in a non-volatile register");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
884 // Save across call to native method.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
885 __ mr(result_handler_addr, R3_RET);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
886
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
887 __ isync(); // Acquire signature handler before trying to fetch the native entry point and klass mirror.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
888
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
889 // Set up fixed parameters and call the native method.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
890 // If the method is static, get mirror into R4_ARG2.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
891 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
892 Label method_is_not_static;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
893 // Access_flags is non-volatile and still, no need to restore it.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
894
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
895 // Restore access flags.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
896 __ testbitdi(CCR0, R0, access_flags, JVM_ACC_STATIC_BIT);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
897 __ bfalse(CCR0, method_is_not_static);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
898
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
899 // constants = method->constants();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
900 __ ld(R11_scratch1, in_bytes(Method::const_offset()), R19_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
901 __ ld(R11_scratch1, in_bytes(ConstMethod::constants_offset()), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
902 // pool_holder = method->constants()->pool_holder();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
903 __ ld(R11_scratch1/*pool_holder*/, ConstantPool::pool_holder_offset_in_bytes(),
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
904 R11_scratch1/*constants*/);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
905
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
906 const int mirror_offset = in_bytes(Klass::java_mirror_offset());
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
907
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
908 // mirror = pool_holder->klass_part()->java_mirror();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
909 __ ld(R0/*mirror*/, mirror_offset, R11_scratch1/*pool_holder*/);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
910 // state->_native_mirror = mirror;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
911
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
912 __ ld(R11_scratch1, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
913 __ std(R0/*mirror*/, _ijava_state_neg(oop_tmp), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
914 // R4_ARG2 = &state->_oop_temp;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
915 __ addi(R4_ARG2, R11_scratch1, _ijava_state_neg(oop_tmp));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
916 __ BIND(method_is_not_static);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
917 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
918
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
919 // At this point, arguments have been copied off the stack into
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
920 // their JNI positions. Oops are boxed in-place on the stack, with
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
921 // handles copied to arguments. The result handler address is in a
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
922 // register.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
923
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
924 // Pass JNIEnv address as first parameter.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
925 __ addir(R3_ARG1, thread_(jni_environment));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
926
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
927 // Load the native_method entry before we change the thread state.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
928 __ ld(native_method_fd, method_(native_function));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
929
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
930 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
931 // Transition from _thread_in_Java to _thread_in_native. As soon as
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
932 // we make this change the safepoint code needs to be certain that
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
933 // the last Java frame we established is good. The pc in that frame
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
934 // just needs to be near here not an actual return address.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
935
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
936 // We use release_store_fence to update values like the thread state, where
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
937 // we don't want the current thread to continue until all our prior memory
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
938 // accesses (including the new thread state) are visible to other threads.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
939 __ li(R0, _thread_in_native);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
940 __ release();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
941
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
942 // TODO PPC port assert(4 == JavaThread::sz_thread_state(), "unexpected field size");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
943 __ stw(R0, thread_(thread_state));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
944
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
945 if (UseMembar) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
946 __ fence();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
947 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
948
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
949 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
950 // Call the native method. Argument registers must not have been
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
951 // overwritten since "__ call_stub(signature_handler);" (except for
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
952 // ARG1 and ARG2 for static methods).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
953 __ call_c(native_method_fd);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
954
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
955 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
956 __ ld(R11_scratch1, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
957 __ std(R3_RET, _ijava_state_neg(lresult), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
958 __ stfd(F1_RET, _ijava_state_neg(fresult), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
959 __ std(R0/*mirror*/, _ijava_state_neg(oop_tmp), R11_scratch1); // reset
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
960
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
961 // Note: C++ interpreter needs the following here:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
962 // The frame_manager_lr field, which we use for setting the last
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
963 // java frame, gets overwritten by the signature handler. Restore
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
964 // it now.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
965 //__ get_PC_trash_LR(R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
966 //__ std(R11_scratch1, _top_ijava_frame_abi(frame_manager_lr), R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
967
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
968 // Because of GC R19_method may no longer be valid.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
969
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
970 // Block, if necessary, before resuming in _thread_in_Java state.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
971 // In order for GC to work, don't clear the last_Java_sp until after
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
972 // blocking.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
973
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
974 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
975 // Switch thread to "native transition" state before reading the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
976 // synchronization state. This additional state is necessary
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
977 // because reading and testing the synchronization state is not
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
978 // atomic w.r.t. GC, as this scenario demonstrates: Java thread A,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
979 // in _thread_in_native state, loads _not_synchronized and is
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
980 // preempted. VM thread changes sync state to synchronizing and
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
981 // suspends threads for GC. Thread A is resumed to finish this
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
982 // native method, but doesn't block here since it didn't see any
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
983 // synchronization in progress, and escapes.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
984
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
985 // We use release_store_fence to update values like the thread state, where
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
986 // we don't want the current thread to continue until all our prior memory
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
987 // accesses (including the new thread state) are visible to other threads.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
988 __ li(R0/*thread_state*/, _thread_in_native_trans);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
989 __ release();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
990 __ stw(R0/*thread_state*/, thread_(thread_state));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
991 if (UseMembar) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
992 __ fence();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
993 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
994 // Write serialization page so that the VM thread can do a pseudo remote
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
995 // membar. We use the current thread pointer to calculate a thread
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
996 // specific offset to write to within the page. This minimizes bus
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
997 // traffic due to cache line collision.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
998 else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
999 __ serialize_memory(R16_thread, R11_scratch1, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1000 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1001
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1002 // Now before we return to java we must look for a current safepoint
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1003 // (a new safepoint can not start since we entered native_trans).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1004 // We must check here because a current safepoint could be modifying
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1005 // the callers registers right this moment.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1006
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1007 // Acquire isn't strictly necessary here because of the fence, but
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1008 // sync_state is declared to be volatile, so we do it anyway
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1009 // (cmp-br-isync on one path, release (same as acquire on PPC64) on the other path).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1010 int sync_state_offs = __ load_const_optimized(sync_state_addr, SafepointSynchronize::address_of_state(), /*temp*/R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1011
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1012 // TODO PPC port assert(4 == SafepointSynchronize::sz_state(), "unexpected field size");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1013 __ lwz(sync_state, sync_state_offs, sync_state_addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1014
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1015 // TODO PPC port assert(4 == Thread::sz_suspend_flags(), "unexpected field size");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1016 __ lwz(suspend_flags, thread_(suspend_flags));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1017
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1018 Label sync_check_done;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1019 Label do_safepoint;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1020 // No synchronization in progress nor yet synchronized.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1021 __ cmpwi(CCR0, sync_state, SafepointSynchronize::_not_synchronized);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1022 // Not suspended.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1023 __ cmpwi(CCR1, suspend_flags, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1024
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1025 __ bne(CCR0, do_safepoint);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1026 __ beq(CCR1, sync_check_done);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1027 __ bind(do_safepoint);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1028 __ isync();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1029 // Block. We do the call directly and leave the current
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1030 // last_Java_frame setup undisturbed. We must save any possible
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1031 // native result across the call. No oop is present.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1032
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1033 __ mr(R3_ARG1, R16_thread);
20418
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
1034 #if defined(ABI_ELFv2)
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
1035 __ call_c(CAST_FROM_FN_PTR(address, JavaThread::check_special_condition_for_native_trans),
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
1036 relocInfo::none);
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
1037 #else
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1038 __ call_c(CAST_FROM_FN_PTR(FunctionDescriptor*, JavaThread::check_special_condition_for_native_trans),
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1039 relocInfo::none);
20418
b384ba33c9a0 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 17980
diff changeset
1040 #endif
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1041
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1042 __ bind(sync_check_done);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1043
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1044 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1045 // <<<<<< Back in Interpreter Frame >>>>>
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1046
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1047 // We are in thread_in_native_trans here and back in the normal
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1048 // interpreter frame. We don't have to do anything special about
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1049 // safepoints and we can switch to Java mode anytime we are ready.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1050
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1051 // Note: frame::interpreter_frame_result has a dependency on how the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1052 // method result is saved across the call to post_method_exit. For
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1053 // native methods it assumes that the non-FPU/non-void result is
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1054 // saved in _native_lresult and a FPU result in _native_fresult. If
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1055 // this changes then the interpreter_frame_result implementation
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1056 // will need to be updated too.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1057
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1058 // On PPC64, we have stored the result directly after the native call.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1059
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1060 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1061 // Back in Java
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1062
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1063 // We use release_store_fence to update values like the thread state, where
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1064 // we don't want the current thread to continue until all our prior memory
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1065 // accesses (including the new thread state) are visible to other threads.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1066 __ li(R0/*thread_state*/, _thread_in_Java);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1067 __ release();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1068 __ stw(R0/*thread_state*/, thread_(thread_state));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1069 if (UseMembar) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1070 __ fence();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1071 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1072
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1073 __ reset_last_Java_frame();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1074
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1075 // Jvmdi/jvmpi support. Whether we've got an exception pending or
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1076 // not, and whether unlocking throws an exception or not, we notify
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1077 // on native method exit. If we do have an exception, we'll end up
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1078 // in the caller's context to handle it, so if we don't do the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1079 // notify here, we'll drop it on the floor.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1080 __ notify_method_exit(true/*native method*/,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1081 ilgl /*illegal state (not used for native methods)*/,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1082 InterpreterMacroAssembler::NotifyJVMTI,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1083 false /*check_exceptions*/);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1084
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1085 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1086 // Handle exceptions
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1087
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1088 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1089 // Don't check for exceptions since we're still in the i2n frame. Do that
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1090 // manually afterwards.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1091 unlock_method(false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1092 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1093
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1094 // Reset active handles after returning from native.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1095 // thread->active_handles()->clear();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1096 __ ld(active_handles, thread_(active_handles));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1097 // TODO PPC port assert(4 == JNIHandleBlock::top_size_in_bytes(), "unexpected field size");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1098 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1099 __ stw(R0, JNIHandleBlock::top_offset_in_bytes(), active_handles);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1100
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1101 Label exception_return_sync_check_already_unlocked;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1102 __ ld(R0/*pending_exception*/, thread_(pending_exception));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1103 __ cmpdi(CCR0, R0/*pending_exception*/, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1104 __ bne(CCR0, exception_return_sync_check_already_unlocked);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1105
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1106 //-----------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1107 // No exception pending.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1108
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1109 // Move native method result back into proper registers and return.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1110 // Invoke result handler (may unbox/promote).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1111 __ ld(R11_scratch1, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1112 __ ld(R3_RET, _ijava_state_neg(lresult), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1113 __ lfd(F1_RET, _ijava_state_neg(fresult), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1114 __ call_stub(result_handler_addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1115
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1116 __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*return_pc*/ R0, R11_scratch1, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1117
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1118 // Must use the return pc which was loaded from the caller's frame
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1119 // as the VM uses return-pc-patching for deoptimization.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1120 __ mtlr(R0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1121 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1122
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1123 //-----------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1124 // An exception is pending. We call into the runtime only if the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1125 // caller was not interpreted. If it was interpreted the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1126 // interpreter will do the correct thing. If it isn't interpreted
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1127 // (call stub/compiled code) we will change our return and continue.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1128
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1129 __ BIND(exception_return_sync_check);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1130
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1131 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1132 // Don't check for exceptions since we're still in the i2n frame. Do that
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1133 // manually afterwards.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1134 unlock_method(false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1135 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1136 __ BIND(exception_return_sync_check_already_unlocked);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1137
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1138 const Register return_pc = R31;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1139
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1140 __ ld(return_pc, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1141 __ ld(return_pc, _abi(lr), return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1142
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1143 // Get the address of the exception handler.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1144 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address),
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1145 R16_thread,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1146 return_pc /* return pc */);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1147 __ merge_frames(/*top_frame_sp*/ R21_sender_SP, noreg, R11_scratch1, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1148
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1149 // Load the PC of the the exception handler into LR.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1150 __ mtlr(R3_RET);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1151
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1152 // Load exception into R3_ARG1 and clear pending exception in thread.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1153 __ ld(R3_ARG1/*exception*/, thread_(pending_exception));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1154 __ li(R4_ARG2, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1155 __ std(R4_ARG2, thread_(pending_exception));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1156
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1157 // Load the original return pc into R4_ARG2.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1158 __ mr(R4_ARG2/*issuing_pc*/, return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1159
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1160 // Return to exception handler.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1161 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1162
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1163 //=============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1164 // Counter overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1165
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1166 if (inc_counter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1167 // Handle invocation counter overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1168 __ bind(invocation_counter_overflow);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1169
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1170 generate_counter_overflow(continue_after_compile);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1171 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1172
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1173 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1174 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1175
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1176 // Generic interpreted method entry to (asm) interpreter.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1177 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1178 address TemplateInterpreterGenerator::generate_normal_entry(bool synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1179 bool inc_counter = UseCompiler || CountCompiledCalls;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1180 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1181 // Generate the code to allocate the interpreter stack frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1182 Register Rsize_of_parameters = R4_ARG2, // Written by generate_fixed_frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1183 Rsize_of_locals = R5_ARG3; // Written by generate_fixed_frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1184
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1185 generate_fixed_frame(false, Rsize_of_parameters, Rsize_of_locals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1186
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1187 #ifdef FAST_DISPATCH
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1188 __ unimplemented("Fast dispatch in generate_normal_entry");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1189 #if 0
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1190 __ set((intptr_t)Interpreter::dispatch_table(), IdispatchTables);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1191 // Set bytecode dispatch table base.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1192 #endif
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1193 #endif
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1194
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1195 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1196 // Zero out non-parameter locals.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1197 // Note: *Always* zero out non-parameter locals as Sparc does. It's not
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1198 // worth to ask the flag, just do it.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1199 Register Rslot_addr = R6_ARG4,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1200 Rnum = R7_ARG5;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1201 Label Lno_locals, Lzero_loop;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1202
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1203 // Set up the zeroing loop.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1204 __ subf(Rnum, Rsize_of_parameters, Rsize_of_locals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1205 __ subf(Rslot_addr, Rsize_of_parameters, R18_locals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1206 __ srdi_(Rnum, Rnum, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1207 __ beq(CCR0, Lno_locals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1208 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1209 __ mtctr(Rnum);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1210
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1211 // The zero locals loop.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1212 __ bind(Lzero_loop);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1213 __ std(R0, 0, Rslot_addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1214 __ addi(Rslot_addr, Rslot_addr, -Interpreter::stackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1215 __ bdnz(Lzero_loop);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1216
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1217 __ bind(Lno_locals);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1218
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1219 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1220 // Counter increment and overflow check.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1221 Label invocation_counter_overflow,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1222 profile_method,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1223 profile_method_continue;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1224 if (inc_counter || ProfileInterpreter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1225
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1226 Register Rdo_not_unlock_if_synchronized_addr = R11_scratch1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1227 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1228 // Since at this point in the method invocation the exception handler
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1229 // would try to exit the monitor of synchronized methods which hasn't
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1230 // been entered yet, we set the thread local variable
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1231 // _do_not_unlock_if_synchronized to true. If any exception was thrown by
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1232 // runtime, exception handling i.e. unlock_if_synchronized_method will
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1233 // check this thread local flag.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1234 // This flag has two effects, one is to force an unwind in the topmost
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1235 // interpreter frame and not perform an unlock while doing so.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1236 __ li(R0, 1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1237 __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1238 }
20710
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1239
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1240 // Argument and return type profiling.
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1241 __ profile_parameters_type(R3_ARG1, R4_ARG2, R5_ARG3, R6_ARG4);
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1242
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1243 // Increment invocation counter and check for overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1244 if (inc_counter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1245 generate_counter_incr(&invocation_counter_overflow, &profile_method, &profile_method_continue);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1246 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1247
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1248 __ bind(profile_method_continue);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1249
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1250 // Reset the _do_not_unlock_if_synchronized flag.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1251 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1252 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1253 __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1254 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1255 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1256
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1257 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1258 // Locking of synchronized methods. Must happen AFTER invocation_counter
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1259 // check and stack overflow check, so method is not locked if overflows.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1260 if (synchronized) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1261 lock_method(R3_ARG1, R4_ARG2, R5_ARG3);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1262 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1263 #ifdef ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1264 else {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1265 Label Lok;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1266 __ lwz(R0, in_bytes(Method::access_flags_offset()), R19_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1267 __ andi_(R0, R0, JVM_ACC_SYNCHRONIZED);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1268 __ asm_assert_eq("method needs synchronization", 0x8521);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1269 __ bind(Lok);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1270 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1271 #endif // ASSERT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1272
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1273 __ verify_thread();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1274
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1275 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1276 // JVMTI support
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1277 __ notify_method_entry();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1278
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1279 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1280 // Start executing instructions.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1281 __ dispatch_next(vtos);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1282
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1283 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1284 // Out of line counter overflow and MDO creation code.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1285 if (ProfileInterpreter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1286 // We have decided to profile this method in the interpreter.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1287 __ bind(profile_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1288 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1289 __ set_method_data_pointer_for_bcp();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1290 __ b(profile_method_continue);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1291 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1292
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1293 if (inc_counter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1294 // Handle invocation counter overflow.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1295 __ bind(invocation_counter_overflow);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1296 generate_counter_overflow(profile_method_continue);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1297 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1298 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1299 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1300
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1301 // =============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1302 // Entry points
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1303
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1304 address AbstractInterpreterGenerator::generate_method_entry(
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1305 AbstractInterpreter::MethodKind kind) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1306 // Determine code generation flags.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1307 bool synchronized = false;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1308 address entry_point = NULL;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1309
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1310 switch (kind) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1311 case Interpreter::zerolocals : break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1312 case Interpreter::zerolocals_synchronized: synchronized = true; break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1313 case Interpreter::native : entry_point = ((InterpreterGenerator*) this)->generate_native_entry(false); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1314 case Interpreter::native_synchronized : entry_point = ((InterpreterGenerator*) this)->generate_native_entry(true); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1315 case Interpreter::empty : entry_point = ((InterpreterGenerator*) this)->generate_empty_entry(); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1316 case Interpreter::accessor : entry_point = ((InterpreterGenerator*) this)->generate_accessor_entry(); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1317 case Interpreter::abstract : entry_point = ((InterpreterGenerator*) this)->generate_abstract_entry(); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1318
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1319 case Interpreter::java_lang_math_sin : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1320 case Interpreter::java_lang_math_cos : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1321 case Interpreter::java_lang_math_tan : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1322 case Interpreter::java_lang_math_abs : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1323 case Interpreter::java_lang_math_log : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1324 case Interpreter::java_lang_math_log10 : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1325 case Interpreter::java_lang_math_sqrt : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1326 case Interpreter::java_lang_math_pow : // fall thru
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1327 case Interpreter::java_lang_math_exp : entry_point = ((InterpreterGenerator*) this)->generate_math_entry(kind); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1328 case Interpreter::java_lang_ref_reference_get
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1329 : entry_point = ((InterpreterGenerator*)this)->generate_Reference_get_entry(); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1330 default : ShouldNotReachHere(); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1331 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1332
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1333 if (entry_point) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1334 return entry_point;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1335 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1336
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1337 return ((InterpreterGenerator*) this)->generate_normal_entry(synchronized);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1338 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1339
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1340 // These should never be compiled since the interpreter will prefer
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1341 // the compiled version to the intrinsic version.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1342 bool AbstractInterpreter::can_be_compiled(methodHandle m) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1343 return !math_entry_available(method_kind(m));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1344 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1345
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1346 // How much stack a method activation needs in stack slots.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1347 // We must calc this exactly like in generate_fixed_frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1348 // Note: This returns the conservative size assuming maximum alignment.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1349 int AbstractInterpreter::size_top_interpreter_activation(Method* method) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1350 const int max_alignment_size = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1351 const int abi_scratch = frame::abi_reg_args_size;
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1352 return method->max_locals() + method->max_stack() +
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1353 frame::interpreter_frame_monitor_size() + max_alignment_size + abi_scratch;
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1354 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1355
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1356 // Returns number of stackElementWords needed for the interpreter frame with the
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1357 // given sections.
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1358 // This overestimates the stack by one slot in case of alignments.
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1359 int AbstractInterpreter::size_activation(int max_stack,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1360 int temps,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1361 int extra_args,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1362 int monitors,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1363 int callee_params,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1364 int callee_locals,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1365 bool is_top_frame) {
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1366 // Note: This calculation must exactly parallel the frame setup
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1367 // in AbstractInterpreterGenerator::generate_method_entry.
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1368 assert(Interpreter::stackElementWords == 1, "sanity");
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1369 const int max_alignment_space = StackAlignmentInBytes / Interpreter::stackElementSize;
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1370 const int abi_scratch = is_top_frame ? (frame::abi_reg_args_size / Interpreter::stackElementSize) :
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1371 (frame::abi_minframe_size / Interpreter::stackElementSize);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1372 const int size =
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1373 max_stack +
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1374 (callee_locals - callee_params) +
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1375 monitors * frame::interpreter_frame_monitor_size() +
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1376 max_alignment_space +
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1377 abi_scratch +
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1378 frame::ijava_state_size / Interpreter::stackElementSize;
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1379
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1380 // Fixed size of an interpreter frame, align to 16-byte.
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1381 return (size & -2);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1382 }
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1383
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1384 // Fills a sceletal interpreter frame generated during deoptimizations.
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1385 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1386 // Parameters:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1387 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1388 // interpreter_frame != NULL:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1389 // set up the method, locals, and monitors.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1390 // The frame interpreter_frame, if not NULL, is guaranteed to be the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1391 // right size, as determined by a previous call to this method.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1392 // It is also guaranteed to be walkable even though it is in a skeletal state
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1393 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1394 // is_top_frame == true:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1395 // We're processing the *oldest* interpreter frame!
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1396 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1397 // pop_frame_extra_args:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1398 // If this is != 0 we are returning to a deoptimized frame by popping
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1399 // off the callee frame. We want to re-execute the call that called the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1400 // callee interpreted, but since the return to the interpreter would pop
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1401 // the arguments off advance the esp by dummy popframe_extra_args slots.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1402 // Popping off those will establish the stack layout as it was before the call.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1403 //
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1404 void AbstractInterpreter::layout_activation(Method* method,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1405 int tempcount,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1406 int popframe_extra_args,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1407 int moncount,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1408 int caller_actual_parameters,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1409 int callee_param_count,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1410 int callee_locals_count,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1411 frame* caller,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1412 frame* interpreter_frame,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1413 bool is_top_frame,
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1414 bool is_bottom_frame) {
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1415
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1416 const int abi_scratch = is_top_frame ? (frame::abi_reg_args_size / Interpreter::stackElementSize) :
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1417 (frame::abi_minframe_size / Interpreter::stackElementSize);
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1418
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1419 intptr_t* locals_base = (caller->is_interpreted_frame()) ?
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1420 caller->interpreter_frame_esp() + caller_actual_parameters :
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1421 caller->sp() + method->max_locals() - 1 + (frame::abi_minframe_size / Interpreter::stackElementSize) ;
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1422
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1423 intptr_t* monitor_base = caller->sp() - frame::ijava_state_size / Interpreter::stackElementSize ;
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1424 intptr_t* monitor = monitor_base - (moncount * frame::interpreter_frame_monitor_size());
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1425 intptr_t* esp_base = monitor - 1;
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1426 intptr_t* esp = esp_base - tempcount - popframe_extra_args;
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1427 intptr_t* sp = (intptr_t *) (((intptr_t) (esp_base - callee_locals_count + callee_param_count - method->max_stack()- abi_scratch)) & -StackAlignmentInBytes);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1428 intptr_t* sender_sp = caller->sp() + (frame::abi_minframe_size - frame::abi_reg_args_size) / Interpreter::stackElementSize;
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1429 intptr_t* top_frame_sp = is_top_frame ? sp : sp + (frame::abi_minframe_size - frame::abi_reg_args_size) / Interpreter::stackElementSize;
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1430
17980
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1431 interpreter_frame->interpreter_frame_set_method(method);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1432 interpreter_frame->interpreter_frame_set_locals(locals_base);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1433 interpreter_frame->interpreter_frame_set_cpcache(method->constants()->cache());
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1434 interpreter_frame->interpreter_frame_set_esp(esp);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1435 interpreter_frame->interpreter_frame_set_monitor_end((BasicObjectLock *)monitor);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1436 interpreter_frame->interpreter_frame_set_top_frame_sp(top_frame_sp);
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1437 if (!is_bottom_frame) {
0bf37f737702 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 17917
diff changeset
1438 interpreter_frame->interpreter_frame_set_sender_sp(sender_sp);
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1439 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1440 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1441
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1442 // =============================================================================
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1443 // Exceptions
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1444
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1445 void TemplateInterpreterGenerator::generate_throw_exception() {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1446 Register Rexception = R17_tos,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1447 Rcontinuation = R3_RET;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1448
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1449 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1450 // Entry point if an method returns with a pending exception (rethrow).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1451 Interpreter::_rethrow_exception_entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1452 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1453 __ restore_interpreter_state(R11_scratch1); // Sets R11_scratch1 = fp.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1454 __ ld(R12_scratch2, _ijava_state_neg(top_frame_sp), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1455 __ resize_frame_absolute(R12_scratch2, R11_scratch1, R0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1456
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1457 // Compiled code destroys templateTableBase, reload.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1458 __ load_const_optimized(R25_templateTableBase, (address)Interpreter::dispatch_table((TosState)0), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1459 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1460
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1461 // Entry point if a interpreted method throws an exception (throw).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1462 Interpreter::_throw_exception_entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1463 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1464 __ mr(Rexception, R3_RET);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1465
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1466 __ verify_thread();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1467 __ verify_oop(Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1468
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1469 // Expression stack must be empty before entering the VM in case of an exception.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1470 __ empty_expression_stack();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1471 // Find exception handler address and preserve exception oop.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1472 // Call C routine to find handler and jump to it.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1473 __ call_VM(Rexception, CAST_FROM_FN_PTR(address, InterpreterRuntime::exception_handler_for_exception), Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1474 __ mtctr(Rcontinuation);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1475 // Push exception for exception handler bytecodes.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1476 __ push_ptr(Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1477
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1478 // Jump to exception handler (may be remove activation entry!).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1479 __ bctr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1480 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1481
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1482 // If the exception is not handled in the current frame the frame is
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1483 // removed and the exception is rethrown (i.e. exception
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1484 // continuation is _rethrow_exception).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1485 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1486 // Note: At this point the bci is still the bxi for the instruction
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1487 // which caused the exception and the expression stack is
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1488 // empty. Thus, for any VM calls at this point, GC will find a legal
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1489 // oop map (with empty expression stack).
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1490
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1491 // In current activation
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1492 // tos: exception
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1493 // bcp: exception bcp
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1494
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1495 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1496 // JVMTI PopFrame support
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1497
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1498 Interpreter::_remove_activation_preserving_args_entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1499 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1500 // Set the popframe_processing bit in popframe_condition indicating that we are
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1501 // currently handling popframe, so that call_VMs that may happen later do not
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1502 // trigger new popframe handling cycles.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1503 __ lwz(R11_scratch1, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1504 __ ori(R11_scratch1, R11_scratch1, JavaThread::popframe_processing_bit);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1505 __ stw(R11_scratch1, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1506
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1507 // Empty the expression stack, as in normal exception handling.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1508 __ empty_expression_stack();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1509 __ unlock_if_synchronized_method(vtos, /* throw_monitor_exception */ false, /* install_monitor_exception */ false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1510
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1511 // Check to see whether we are returning to a deoptimized frame.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1512 // (The PopFrame call ensures that the caller of the popped frame is
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1513 // either interpreted or compiled and deoptimizes it if compiled.)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1514 // Note that we don't compare the return PC against the
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1515 // deoptimization blob's unpack entry because of the presence of
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1516 // adapter frames in C2.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1517 Label Lcaller_not_deoptimized;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1518 Register return_pc = R3_ARG1;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1519 __ ld(return_pc, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1520 __ ld(return_pc, _abi(lr), return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1521 __ call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::interpreter_contains), return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1522 __ cmpdi(CCR0, R3_RET, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1523 __ bne(CCR0, Lcaller_not_deoptimized);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1524
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1525 // The deoptimized case.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1526 // In this case, we can't call dispatch_next() after the frame is
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1527 // popped, but instead must save the incoming arguments and restore
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1528 // them after deoptimization has occurred.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1529 __ ld(R4_ARG2, in_bytes(Method::const_offset()), R19_method);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1530 __ lhz(R4_ARG2 /* number of params */, in_bytes(ConstMethod::size_of_parameters_offset()), R4_ARG2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1531 __ slwi(R4_ARG2, R4_ARG2, Interpreter::logStackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1532 __ addi(R5_ARG3, R18_locals, Interpreter::stackElementSize);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1533 __ subf(R5_ARG3, R4_ARG2, R5_ARG3);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1534 // Save these arguments.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1535 __ call_VM_leaf(CAST_FROM_FN_PTR(address, Deoptimization::popframe_preserve_args), R16_thread, R4_ARG2, R5_ARG3);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1536
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1537 // Inform deoptimization that it is responsible for restoring these arguments.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1538 __ load_const_optimized(R11_scratch1, JavaThread::popframe_force_deopt_reexecution_bit);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1539 __ stw(R11_scratch1, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1540
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1541 // Return from the current method into the deoptimization blob. Will eventually
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1542 // end up in the deopt interpeter entry, deoptimization prepared everything that
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1543 // we will reexecute the call that called us.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1544 __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*reload return_pc*/ return_pc, R11_scratch1, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1545 __ mtlr(return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1546 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1547
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1548 // The non-deoptimized case.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1549 __ bind(Lcaller_not_deoptimized);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1550
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1551 // Clear the popframe condition flag.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1552 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1553 __ stw(R0, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1554
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1555 // Get out of the current method and re-execute the call that called us.
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1556 __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*return_pc*/ noreg, R11_scratch1, R12_scratch2);
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1557 __ restore_interpreter_state(R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1558 __ ld(R12_scratch2, _ijava_state_neg(top_frame_sp), R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1559 __ resize_frame_absolute(R12_scratch2, R11_scratch1, R0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1560 if (ProfileInterpreter) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1561 __ set_method_data_pointer_for_bcp();
20710
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1562 __ ld(R11_scratch1, 0, R1_SP);
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1563 __ std(R28_mdx, _ijava_state_neg(mdx), R11_scratch1);
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1564 }
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1565 #if INCLUDE_JVMTI
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1566 Label L_done;
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1567
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1568 __ lbz(R11_scratch1, 0, R14_bcp);
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1569 __ cmpwi(CCR0, R11_scratch1, Bytecodes::_invokestatic);
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1570 __ bne(CCR0, L_done);
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1571
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1572 // The member name argument must be restored if _invokestatic is re-executed after a PopFrame call.
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1573 // Detect such a case in the InterpreterRuntime function and return the member name argument, or NULL.
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1574 __ ld(R4_ARG2, 0, R18_locals);
20710
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1575 __ MacroAssembler::call_VM(R4_ARG2, CAST_FROM_FN_PTR(address, InterpreterRuntime::member_name_arg_or_null), R4_ARG2, R19_method, R14_bcp, false);
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1576 __ restore_interpreter_state(R11_scratch1, /*bcp_and_mdx_only*/ true);
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1577 __ cmpdi(CCR0, R4_ARG2, 0);
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1578 __ beq(CCR0, L_done);
20710
c5e86c5cd22e 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 20418
diff changeset
1579 __ std(R4_ARG2, wordSize, R15_esp);
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1580 __ bind(L_done);
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17848
diff changeset
1581 #endif // INCLUDE_JVMTI
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1582 __ dispatch_next(vtos);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1583 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1584 // end of JVMTI PopFrame support
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1585
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1586 // --------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1587 // Remove activation exception entry.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1588 // This is jumped to if an interpreted method can't handle an exception itself
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1589 // (we come from the throw/rethrow exception entry above). We're going to call
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1590 // into the VM to find the exception handler in the caller, pop the current
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1591 // frame and return the handler we calculated.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1592 Interpreter::_remove_activation_entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1593 {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1594 __ pop_ptr(Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1595 __ verify_thread();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1596 __ verify_oop(Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1597 __ std(Rexception, in_bytes(JavaThread::vm_result_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1598
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1599 __ unlock_if_synchronized_method(vtos, /* throw_monitor_exception */ false, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1600 __ notify_method_exit(false, vtos, InterpreterMacroAssembler::SkipNotifyJVMTI, false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1601
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1602 __ get_vm_result(Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1603
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1604 // We are done with this activation frame; find out where to go next.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1605 // The continuation point will be an exception handler, which expects
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1606 // the following registers set up:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1607 //
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1608 // RET: exception oop
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1609 // ARG2: Issuing PC (see generate_exception_blob()), only used if the caller is compiled.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1610
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1611 Register return_pc = R31; // Needs to survive the runtime call.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1612 __ ld(return_pc, 0, R1_SP);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1613 __ ld(return_pc, _abi(lr), return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1614 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), R16_thread, return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1615
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1616 // Remove the current activation.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1617 __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*return_pc*/ noreg, R11_scratch1, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1618
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1619 __ mr(R4_ARG2, return_pc);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1620 __ mtlr(R3_RET);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1621 __ mr(R3_RET, Rexception);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1622 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1623 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1624 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1625
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1626 // JVMTI ForceEarlyReturn support.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1627 // Returns "in the middle" of a method with a "fake" return value.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1628 address TemplateInterpreterGenerator::generate_earlyret_entry_for(TosState state) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1629
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1630 Register Rscratch1 = R11_scratch1,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1631 Rscratch2 = R12_scratch2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1632
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1633 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1634 __ empty_expression_stack();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1635
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1636 __ load_earlyret_value(state, Rscratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1637
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1638 __ ld(Rscratch1, in_bytes(JavaThread::jvmti_thread_state_offset()), R16_thread);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1639 // Clear the earlyret state.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1640 __ li(R0, 0);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1641 __ stw(R0, in_bytes(JvmtiThreadState::earlyret_state_offset()), Rscratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1642
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1643 __ remove_activation(state, false, false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1644 // Copied from TemplateTable::_return.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1645 // Restoration of lr done by remove_activation.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1646 switch (state) {
23627
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1647 // Narrow result if state is itos but result type is smaller.
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1648 case itos: __ narrow(R17_tos); /* fall through */
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1649 case ltos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1650 case btos:
23627
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1651 case ztos:
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1652 case ctos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1653 case stos:
23627
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1654 case atos: __ mr(R3_RET, R17_tos); break;
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1655 case ftos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1656 case dtos: __ fmr(F1_RET, F15_ftos); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1657 case vtos: // This might be a constructor. Final fields (and volatile fields on PPC64) need
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1658 // to get visible before the reference to the object gets stored anywhere.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1659 __ membar(Assembler::StoreStore); break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1660 default : ShouldNotReachHere();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1661 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1662 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1663
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1664 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1665 } // end of ForceEarlyReturn support
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1666
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1667 //-----------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1668 // Helper for vtos entry point generation
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1669
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1670 void TemplateInterpreterGenerator::set_vtos_entry_points(Template* t,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1671 address& bep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1672 address& cep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1673 address& sep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1674 address& aep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1675 address& iep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1676 address& lep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1677 address& fep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1678 address& dep,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1679 address& vep) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1680 assert(t->is_valid() && t->tos_in() == vtos, "illegal template");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1681 Label L;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1682
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1683 aep = __ pc(); __ push_ptr(); __ b(L);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1684 fep = __ pc(); __ push_f(); __ b(L);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1685 dep = __ pc(); __ push_d(); __ b(L);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1686 lep = __ pc(); __ push_l(); __ b(L);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1687 __ align(32, 12, 24); // align L
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1688 bep = cep = sep =
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1689 iep = __ pc(); __ push_i();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1690 vep = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1691 __ bind(L);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1692 generate_and_dispatch(t);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1693 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1695 //-----------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1696 // Generation of individual instructions
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1697
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1698 // helpers for generate_and_dispatch
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1699
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1700 InterpreterGenerator::InterpreterGenerator(StubQueue* code)
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1701 : TemplateInterpreterGenerator(code) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1702 generate_all(); // Down here so it can be "virtual".
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1703 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1704
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1705 //-----------------------------------------------------------------------------
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1706
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1707 // Non-product code
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1708 #ifndef PRODUCT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1709 address TemplateInterpreterGenerator::generate_trace_code(TosState state) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1710 //__ flush_bundle();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1711 address entry = __ pc();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1712
17848
6048424d3865 8038201: Clean up misleading usage of malloc() in init_system_properties_values()
goetz
parents: 14694
diff changeset
1713 const char *bname = NULL;
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1714 uint tsize = 0;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1715 switch(state) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1716 case ftos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1717 bname = "trace_code_ftos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1718 tsize = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1719 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1720 case btos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1721 bname = "trace_code_btos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1722 tsize = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1723 break;
23627
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1724 case ztos:
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1725 bname = "trace_code_ztos {";
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1726 tsize = 2;
47cd96b2510f 8148487: PPC64: Better byte behavior
simonis
parents: 20710
diff changeset
1727 break;
14694
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1728 case ctos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1729 bname = "trace_code_ctos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1730 tsize = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1731 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1732 case stos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1733 bname = "trace_code_stos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1734 tsize = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1735 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1736 case itos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1737 bname = "trace_code_itos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1738 tsize = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1739 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1740 case ltos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1741 bname = "trace_code_ltos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1742 tsize = 3;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1743 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1744 case atos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1745 bname = "trace_code_atos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1746 tsize = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1747 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1748 case vtos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1749 // Note: In case of vtos, the topmost of stack value could be a int or doubl
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1750 // In case of a double (2 slots) we won't see the 2nd stack value.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1751 // Maybe we simply should print the topmost 3 stack slots to cope with the problem.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1752 bname = "trace_code_vtos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1753 tsize = 2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1754
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1755 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1756 case dtos:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1757 bname = "trace_code_dtos {";
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1758 tsize = 3;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1759 break;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1760 default:
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1761 ShouldNotReachHere();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1762 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1763 BLOCK_COMMENT(bname);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1764
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1765 // Support short-cut for TraceBytecodesAt.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1766 // Don't call into the VM if we don't want to trace to speed up things.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1767 Label Lskip_vm_call;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1768 if (TraceBytecodesAt > 0 && TraceBytecodesAt < max_intx) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1769 int offs1 = __ load_const_optimized(R11_scratch1, (address) &TraceBytecodesAt, R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1770 int offs2 = __ load_const_optimized(R12_scratch2, (address) &BytecodeCounter::_counter_value, R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1771 __ ld(R11_scratch1, offs1, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1772 __ lwa(R12_scratch2, offs2, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1773 __ cmpd(CCR0, R12_scratch2, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1774 __ blt(CCR0, Lskip_vm_call);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1775 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1776
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1777 __ push(state);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1778 // Load 2 topmost expression stack values.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1779 __ ld(R6_ARG4, tsize*Interpreter::stackElementSize, R15_esp);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1780 __ ld(R5_ARG3, Interpreter::stackElementSize, R15_esp);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1781 __ mflr(R31);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1782 __ call_VM(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::trace_bytecode), /* unused */ R4_ARG2, R5_ARG3, R6_ARG4, false);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1783 __ mtlr(R31);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1784 __ pop(state);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1785
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1786 if (TraceBytecodesAt > 0 && TraceBytecodesAt < max_intx) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1787 __ bind(Lskip_vm_call);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1788 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1789 __ blr();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1790 BLOCK_COMMENT("} trace_code");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1791 return entry;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1792 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1793
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1794 void TemplateInterpreterGenerator::count_bytecode() {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1795 int offs = __ load_const_optimized(R11_scratch1, (address) &BytecodeCounter::_counter_value, R12_scratch2, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1796 __ lwz(R12_scratch2, offs, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1797 __ addi(R12_scratch2, R12_scratch2, 1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1798 __ stw(R12_scratch2, offs, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1799 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1800
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1801 void TemplateInterpreterGenerator::histogram_bytecode(Template* t) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1802 int offs = __ load_const_optimized(R11_scratch1, (address) &BytecodeHistogram::_counters[t->bytecode()], R12_scratch2, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1803 __ lwz(R12_scratch2, offs, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1804 __ addi(R12_scratch2, R12_scratch2, 1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1805 __ stw(R12_scratch2, offs, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1806 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1807
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1808 void TemplateInterpreterGenerator::histogram_bytecode_pair(Template* t) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1809 const Register addr = R11_scratch1,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1810 tmp = R12_scratch2;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1811 // Get index, shift out old bytecode, bring in new bytecode, and store it.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1812 // _index = (_index >> log2_number_of_codes) |
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1813 // (bytecode << log2_number_of_codes);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1814 int offs1 = __ load_const_optimized(addr, (address)&BytecodePairHistogram::_index, tmp, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1815 __ lwz(tmp, offs1, addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1816 __ srwi(tmp, tmp, BytecodePairHistogram::log2_number_of_codes);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1817 __ ori(tmp, tmp, ((int) t->bytecode()) << BytecodePairHistogram::log2_number_of_codes);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1818 __ stw(tmp, offs1, addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1819
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1820 // Bump bucket contents.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1821 // _counters[_index] ++;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1822 int offs2 = __ load_const_optimized(addr, (address)&BytecodePairHistogram::_counters, R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1823 __ sldi(tmp, tmp, LogBytesPerInt);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1824 __ add(addr, tmp, addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1825 __ lwz(tmp, offs2, addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1826 __ addi(tmp, tmp, 1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1827 __ stw(tmp, offs2, addr);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1828 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1829
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1830 void TemplateInterpreterGenerator::trace_bytecode(Template* t) {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1831 // Call a little run-time stub to avoid blow-up for each bytecode.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1832 // The run-time runtime saves the right registers, depending on
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1833 // the tosca in-state for the given template.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1834
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1835 assert(Interpreter::trace_code(t->tos_in()) != NULL,
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1836 "entry must have been generated");
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1837
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1838 // Note: we destroy LR here.
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1839 __ bl(Interpreter::trace_code(t->tos_in()));
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1840 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1841
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1842 void TemplateInterpreterGenerator::stop_interpreter_at() {
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1843 Label L;
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1844 int offs1 = __ load_const_optimized(R11_scratch1, (address) &StopInterpreterAt, R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1845 int offs2 = __ load_const_optimized(R12_scratch2, (address) &BytecodeCounter::_counter_value, R0, true);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1846 __ ld(R11_scratch1, offs1, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1847 __ lwa(R12_scratch2, offs2, R12_scratch2);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1848 __ cmpd(CCR0, R12_scratch2, R11_scratch1);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1849 __ bne(CCR0, L);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1850 __ illtrap();
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1851 __ bind(L);
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1852 }
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1853
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1854 #endif // !PRODUCT
58cf34613a72 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
1855 #endif // !CC_INTERP