src/cpu/x86/vm/vtableStubs_x86_32.cpp

Thu, 24 May 2018 17:06:56 +0800

author
aoqi
date
Thu, 24 May 2018 17:06:56 +0800
changeset 8604
04d83ba48607
parent 6876
710a3c8b516e
child 9041
95a08233f46c
permissions
-rw-r--r--

Merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "asm/macroAssembler.hpp"
aoqi@0 27 #include "code/vtableStubs.hpp"
aoqi@0 28 #include "interp_masm_x86.hpp"
aoqi@0 29 #include "memory/resourceArea.hpp"
aoqi@0 30 #include "oops/instanceKlass.hpp"
aoqi@0 31 #include "oops/klassVtable.hpp"
aoqi@0 32 #include "runtime/sharedRuntime.hpp"
aoqi@0 33 #include "vmreg_x86.inline.hpp"
aoqi@0 34 #ifdef COMPILER2
aoqi@0 35 #include "opto/runtime.hpp"
aoqi@0 36 #endif
aoqi@0 37
aoqi@0 38 // machine-dependent part of VtableStubs: create VtableStub of correct size and
aoqi@0 39 // initialize its code
aoqi@0 40
aoqi@0 41 #define __ masm->
aoqi@0 42
aoqi@0 43 #ifndef PRODUCT
aoqi@0 44 extern "C" void bad_compiled_vtable_index(JavaThread* thread, oop receiver, int index);
aoqi@0 45 #endif
aoqi@0 46
aoqi@0 47 // These stubs are used by the compiler only.
aoqi@0 48 // Argument registers, which must be preserved:
aoqi@0 49 // rcx - receiver (always first argument)
aoqi@0 50 // rdx - second argument (if any)
aoqi@0 51 // Other registers that might be usable:
aoqi@0 52 // rax - inline cache register (is interface for itable stub)
aoqi@0 53 // rbx - method (used when calling out to interpreter)
aoqi@0 54 // Available now, but may become callee-save at some point:
aoqi@0 55 // rsi, rdi
aoqi@0 56 // Note that rax and rdx are also used for return values.
aoqi@0 57 //
aoqi@0 58 VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
aoqi@0 59 const int i486_code_length = VtableStub::pd_code_size_limit(true);
aoqi@0 60 VtableStub* s = new(i486_code_length) VtableStub(true, vtable_index);
aoqi@0 61 // Can be NULL if there is no free space in the code cache.
aoqi@0 62 if (s == NULL) {
aoqi@0 63 return NULL;
aoqi@0 64 }
aoqi@0 65
aoqi@0 66 ResourceMark rm;
aoqi@0 67 CodeBuffer cb(s->entry_point(), i486_code_length);
aoqi@0 68 MacroAssembler* masm = new MacroAssembler(&cb);
aoqi@0 69
aoqi@0 70 #ifndef PRODUCT
aoqi@0 71
aoqi@0 72 if (CountCompiledCalls) {
aoqi@0 73 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
aoqi@0 74 }
aoqi@0 75 #endif /* PRODUCT */
aoqi@0 76
aoqi@0 77 // get receiver (need to skip return address on top of stack)
aoqi@0 78 assert(VtableStub::receiver_location() == rcx->as_VMReg(), "receiver expected in rcx");
aoqi@0 79
aoqi@0 80 // get receiver klass
aoqi@0 81 address npe_addr = __ pc();
aoqi@0 82 __ movptr(rax, Address(rcx, oopDesc::klass_offset_in_bytes()));
aoqi@0 83
aoqi@0 84 #ifndef PRODUCT
aoqi@0 85 if (DebugVtables) {
aoqi@0 86 Label L;
aoqi@0 87 // check offset vs vtable length
aoqi@0 88 __ cmpl(Address(rax, InstanceKlass::vtable_length_offset()*wordSize), vtable_index*vtableEntry::size());
aoqi@0 89 __ jcc(Assembler::greater, L);
aoqi@0 90 __ movl(rbx, vtable_index);
aoqi@0 91 __ call_VM(noreg, CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), rcx, rbx);
aoqi@0 92 __ bind(L);
aoqi@0 93 }
aoqi@0 94 #endif // PRODUCT
aoqi@0 95
aoqi@0 96 const Register method = rbx;
aoqi@0 97
aoqi@0 98 // load Method* and target address
aoqi@0 99 __ lookup_virtual_method(rax, vtable_index, method);
aoqi@0 100
aoqi@0 101 if (DebugVtables) {
aoqi@0 102 Label L;
aoqi@0 103 __ cmpptr(method, (int32_t)NULL_WORD);
aoqi@0 104 __ jcc(Assembler::equal, L);
aoqi@0 105 __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
aoqi@0 106 __ jcc(Assembler::notZero, L);
aoqi@0 107 __ stop("Vtable entry is NULL");
aoqi@0 108 __ bind(L);
aoqi@0 109 }
aoqi@0 110
aoqi@0 111 // rax,: receiver klass
aoqi@0 112 // method (rbx): Method*
aoqi@0 113 // rcx: receiver
aoqi@0 114 address ame_addr = __ pc();
aoqi@0 115 __ jmp( Address(method, Method::from_compiled_offset()));
aoqi@0 116
aoqi@0 117 masm->flush();
aoqi@0 118
aoqi@0 119 if (PrintMiscellaneous && (WizardMode || Verbose)) {
aoqi@0 120 tty->print_cr("vtable #%d at "PTR_FORMAT"[%d] left over: %d",
aoqi@0 121 vtable_index, p2i(s->entry_point()),
aoqi@0 122 (int)(s->code_end() - s->entry_point()),
aoqi@0 123 (int)(s->code_end() - __ pc()));
aoqi@0 124 }
aoqi@0 125 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
aoqi@0 126 // shut the door on sizing bugs
aoqi@0 127 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
aoqi@0 128 assert(vtable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
aoqi@0 129
aoqi@0 130 s->set_exception_points(npe_addr, ame_addr);
aoqi@0 131 return s;
aoqi@0 132 }
aoqi@0 133
aoqi@0 134
aoqi@0 135 VtableStub* VtableStubs::create_itable_stub(int itable_index) {
aoqi@0 136 // Note well: pd_code_size_limit is the absolute minimum we can get away with. If you
aoqi@0 137 // add code here, bump the code stub size returned by pd_code_size_limit!
aoqi@0 138 const int i486_code_length = VtableStub::pd_code_size_limit(false);
aoqi@0 139 VtableStub* s = new(i486_code_length) VtableStub(false, itable_index);
aoqi@0 140 // Can be NULL if there is no free space in the code cache.
aoqi@0 141 if (s == NULL) {
aoqi@0 142 return NULL;
aoqi@0 143 }
aoqi@0 144
aoqi@0 145 ResourceMark rm;
aoqi@0 146 CodeBuffer cb(s->entry_point(), i486_code_length);
aoqi@0 147 MacroAssembler* masm = new MacroAssembler(&cb);
aoqi@0 148
aoqi@0 149 // Entry arguments:
aoqi@0 150 // rax,: Interface
aoqi@0 151 // rcx: Receiver
aoqi@0 152
aoqi@0 153 #ifndef PRODUCT
aoqi@0 154 if (CountCompiledCalls) {
aoqi@0 155 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
aoqi@0 156 }
aoqi@0 157 #endif /* PRODUCT */
aoqi@0 158 // get receiver (need to skip return address on top of stack)
aoqi@0 159
aoqi@0 160 assert(VtableStub::receiver_location() == rcx->as_VMReg(), "receiver expected in rcx");
aoqi@0 161
aoqi@0 162 // get receiver klass (also an implicit null-check)
aoqi@0 163 address npe_addr = __ pc();
aoqi@0 164 __ movptr(rsi, Address(rcx, oopDesc::klass_offset_in_bytes()));
aoqi@0 165
aoqi@0 166 // Most registers are in use; we'll use rax, rbx, rsi, rdi
aoqi@0 167 // (If we need to make rsi, rdi callee-save, do a push/pop here.)
aoqi@0 168 const Register method = rbx;
aoqi@0 169 Label throw_icce;
aoqi@0 170
aoqi@0 171 // Get Method* and entrypoint for compiler
aoqi@0 172 __ lookup_interface_method(// inputs: rec. class, interface, itable index
aoqi@0 173 rsi, rax, itable_index,
aoqi@0 174 // outputs: method, scan temp. reg
aoqi@0 175 method, rdi,
aoqi@0 176 throw_icce);
aoqi@0 177
aoqi@0 178 // method (rbx): Method*
aoqi@0 179 // rcx: receiver
aoqi@0 180
aoqi@0 181 #ifdef ASSERT
aoqi@0 182 if (DebugVtables) {
aoqi@0 183 Label L1;
aoqi@0 184 __ cmpptr(method, (int32_t)NULL_WORD);
aoqi@0 185 __ jcc(Assembler::equal, L1);
aoqi@0 186 __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
aoqi@0 187 __ jcc(Assembler::notZero, L1);
aoqi@0 188 __ stop("Method* is null");
aoqi@0 189 __ bind(L1);
aoqi@0 190 }
aoqi@0 191 #endif // ASSERT
aoqi@0 192
aoqi@0 193 address ame_addr = __ pc();
aoqi@0 194 __ jmp(Address(method, Method::from_compiled_offset()));
aoqi@0 195
aoqi@0 196 __ bind(throw_icce);
aoqi@0 197 __ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry()));
aoqi@0 198 masm->flush();
aoqi@0 199
aoqi@0 200 if (PrintMiscellaneous && (WizardMode || Verbose)) {
aoqi@0 201 tty->print_cr("itable #%d at "PTR_FORMAT"[%d] left over: %d",
aoqi@0 202 itable_index, p2i(s->entry_point()),
aoqi@0 203 (int)(s->code_end() - s->entry_point()),
aoqi@0 204 (int)(s->code_end() - __ pc()));
aoqi@0 205 }
aoqi@0 206 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
aoqi@0 207 // shut the door on sizing bugs
aoqi@0 208 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
aoqi@0 209 assert(itable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
aoqi@0 210
aoqi@0 211 s->set_exception_points(npe_addr, ame_addr);
aoqi@0 212 return s;
aoqi@0 213 }
aoqi@0 214
aoqi@0 215
aoqi@0 216
aoqi@0 217 int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
aoqi@0 218 if (is_vtable_stub) {
aoqi@0 219 // Vtable stub size
aoqi@0 220 return (DebugVtables ? 210 : 16) + (CountCompiledCalls ? 6 : 0);
aoqi@0 221 } else {
aoqi@0 222 // Itable stub size
aoqi@0 223 return (DebugVtables ? 256 : 66) + (CountCompiledCalls ? 6 : 0);
aoqi@0 224 }
aoqi@0 225 // In order to tune these parameters, run the JVM with VM options
aoqi@0 226 // +PrintMiscellaneous and +WizardMode to see information about
aoqi@0 227 // actual itable stubs. Look for lines like this:
aoqi@0 228 // itable #1 at 0x5551212[65] left over: 3
aoqi@0 229 // Reduce the constants so that the "left over" number is >=3
aoqi@0 230 // for the common cases.
aoqi@0 231 // Do not aim at a left-over number of zero, because a
aoqi@0 232 // large vtable or itable index (> 16) will require a 32-bit
aoqi@0 233 // immediate displacement instead of an 8-bit one.
aoqi@0 234 //
aoqi@0 235 // The JVM98 app. _202_jess has a megamorphic interface call.
aoqi@0 236 // The itable code looks like this:
aoqi@0 237 // Decoding VtableStub itbl[1]@1
aoqi@0 238 // mov 0x4(%ecx),%esi
aoqi@0 239 // mov 0xe8(%esi),%edi
aoqi@0 240 // lea 0x130(%esi,%edi,4),%edi
aoqi@0 241 // add $0x7,%edi
aoqi@0 242 // and $0xfffffff8,%edi
aoqi@0 243 // lea 0x4(%esi),%esi
aoqi@0 244 // mov (%edi),%ebx
aoqi@0 245 // cmp %ebx,%eax
aoqi@0 246 // je success
aoqi@0 247 // loop:
aoqi@0 248 // test %ebx,%ebx
aoqi@0 249 // je throw_icce
aoqi@0 250 // add $0x8,%edi
aoqi@0 251 // mov (%edi),%ebx
aoqi@0 252 // cmp %ebx,%eax
aoqi@0 253 // jne loop
aoqi@0 254 // success:
aoqi@0 255 // mov 0x4(%edi),%edi
aoqi@0 256 // mov (%esi,%edi,1),%ebx
aoqi@0 257 // jmp *0x44(%ebx)
aoqi@0 258 // throw_icce:
aoqi@0 259 // jmp throw_ICCE_entry
aoqi@0 260 }
aoqi@0 261
aoqi@0 262 int VtableStub::pd_code_alignment() {
aoqi@0 263 return wordSize;
aoqi@0 264 }

mercurial