src/cpu/x86/vm/vtableStubs_x86_64.cpp

Fri, 16 Aug 2019 16:50:17 +0200

author
eosterlund
date
Fri, 16 Aug 2019 16:50:17 +0200
changeset 9834
bb1da64b0492
parent 9327
f96fcd9e1e1b
child 9448
73d689add964
permissions
-rw-r--r--

8229345: Memory leak due to vtable stubs not being shared on SPARC
Reviewed-by: mdoerr, dholmes, kvn

duke@435 1 /*
dbuck@8997 2 * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
twisti@4318 26 #include "asm/macroAssembler.hpp"
stefank@2314 27 #include "code/vtableStubs.hpp"
roland@5987 28 #include "interp_masm_x86.hpp"
stefank@2314 29 #include "memory/resourceArea.hpp"
dbuck@8997 30 #include "oops/compiledICHolder.hpp"
stefank@2314 31 #include "oops/instanceKlass.hpp"
stefank@2314 32 #include "oops/klassVtable.hpp"
stefank@2314 33 #include "runtime/sharedRuntime.hpp"
stefank@2314 34 #include "vmreg_x86.inline.hpp"
stefank@2314 35 #ifdef COMPILER2
stefank@2314 36 #include "opto/runtime.hpp"
stefank@2314 37 #endif
duke@435 38
drchase@6680 39 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
drchase@6680 40
duke@435 41 // machine-dependent part of VtableStubs: create VtableStub of correct size and
duke@435 42 // initialize its code
duke@435 43
duke@435 44 #define __ masm->
duke@435 45
duke@435 46 #ifndef PRODUCT
duke@435 47 extern "C" void bad_compiled_vtable_index(JavaThread* thread,
duke@435 48 oop receiver,
duke@435 49 int index);
duke@435 50 #endif
duke@435 51
duke@435 52 VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
duke@435 53 const int amd64_code_length = VtableStub::pd_code_size_limit(true);
duke@435 54 VtableStub* s = new(amd64_code_length) VtableStub(true, vtable_index);
anoll@5762 55 // Can be NULL if there is no free space in the code cache.
anoll@5762 56 if (s == NULL) {
anoll@5762 57 return NULL;
anoll@5762 58 }
anoll@5762 59
duke@435 60 ResourceMark rm;
duke@435 61 CodeBuffer cb(s->entry_point(), amd64_code_length);
duke@435 62 MacroAssembler* masm = new MacroAssembler(&cb);
duke@435 63
duke@435 64 #ifndef PRODUCT
duke@435 65 if (CountCompiledCalls) {
duke@435 66 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
duke@435 67 }
duke@435 68 #endif
duke@435 69
duke@435 70 // get receiver (need to skip return address on top of stack)
duke@435 71 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
duke@435 72
duke@435 73 // Free registers (non-args) are rax, rbx
duke@435 74
duke@435 75 // get receiver klass
duke@435 76 address npe_addr = __ pc();
coleenp@548 77 __ load_klass(rax, j_rarg0);
duke@435 78
duke@435 79 #ifndef PRODUCT
duke@435 80 if (DebugVtables) {
duke@435 81 Label L;
duke@435 82 // check offset vs vtable length
coleenp@4037 83 __ cmpl(Address(rax, InstanceKlass::vtable_length_offset() * wordSize),
duke@435 84 vtable_index * vtableEntry::size());
duke@435 85 __ jcc(Assembler::greater, L);
duke@435 86 __ movl(rbx, vtable_index);
duke@435 87 __ call_VM(noreg,
duke@435 88 CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), j_rarg0, rbx);
duke@435 89 __ bind(L);
duke@435 90 }
duke@435 91 #endif // PRODUCT
duke@435 92
coleenp@4037 93 // load Method* and target address
duke@435 94 const Register method = rbx;
duke@435 95
twisti@3969 96 __ lookup_virtual_method(rax, vtable_index, method);
twisti@3969 97
duke@435 98 if (DebugVtables) {
duke@435 99 Label L;
never@739 100 __ cmpptr(method, (int32_t)NULL_WORD);
duke@435 101 __ jcc(Assembler::equal, L);
coleenp@4037 102 __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
duke@435 103 __ jcc(Assembler::notZero, L);
duke@435 104 __ stop("Vtable entry is NULL");
duke@435 105 __ bind(L);
duke@435 106 }
duke@435 107 // rax: receiver klass
coleenp@4037 108 // rbx: Method*
duke@435 109 // rcx: receiver
duke@435 110 address ame_addr = __ pc();
coleenp@4037 111 __ jmp( Address(rbx, Method::from_compiled_offset()));
duke@435 112
duke@435 113 __ flush();
jrose@1058 114
jrose@1058 115 if (PrintMiscellaneous && (WizardMode || Verbose)) {
kevinw@9327 116 tty->print_cr("vtable #%d at " PTR_FORMAT "[%d] left over: %d",
jrose@1058 117 vtable_index, s->entry_point(),
jrose@1058 118 (int)(s->code_end() - s->entry_point()),
jrose@1058 119 (int)(s->code_end() - __ pc()));
jrose@1058 120 }
jrose@1058 121 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
jrose@1144 122 // shut the door on sizing bugs
jrose@1144 123 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
jrose@1144 124 assert(vtable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
jrose@1058 125
duke@435 126 s->set_exception_points(npe_addr, ame_addr);
duke@435 127 return s;
duke@435 128 }
duke@435 129
duke@435 130
jrose@1058 131 VtableStub* VtableStubs::create_itable_stub(int itable_index) {
duke@435 132 // Note well: pd_code_size_limit is the absolute minimum we can get
duke@435 133 // away with. If you add code here, bump the code stub size
duke@435 134 // returned by pd_code_size_limit!
duke@435 135 const int amd64_code_length = VtableStub::pd_code_size_limit(false);
jrose@1058 136 VtableStub* s = new(amd64_code_length) VtableStub(false, itable_index);
anoll@5762 137 // Can be NULL if there is no free space in the code cache.
anoll@5762 138 if (s == NULL) {
anoll@5762 139 return NULL;
anoll@5762 140 }
anoll@5762 141
duke@435 142 ResourceMark rm;
duke@435 143 CodeBuffer cb(s->entry_point(), amd64_code_length);
duke@435 144 MacroAssembler* masm = new MacroAssembler(&cb);
duke@435 145
duke@435 146 #ifndef PRODUCT
duke@435 147 if (CountCompiledCalls) {
duke@435 148 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
duke@435 149 }
duke@435 150 #endif
duke@435 151
duke@435 152 // Entry arguments:
dbuck@8997 153 // rax: CompiledICHolder
duke@435 154 // j_rarg0: Receiver
duke@435 155
jrose@1058 156 // Most registers are in use; we'll use rax, rbx, r10, r11
jrose@1058 157 // (various calling sequences use r[cd]x, r[sd]i, r[89]; stay away from them)
dbuck@8997 158 const Register recv_klass_reg = r10;
dbuck@8997 159 const Register holder_klass_reg = rax; // declaring interface klass (DECC)
dbuck@8997 160 const Register resolved_klass_reg = rbx; // resolved interface klass (REFC)
dbuck@8997 161 const Register temp_reg = r11;
dbuck@8997 162
dbuck@8997 163 Label L_no_such_interface;
dbuck@8997 164
dbuck@8997 165 const Register icholder_reg = rax;
dbuck@8997 166 __ movptr(resolved_klass_reg, Address(icholder_reg, CompiledICHolder::holder_klass_offset()));
dbuck@8997 167 __ movptr(holder_klass_reg, Address(icholder_reg, CompiledICHolder::holder_metadata_offset()));
dbuck@8997 168
dbuck@8997 169 // get receiver klass (also an implicit null-check)
dbuck@8997 170 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
dbuck@8997 171 address npe_addr = __ pc();
dbuck@8997 172 __ load_klass(recv_klass_reg, j_rarg0);
dbuck@8997 173
dbuck@8997 174 // Receiver subtype check against REFC.
dbuck@8997 175 // Destroys recv_klass_reg value.
dbuck@8997 176 __ lookup_interface_method(// inputs: rec. class, interface
dbuck@8997 177 recv_klass_reg, resolved_klass_reg, noreg,
dbuck@8997 178 // outputs: scan temp. reg1, scan temp. reg2
dbuck@8997 179 recv_klass_reg, temp_reg,
dbuck@8997 180 L_no_such_interface,
dbuck@8997 181 /*return_method=*/false);
dbuck@8997 182
dbuck@8997 183 // Get selected method from declaring class and itable index
dbuck@8997 184 const Register method = rbx;
dbuck@8997 185 __ load_klass(recv_klass_reg, j_rarg0); // restore recv_klass_reg
dbuck@8997 186 __ lookup_interface_method(// inputs: rec. class, interface, itable index
dbuck@8997 187 recv_klass_reg, holder_klass_reg, itable_index,
dbuck@8997 188 // outputs: method, scan temp. reg
dbuck@8997 189 method, temp_reg,
dbuck@8997 190 L_no_such_interface);
duke@435 191
duke@435 192 // If we take a trap while this arg is on the stack we will not
duke@435 193 // be able to walk the stack properly. This is not an issue except
duke@435 194 // when there are mistakes in this assembly code that could generate
duke@435 195 // a spurious fault. Ask me how I know...
duke@435 196
coleenp@4037 197 // method (rbx): Method*
duke@435 198 // j_rarg0: receiver
duke@435 199
duke@435 200 #ifdef ASSERT
dcubed@451 201 if (DebugVtables) {
dcubed@451 202 Label L2;
never@739 203 __ cmpptr(method, (int32_t)NULL_WORD);
dcubed@451 204 __ jcc(Assembler::equal, L2);
coleenp@4037 205 __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
dcubed@451 206 __ jcc(Assembler::notZero, L2);
dcubed@451 207 __ stop("compiler entrypoint is null");
dcubed@451 208 __ bind(L2);
dcubed@451 209 }
duke@435 210 #endif // ASSERT
duke@435 211
coleenp@4037 212 // rbx: Method*
dcubed@451 213 // j_rarg0: receiver
dcubed@451 214 address ame_addr = __ pc();
coleenp@4037 215 __ jmp(Address(method, Method::from_compiled_offset()));
dcubed@451 216
dbuck@8997 217 __ bind(L_no_such_interface);
dcubed@451 218 __ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry()));
duke@435 219
duke@435 220 __ flush();
dcubed@451 221
jrose@1058 222 if (PrintMiscellaneous && (WizardMode || Verbose)) {
kevinw@9327 223 tty->print_cr("itable #%d at " PTR_FORMAT "[%d] left over: %d",
jrose@1058 224 itable_index, s->entry_point(),
jrose@1058 225 (int)(s->code_end() - s->entry_point()),
jrose@1058 226 (int)(s->code_end() - __ pc()));
jrose@1058 227 }
dcubed@451 228 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
jrose@1144 229 // shut the door on sizing bugs
jrose@1144 230 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
jrose@1144 231 assert(itable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
dcubed@451 232
duke@435 233 s->set_exception_points(npe_addr, ame_addr);
duke@435 234 return s;
duke@435 235 }
duke@435 236
duke@435 237 int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
duke@435 238 if (is_vtable_stub) {
duke@435 239 // Vtable stub size
coleenp@548 240 return (DebugVtables ? 512 : 24) + (CountCompiledCalls ? 13 : 0) +
ehelin@5694 241 (UseCompressedClassPointers ? MacroAssembler::instr_size_for_decode_klass_not_null() : 0);
duke@435 242 } else {
duke@435 243 // Itable stub size
dbuck@8997 244 return (DebugVtables ? 512 : 140) + (CountCompiledCalls ? 13 : 0) +
dbuck@8997 245 (UseCompressedClassPointers ? 2 * MacroAssembler::instr_size_for_decode_klass_not_null() : 0);
duke@435 246 }
jrose@1144 247 // In order to tune these parameters, run the JVM with VM options
jrose@1144 248 // +PrintMiscellaneous and +WizardMode to see information about
jrose@1144 249 // actual itable stubs. Look for lines like this:
jrose@1144 250 // itable #1 at 0x5551212[71] left over: 3
jrose@1144 251 // Reduce the constants so that the "left over" number is >=3
jrose@1144 252 // for the common cases.
jrose@1144 253 // Do not aim at a left-over number of zero, because a
jrose@1144 254 // large vtable or itable index (>= 32) will require a 32-bit
jrose@1144 255 // immediate displacement instead of an 8-bit one.
jrose@1144 256 //
jrose@1144 257 // The JVM98 app. _202_jess has a megamorphic interface call.
jrose@1144 258 // The itable code looks like this:
jrose@1144 259 // Decoding VtableStub itbl[1]@12
jrose@1144 260 // mov 0x8(%rsi),%r10
jrose@1144 261 // mov 0x198(%r10),%r11d
jrose@1144 262 // lea 0x218(%r10,%r11,8),%r11
jrose@1144 263 // lea 0x8(%r10),%r10
jrose@1144 264 // mov (%r11),%rbx
jrose@1144 265 // cmp %rbx,%rax
jrose@1144 266 // je success
jrose@1144 267 // loop:
jrose@1144 268 // test %rbx,%rbx
jrose@1144 269 // je throw_icce
jrose@1144 270 // add $0x10,%r11
jrose@1144 271 // mov (%r11),%rbx
jrose@1144 272 // cmp %rbx,%rax
jrose@1144 273 // jne loop
jrose@1144 274 // success:
jrose@1144 275 // mov 0x8(%r11),%r11d
jrose@1144 276 // mov (%r10,%r11,1),%rbx
jrose@1144 277 // jmpq *0x60(%rbx)
jrose@1144 278 // throw_icce:
jrose@1144 279 // jmpq throw_ICCE_entry
duke@435 280 }
duke@435 281
duke@435 282 int VtableStub::pd_code_alignment() {
duke@435 283 return wordSize;
duke@435 284 }

mercurial