src/cpu/x86/vm/vtableStubs_x86_64.cpp

Tue, 28 Jul 2009 12:12:40 -0700

author
xdono
date
Tue, 28 Jul 2009 12:12:40 -0700
changeset 1279
bd02caa94611
parent 1144
1d037ecd7960
child 1907
c18cbe5936b8
permissions
-rw-r--r--

6862919: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair

duke@435 1 /*
xdono@1279 2 * Copyright 2003-2009 Sun Microsystems, Inc. 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 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 #include "incls/_precompiled.incl"
duke@435 26 #include "incls/_vtableStubs_x86_64.cpp.incl"
duke@435 27
duke@435 28 // machine-dependent part of VtableStubs: create VtableStub of correct size and
duke@435 29 // initialize its code
duke@435 30
duke@435 31 #define __ masm->
duke@435 32
duke@435 33 #ifndef PRODUCT
duke@435 34 extern "C" void bad_compiled_vtable_index(JavaThread* thread,
duke@435 35 oop receiver,
duke@435 36 int index);
duke@435 37 #endif
duke@435 38
duke@435 39 VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
duke@435 40 const int amd64_code_length = VtableStub::pd_code_size_limit(true);
duke@435 41 VtableStub* s = new(amd64_code_length) VtableStub(true, vtable_index);
duke@435 42 ResourceMark rm;
duke@435 43 CodeBuffer cb(s->entry_point(), amd64_code_length);
duke@435 44 MacroAssembler* masm = new MacroAssembler(&cb);
duke@435 45
duke@435 46 #ifndef PRODUCT
duke@435 47 if (CountCompiledCalls) {
duke@435 48 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
duke@435 49 }
duke@435 50 #endif
duke@435 51
duke@435 52 // get receiver (need to skip return address on top of stack)
duke@435 53 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
duke@435 54
duke@435 55 // Free registers (non-args) are rax, rbx
duke@435 56
duke@435 57 // get receiver klass
duke@435 58 address npe_addr = __ pc();
coleenp@548 59 __ load_klass(rax, j_rarg0);
duke@435 60
duke@435 61 // compute entry offset (in words)
duke@435 62 int entry_offset =
duke@435 63 instanceKlass::vtable_start_offset() + vtable_index * vtableEntry::size();
duke@435 64
duke@435 65 #ifndef PRODUCT
duke@435 66 if (DebugVtables) {
duke@435 67 Label L;
duke@435 68 // check offset vs vtable length
duke@435 69 __ cmpl(Address(rax, instanceKlass::vtable_length_offset() * wordSize),
duke@435 70 vtable_index * vtableEntry::size());
duke@435 71 __ jcc(Assembler::greater, L);
duke@435 72 __ movl(rbx, vtable_index);
duke@435 73 __ call_VM(noreg,
duke@435 74 CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), j_rarg0, rbx);
duke@435 75 __ bind(L);
duke@435 76 }
duke@435 77 #endif // PRODUCT
duke@435 78
duke@435 79 // load methodOop and target address
duke@435 80 const Register method = rbx;
duke@435 81
never@739 82 __ movptr(method, Address(rax,
never@739 83 entry_offset * wordSize +
never@739 84 vtableEntry::method_offset_in_bytes()));
duke@435 85 if (DebugVtables) {
duke@435 86 Label L;
never@739 87 __ cmpptr(method, (int32_t)NULL_WORD);
duke@435 88 __ jcc(Assembler::equal, L);
never@739 89 __ cmpptr(Address(method, methodOopDesc::from_compiled_offset()), (int32_t)NULL_WORD);
duke@435 90 __ jcc(Assembler::notZero, L);
duke@435 91 __ stop("Vtable entry is NULL");
duke@435 92 __ bind(L);
duke@435 93 }
duke@435 94 // rax: receiver klass
duke@435 95 // rbx: methodOop
duke@435 96 // rcx: receiver
duke@435 97 address ame_addr = __ pc();
duke@435 98 __ jmp( Address(rbx, methodOopDesc::from_compiled_offset()));
duke@435 99
duke@435 100 __ flush();
jrose@1058 101
jrose@1058 102 if (PrintMiscellaneous && (WizardMode || Verbose)) {
jrose@1058 103 tty->print_cr("vtable #%d at "PTR_FORMAT"[%d] left over: %d",
jrose@1058 104 vtable_index, s->entry_point(),
jrose@1058 105 (int)(s->code_end() - s->entry_point()),
jrose@1058 106 (int)(s->code_end() - __ pc()));
jrose@1058 107 }
jrose@1058 108 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
jrose@1144 109 // shut the door on sizing bugs
jrose@1144 110 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
jrose@1144 111 assert(vtable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
jrose@1058 112
duke@435 113 s->set_exception_points(npe_addr, ame_addr);
duke@435 114 return s;
duke@435 115 }
duke@435 116
duke@435 117
jrose@1058 118 VtableStub* VtableStubs::create_itable_stub(int itable_index) {
duke@435 119 // Note well: pd_code_size_limit is the absolute minimum we can get
duke@435 120 // away with. If you add code here, bump the code stub size
duke@435 121 // returned by pd_code_size_limit!
duke@435 122 const int amd64_code_length = VtableStub::pd_code_size_limit(false);
jrose@1058 123 VtableStub* s = new(amd64_code_length) VtableStub(false, itable_index);
duke@435 124 ResourceMark rm;
duke@435 125 CodeBuffer cb(s->entry_point(), amd64_code_length);
duke@435 126 MacroAssembler* masm = new MacroAssembler(&cb);
duke@435 127
duke@435 128 #ifndef PRODUCT
duke@435 129 if (CountCompiledCalls) {
duke@435 130 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
duke@435 131 }
duke@435 132 #endif
duke@435 133
duke@435 134 // Entry arguments:
duke@435 135 // rax: Interface
duke@435 136 // j_rarg0: Receiver
duke@435 137
duke@435 138 // Free registers (non-args) are rax (interface), rbx
duke@435 139
duke@435 140 // get receiver (need to skip return address on top of stack)
duke@435 141
duke@435 142 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
duke@435 143 // get receiver klass (also an implicit null-check)
duke@435 144 address npe_addr = __ pc();
duke@435 145
jrose@1058 146 // Most registers are in use; we'll use rax, rbx, r10, r11
jrose@1058 147 // (various calling sequences use r[cd]x, r[sd]i, r[89]; stay away from them)
jrose@1058 148 __ load_klass(r10, j_rarg0);
duke@435 149
duke@435 150 // If we take a trap while this arg is on the stack we will not
duke@435 151 // be able to walk the stack properly. This is not an issue except
duke@435 152 // when there are mistakes in this assembly code that could generate
duke@435 153 // a spurious fault. Ask me how I know...
duke@435 154
jrose@1058 155 const Register method = rbx;
jrose@1058 156 Label throw_icce;
duke@435 157
duke@435 158 // Get methodOop and entrypoint for compiler
jrose@1058 159 __ lookup_interface_method(// inputs: rec. class, interface, itable index
jrose@1058 160 r10, rax, itable_index,
jrose@1058 161 // outputs: method, scan temp. reg
jrose@1058 162 method, r11,
jrose@1058 163 throw_icce);
duke@435 164
duke@435 165 // method (rbx): methodOop
duke@435 166 // j_rarg0: receiver
duke@435 167
duke@435 168 #ifdef ASSERT
dcubed@451 169 if (DebugVtables) {
dcubed@451 170 Label L2;
never@739 171 __ cmpptr(method, (int32_t)NULL_WORD);
dcubed@451 172 __ jcc(Assembler::equal, L2);
never@739 173 __ cmpptr(Address(method, methodOopDesc::from_compiled_offset()), (int32_t)NULL_WORD);
dcubed@451 174 __ jcc(Assembler::notZero, L2);
dcubed@451 175 __ stop("compiler entrypoint is null");
dcubed@451 176 __ bind(L2);
dcubed@451 177 }
duke@435 178 #endif // ASSERT
duke@435 179
dcubed@451 180 // rbx: methodOop
dcubed@451 181 // j_rarg0: receiver
dcubed@451 182 address ame_addr = __ pc();
dcubed@451 183 __ jmp(Address(method, methodOopDesc::from_compiled_offset()));
dcubed@451 184
dcubed@451 185 __ bind(throw_icce);
dcubed@451 186 __ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry()));
duke@435 187
duke@435 188 __ flush();
dcubed@451 189
jrose@1058 190 if (PrintMiscellaneous && (WizardMode || Verbose)) {
jrose@1058 191 tty->print_cr("itable #%d at "PTR_FORMAT"[%d] left over: %d",
jrose@1058 192 itable_index, s->entry_point(),
jrose@1058 193 (int)(s->code_end() - s->entry_point()),
jrose@1058 194 (int)(s->code_end() - __ pc()));
jrose@1058 195 }
dcubed@451 196 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
jrose@1144 197 // shut the door on sizing bugs
jrose@1144 198 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
jrose@1144 199 assert(itable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
dcubed@451 200
duke@435 201 s->set_exception_points(npe_addr, ame_addr);
duke@435 202 return s;
duke@435 203 }
duke@435 204
duke@435 205 int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
duke@435 206 if (is_vtable_stub) {
duke@435 207 // Vtable stub size
coleenp@548 208 return (DebugVtables ? 512 : 24) + (CountCompiledCalls ? 13 : 0) +
coleenp@548 209 (UseCompressedOops ? 16 : 0); // 1 leaq can be 3 bytes + 1 long
duke@435 210 } else {
duke@435 211 // Itable stub size
jrose@1058 212 return (DebugVtables ? 512 : 72) + (CountCompiledCalls ? 13 : 0) +
coleenp@548 213 (UseCompressedOops ? 32 : 0); // 2 leaqs
duke@435 214 }
jrose@1144 215 // In order to tune these parameters, run the JVM with VM options
jrose@1144 216 // +PrintMiscellaneous and +WizardMode to see information about
jrose@1144 217 // actual itable stubs. Look for lines like this:
jrose@1144 218 // itable #1 at 0x5551212[71] left over: 3
jrose@1144 219 // Reduce the constants so that the "left over" number is >=3
jrose@1144 220 // for the common cases.
jrose@1144 221 // Do not aim at a left-over number of zero, because a
jrose@1144 222 // large vtable or itable index (>= 32) will require a 32-bit
jrose@1144 223 // immediate displacement instead of an 8-bit one.
jrose@1144 224 //
jrose@1144 225 // The JVM98 app. _202_jess has a megamorphic interface call.
jrose@1144 226 // The itable code looks like this:
jrose@1144 227 // Decoding VtableStub itbl[1]@12
jrose@1144 228 // mov 0x8(%rsi),%r10
jrose@1144 229 // mov 0x198(%r10),%r11d
jrose@1144 230 // lea 0x218(%r10,%r11,8),%r11
jrose@1144 231 // lea 0x8(%r10),%r10
jrose@1144 232 // mov (%r11),%rbx
jrose@1144 233 // cmp %rbx,%rax
jrose@1144 234 // je success
jrose@1144 235 // loop:
jrose@1144 236 // test %rbx,%rbx
jrose@1144 237 // je throw_icce
jrose@1144 238 // add $0x10,%r11
jrose@1144 239 // mov (%r11),%rbx
jrose@1144 240 // cmp %rbx,%rax
jrose@1144 241 // jne loop
jrose@1144 242 // success:
jrose@1144 243 // mov 0x8(%r11),%r11d
jrose@1144 244 // mov (%r10,%r11,1),%rbx
jrose@1144 245 // jmpq *0x60(%rbx)
jrose@1144 246 // throw_icce:
jrose@1144 247 // jmpq throw_ICCE_entry
duke@435 248 }
duke@435 249
duke@435 250 int VtableStub::pd_code_alignment() {
duke@435 251 return wordSize;
duke@435 252 }

mercurial