annotate src/cpu/ppc/vm/templateInterpreter_ppc.cpp @ 18857:5214669b01f2

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