2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2016-01-27 14:50:56 +01:00
|
|
|
* Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "precompiled.hpp"
|
2012-11-30 15:23:16 -08:00
|
|
|
#include "asm/macroAssembler.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "code/vtableStubs.hpp"
|
2013-10-22 09:51:47 +02:00
|
|
|
#include "interp_masm_x86.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "memory/resourceArea.hpp"
|
|
|
|
#include "oops/instanceKlass.hpp"
|
|
|
|
#include "oops/klassVtable.hpp"
|
|
|
|
#include "runtime/sharedRuntime.hpp"
|
|
|
|
#include "vmreg_x86.inline.hpp"
|
|
|
|
#ifdef COMPILER2
|
|
|
|
#include "opto/runtime.hpp"
|
|
|
|
#endif
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// machine-dependent part of VtableStubs: create VtableStub of correct size and
|
|
|
|
// initialize its code
|
|
|
|
|
|
|
|
#define __ masm->
|
|
|
|
|
|
|
|
#ifndef PRODUCT
|
|
|
|
extern "C" void bad_compiled_vtable_index(JavaThread* thread,
|
|
|
|
oop receiver,
|
|
|
|
int index);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
|
|
|
|
const int amd64_code_length = VtableStub::pd_code_size_limit(true);
|
|
|
|
VtableStub* s = new(amd64_code_length) VtableStub(true, vtable_index);
|
2013-09-24 15:56:25 +02:00
|
|
|
// Can be NULL if there is no free space in the code cache.
|
|
|
|
if (s == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
ResourceMark rm;
|
|
|
|
CodeBuffer cb(s->entry_point(), amd64_code_length);
|
|
|
|
MacroAssembler* masm = new MacroAssembler(&cb);
|
|
|
|
|
|
|
|
#ifndef PRODUCT
|
|
|
|
if (CountCompiledCalls) {
|
|
|
|
__ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// get receiver (need to skip return address on top of stack)
|
|
|
|
assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
|
|
|
|
|
|
|
|
// Free registers (non-args) are rax, rbx
|
|
|
|
|
|
|
|
// get receiver klass
|
|
|
|
address npe_addr = __ pc();
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
__ load_klass(rax, j_rarg0);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
#ifndef PRODUCT
|
|
|
|
if (DebugVtables) {
|
|
|
|
Label L;
|
|
|
|
// check offset vs vtable length
|
2015-12-01 10:35:49 +01:00
|
|
|
__ cmpl(Address(rax, Klass::vtable_length_offset()),
|
2007-12-01 00:00:00 +00:00
|
|
|
vtable_index * vtableEntry::size());
|
|
|
|
__ jcc(Assembler::greater, L);
|
|
|
|
__ movl(rbx, vtable_index);
|
|
|
|
__ call_VM(noreg,
|
|
|
|
CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), j_rarg0, rbx);
|
|
|
|
__ bind(L);
|
|
|
|
}
|
|
|
|
#endif // PRODUCT
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// load Method* and target address
|
2007-12-01 00:00:00 +00:00
|
|
|
const Register method = rbx;
|
|
|
|
|
2012-07-24 10:51:00 -07:00
|
|
|
__ lookup_virtual_method(rax, vtable_index, method);
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
if (DebugVtables) {
|
|
|
|
Label L;
|
2008-08-27 00:21:55 -07:00
|
|
|
__ cmpptr(method, (int32_t)NULL_WORD);
|
2007-12-01 00:00:00 +00:00
|
|
|
__ jcc(Assembler::equal, L);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
__ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
|
2007-12-01 00:00:00 +00:00
|
|
|
__ jcc(Assembler::notZero, L);
|
|
|
|
__ stop("Vtable entry is NULL");
|
|
|
|
__ bind(L);
|
|
|
|
}
|
|
|
|
// rax: receiver klass
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// rbx: Method*
|
2007-12-01 00:00:00 +00:00
|
|
|
// rcx: receiver
|
|
|
|
address ame_addr = __ pc();
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
__ jmp( Address(rbx, Method::from_compiled_offset()));
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
__ flush();
|
2009-03-06 21:36:50 -08:00
|
|
|
|
|
|
|
if (PrintMiscellaneous && (WizardMode || Verbose)) {
|
2015-06-24 12:12:25 -04:00
|
|
|
tty->print_cr("vtable #%d at " PTR_FORMAT "[%d] left over: %d",
|
2015-10-09 09:42:33 +02:00
|
|
|
vtable_index, p2i(s->entry_point()),
|
2009-03-06 21:36:50 -08:00
|
|
|
(int)(s->code_end() - s->entry_point()),
|
|
|
|
(int)(s->code_end() - __ pc()));
|
|
|
|
}
|
|
|
|
guarantee(__ pc() <= s->code_end(), "overflowed buffer");
|
2009-04-08 00:12:59 -07:00
|
|
|
// shut the door on sizing bugs
|
|
|
|
int slop = 3; // 32-bit offset is this much larger than an 8-bit one
|
|
|
|
assert(vtable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
|
2009-03-06 21:36:50 -08:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
s->set_exception_points(npe_addr, ame_addr);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-06 21:36:50 -08:00
|
|
|
VtableStub* VtableStubs::create_itable_stub(int itable_index) {
|
2007-12-01 00:00:00 +00:00
|
|
|
// Note well: pd_code_size_limit is the absolute minimum we can get
|
|
|
|
// away with. If you add code here, bump the code stub size
|
|
|
|
// returned by pd_code_size_limit!
|
|
|
|
const int amd64_code_length = VtableStub::pd_code_size_limit(false);
|
2009-03-06 21:36:50 -08:00
|
|
|
VtableStub* s = new(amd64_code_length) VtableStub(false, itable_index);
|
2013-09-24 15:56:25 +02:00
|
|
|
// Can be NULL if there is no free space in the code cache.
|
|
|
|
if (s == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
ResourceMark rm;
|
|
|
|
CodeBuffer cb(s->entry_point(), amd64_code_length);
|
|
|
|
MacroAssembler* masm = new MacroAssembler(&cb);
|
|
|
|
|
|
|
|
#ifndef PRODUCT
|
|
|
|
if (CountCompiledCalls) {
|
|
|
|
__ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Entry arguments:
|
|
|
|
// rax: Interface
|
|
|
|
// j_rarg0: Receiver
|
|
|
|
|
|
|
|
// Free registers (non-args) are rax (interface), rbx
|
|
|
|
|
|
|
|
// get receiver (need to skip return address on top of stack)
|
|
|
|
|
|
|
|
assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
|
|
|
|
// get receiver klass (also an implicit null-check)
|
|
|
|
address npe_addr = __ pc();
|
|
|
|
|
2009-03-06 21:36:50 -08:00
|
|
|
// Most registers are in use; we'll use rax, rbx, r10, r11
|
|
|
|
// (various calling sequences use r[cd]x, r[sd]i, r[89]; stay away from them)
|
|
|
|
__ load_klass(r10, j_rarg0);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// If we take a trap while this arg is on the stack we will not
|
|
|
|
// be able to walk the stack properly. This is not an issue except
|
|
|
|
// when there are mistakes in this assembly code that could generate
|
|
|
|
// a spurious fault. Ask me how I know...
|
|
|
|
|
|
|
|
const Register method = rbx;
|
2009-03-06 21:36:50 -08:00
|
|
|
Label throw_icce;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Get Method* and entrypoint for compiler
|
2009-03-06 21:36:50 -08:00
|
|
|
__ lookup_interface_method(// inputs: rec. class, interface, itable index
|
|
|
|
r10, rax, itable_index,
|
|
|
|
// outputs: method, scan temp. reg
|
|
|
|
method, r11,
|
|
|
|
throw_icce);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// method (rbx): Method*
|
2007-12-01 00:00:00 +00:00
|
|
|
// j_rarg0: receiver
|
|
|
|
|
|
|
|
#ifdef ASSERT
|
2007-12-05 09:00:00 -08:00
|
|
|
if (DebugVtables) {
|
|
|
|
Label L2;
|
2008-08-27 00:21:55 -07:00
|
|
|
__ cmpptr(method, (int32_t)NULL_WORD);
|
2007-12-05 09:00:00 -08:00
|
|
|
__ jcc(Assembler::equal, L2);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
__ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
|
2007-12-05 09:00:00 -08:00
|
|
|
__ jcc(Assembler::notZero, L2);
|
|
|
|
__ stop("compiler entrypoint is null");
|
|
|
|
__ bind(L2);
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
#endif // ASSERT
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// rbx: Method*
|
2007-12-05 09:00:00 -08:00
|
|
|
// j_rarg0: receiver
|
|
|
|
address ame_addr = __ pc();
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
__ jmp(Address(method, Method::from_compiled_offset()));
|
2007-12-05 09:00:00 -08:00
|
|
|
|
|
|
|
__ bind(throw_icce);
|
|
|
|
__ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry()));
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
__ flush();
|
2007-12-05 09:00:00 -08:00
|
|
|
|
2009-03-06 21:36:50 -08:00
|
|
|
if (PrintMiscellaneous && (WizardMode || Verbose)) {
|
2015-06-24 12:12:25 -04:00
|
|
|
tty->print_cr("itable #%d at " PTR_FORMAT "[%d] left over: %d",
|
2015-10-09 09:42:33 +02:00
|
|
|
itable_index, p2i(s->entry_point()),
|
2009-03-06 21:36:50 -08:00
|
|
|
(int)(s->code_end() - s->entry_point()),
|
|
|
|
(int)(s->code_end() - __ pc()));
|
|
|
|
}
|
2007-12-05 09:00:00 -08:00
|
|
|
guarantee(__ pc() <= s->code_end(), "overflowed buffer");
|
2009-04-08 00:12:59 -07:00
|
|
|
// shut the door on sizing bugs
|
|
|
|
int slop = 3; // 32-bit offset is this much larger than an 8-bit one
|
|
|
|
assert(itable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
|
2007-12-05 09:00:00 -08:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
s->set_exception_points(npe_addr, ame_addr);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
|
|
|
|
if (is_vtable_stub) {
|
|
|
|
// Vtable stub size
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
return (DebugVtables ? 512 : 24) + (CountCompiledCalls ? 13 : 0) +
|
2013-08-12 17:37:02 +02:00
|
|
|
(UseCompressedClassPointers ? MacroAssembler::instr_size_for_decode_klass_not_null() : 0);
|
2007-12-01 00:00:00 +00:00
|
|
|
} else {
|
|
|
|
// Itable stub size
|
2010-09-03 17:51:07 -07:00
|
|
|
return (DebugVtables ? 512 : 74) + (CountCompiledCalls ? 13 : 0) +
|
2013-08-12 17:37:02 +02:00
|
|
|
(UseCompressedClassPointers ? MacroAssembler::instr_size_for_decode_klass_not_null() : 0);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2009-04-08 00:12:59 -07:00
|
|
|
// In order to tune these parameters, run the JVM with VM options
|
|
|
|
// +PrintMiscellaneous and +WizardMode to see information about
|
|
|
|
// actual itable stubs. Look for lines like this:
|
|
|
|
// itable #1 at 0x5551212[71] left over: 3
|
|
|
|
// Reduce the constants so that the "left over" number is >=3
|
|
|
|
// for the common cases.
|
|
|
|
// Do not aim at a left-over number of zero, because a
|
|
|
|
// large vtable or itable index (>= 32) will require a 32-bit
|
|
|
|
// immediate displacement instead of an 8-bit one.
|
|
|
|
//
|
|
|
|
// The JVM98 app. _202_jess has a megamorphic interface call.
|
|
|
|
// The itable code looks like this:
|
|
|
|
// Decoding VtableStub itbl[1]@12
|
|
|
|
// mov 0x8(%rsi),%r10
|
|
|
|
// mov 0x198(%r10),%r11d
|
|
|
|
// lea 0x218(%r10,%r11,8),%r11
|
|
|
|
// lea 0x8(%r10),%r10
|
|
|
|
// mov (%r11),%rbx
|
|
|
|
// cmp %rbx,%rax
|
|
|
|
// je success
|
|
|
|
// loop:
|
|
|
|
// test %rbx,%rbx
|
|
|
|
// je throw_icce
|
|
|
|
// add $0x10,%r11
|
|
|
|
// mov (%r11),%rbx
|
|
|
|
// cmp %rbx,%rax
|
|
|
|
// jne loop
|
|
|
|
// success:
|
|
|
|
// mov 0x8(%r11),%r11d
|
|
|
|
// mov (%r10,%r11,1),%rbx
|
|
|
|
// jmpq *0x60(%rbx)
|
|
|
|
// throw_icce:
|
|
|
|
// jmpq throw_ICCE_entry
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int VtableStub::pd_code_alignment() {
|
|
|
|
return wordSize;
|
|
|
|
}
|