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