annotate src/cpu/ppc/vm/templateInterpreter_ppc.cpp @ 20804:7848fc12602b

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