src/hotspot/cpu/x86/vtableStubs_x86_32.cpp
author goetz
Thu, 08 Feb 2018 09:23:49 +0100
changeset 49368 2ed1c37df3a5
parent 48557 2e867226b914
child 51618 54b344d9dd4e
permissions -rw-r--r--
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors. Reviewed-by: coleenp, dholmes, mdoerr, njian
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
35871
607bf949dfb3 8147461: Use byte offsets for vtable start and vtable length offsets
mgerdin
parents: 31592
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
    26
#include "asm/macroAssembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "code/vtableStubs.hpp"
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20072
diff changeset
    28
#include "interp_masm_x86.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/resourceArea.hpp"
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
    30
#include "oops/compiledICHolder.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/klassVtable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "vmreg_x86.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// machine-dependent part of VtableStubs: create VtableStub of correct size and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// initialize its code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#define __ masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
extern "C" void bad_compiled_vtable_index(JavaThread* thread, oop receiver, int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    48
// These stubs are used by the compiler only.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    49
// Argument registers, which must be preserved:
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    50
//   rcx - receiver (always first argument)
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    51
//   rdx - second argument (if any)
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    52
// Other registers that might be usable:
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    53
//   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
    54
//   rbx - method (used when calling out to interpreter)
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    55
// 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
    56
//   rsi, rdi
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
    57
// Note that rax and rdx are also used for return values.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  const int i486_code_length = VtableStub::pd_code_size_limit(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  VtableStub* s = new(i486_code_length) VtableStub(true, vtable_index);
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
    62
  // Can be NULL if there is no free space in the code cache.
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
    63
  if (s == NULL) {
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
    64
    return NULL;
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
    65
  }
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
    66
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  CodeBuffer cb(s->entry_point(), i486_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  MacroAssembler* masm = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  if (CountCompiledCalls) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 189
diff changeset
    74
    __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // get receiver (need to skip return address on top of stack)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  assert(VtableStub::receiver_location() == rcx->as_VMReg(), "receiver expected in rcx");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // get receiver klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  address npe_addr = __ pc();
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 189
diff changeset
    83
  __ movptr(rax, Address(rcx, oopDesc::klass_offset_in_bytes()));
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
    84
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // check offset vs vtable length
35899
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 35871
diff changeset
    89
    __ cmpl(Address(rax, Klass::vtable_length_offset()), vtable_index*vtableEntry::size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    __ jcc(Assembler::greater, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    __ movl(rbx, vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), rcx, rbx);
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
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  const Register method = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    99
  // load Method* and target address
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   100
  __ lookup_virtual_method(rax, vtable_index, method);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   101
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    Label L;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 189
diff changeset
   104
    __ cmpptr(method, (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    __ jcc(Assembler::equal, L);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   106
    __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    __ jcc(Assembler::notZero, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    __ stop("Vtable entry is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // rax,: receiver klass
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   113
  // method (rbx): Method*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // rcx: receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  address ame_addr = __ pc();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   116
  __ jmp( Address(method, Method::from_compiled_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  masm->flush();
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   119
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   120
  if (PrintMiscellaneous && (WizardMode || Verbose)) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 24424
diff changeset
   121
    tty->print_cr("vtable #%d at " PTR_FORMAT "[%d] left over: %d",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22234
diff changeset
   122
                  vtable_index, p2i(s->entry_point()),
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   123
                  (int)(s->code_end() - s->entry_point()),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   124
                  (int)(s->code_end() - __ pc()));
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   125
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   126
  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
   127
  // shut the door on sizing bugs
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   128
  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
   129
  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
   130
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  s->set_exception_points(npe_addr, ame_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   136
VtableStub* VtableStubs::create_itable_stub(int itable_index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // Note well: pd_code_size_limit is the absolute minimum we can get away with.  If you
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  //            add code here, bump the code stub size returned by pd_code_size_limit!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  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
   140
  VtableStub* s = new(i486_code_length) VtableStub(false, itable_index);
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
   141
  // Can be NULL if there is no free space in the code cache.
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
   142
  if (s == NULL) {
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
   143
    return NULL;
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
   144
  }
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 14626
diff changeset
   145
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  CodeBuffer cb(s->entry_point(), i486_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  MacroAssembler* masm = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Entry arguments:
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   151
  //  rax: CompiledICHolder
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  //  rcx: Receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  if (CountCompiledCalls) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 189
diff changeset
   156
    __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   160
  // 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
   161
  // (If we need to make rsi, rdi callee-save, do a push/pop here.)
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   162
  const Register recv_klass_reg     = rsi;
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   163
  const Register holder_klass_reg   = rax; // declaring interface klass (DECC)
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   164
  const Register resolved_klass_reg = rbx; // resolved interface klass (REFC)
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   165
  const Register temp_reg           = rdi;
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   166
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   167
  const Register icholder_reg = rax;
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   168
  __ movptr(resolved_klass_reg, Address(icholder_reg, CompiledICHolder::holder_klass_offset()));
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   169
  __ movptr(holder_klass_reg,   Address(icholder_reg, CompiledICHolder::holder_metadata_offset()));
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   170
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   171
  Label L_no_such_interface;
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   172
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   173
  // get receiver klass (also an implicit null-check)
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   174
  address npe_addr = __ pc();
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   175
  assert(VtableStub::receiver_location() ==  rcx->as_VMReg(), "receiver expected in  rcx");
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   176
  __ load_klass(recv_klass_reg, rcx);
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   177
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   178
  // Receiver subtype check against REFC.
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   179
  // Destroys recv_klass_reg value.
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   180
  __ lookup_interface_method(// inputs: rec. class, interface
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   181
                             recv_klass_reg, resolved_klass_reg, noreg,
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   182
                             // outputs:  scan temp. reg1, scan temp. reg2
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   183
                             recv_klass_reg, temp_reg,
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   184
                             L_no_such_interface,
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   185
                             /*return_method=*/false);
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   186
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   187
  // Get selected method from declaring class and itable index
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   188
  const Register method = rbx;
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   189
  __ load_klass(recv_klass_reg, rcx); // restore recv_klass_reg
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   190
  __ lookup_interface_method(// inputs: rec. class, interface, itable index
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   191
                             recv_klass_reg, holder_klass_reg, itable_index,
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   192
                             // outputs: method, scan temp. reg
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   193
                             method, temp_reg,
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   194
                             L_no_such_interface);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   196
  // method (rbx): Method*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // rcx: receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      Label L1;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 189
diff changeset
   202
      __ cmpptr(method, (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      __ jcc(Assembler::equal, L1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   204
      __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      __ jcc(Assembler::notZero, L1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   206
      __ stop("Method* is null");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
      __ bind(L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  address ame_addr = __ pc();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   212
  __ jmp(Address(method, Method::from_compiled_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   214
  __ bind(L_no_such_interface);
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 48557
diff changeset
   215
  // Handle IncompatibleClassChangeError in itable stubs.
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 48557
diff changeset
   216
  // More detailed error message.
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 48557
diff changeset
   217
  // We force resolving of the call site by jumping to the "handle
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 48557
diff changeset
   218
  // wrong method" stub, and so let the interpreter runtime do all the
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 48557
diff changeset
   219
  // dirty work.
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 48557
diff changeset
   220
  __ jump(RuntimeAddress(SharedRuntime::get_handle_wrong_method_stub()));
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   221
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   222
  __ flush();
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   223
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   224
  if (PrintMiscellaneous && (WizardMode || Verbose)) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 24424
diff changeset
   225
    tty->print_cr("itable #%d at " PTR_FORMAT "[%d] left over: %d",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22234
diff changeset
   226
                  itable_index, p2i(s->entry_point()),
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   227
                  (int)(s->code_end() - s->entry_point()),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   228
                  (int)(s->code_end() - __ pc()));
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1217
diff changeset
   229
  }
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   230
  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
   231
  // shut the door on sizing bugs
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   232
  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
   233
  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
   234
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  s->set_exception_points(npe_addr, ame_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  if (is_vtable_stub) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // Vtable stub size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    return (DebugVtables ? 210 : 16) + (CountCompiledCalls ? 6 : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    // Itable stub size
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47216
diff changeset
   247
    return (DebugVtables ? 256 : 110) + (CountCompiledCalls ? 6 : 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
2533
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   249
  // 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
   250
  // +PrintMiscellaneous and +WizardMode to see information about
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   251
  // 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
   252
  //   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
   253
  // 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
   254
  // for the common cases.
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   255
  // 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
   256
  // 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
   257
  // 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
   258
  //
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   259
  // 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
   260
  // The itable code looks like this:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   261
  // Decoding VtableStub itbl[1]@1
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   262
  //   mov    0x4(%ecx),%esi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   263
  //   mov    0xe8(%esi),%edi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   264
  //   lea    0x130(%esi,%edi,4),%edi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   265
  //   add    $0x7,%edi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   266
  //   and    $0xfffffff8,%edi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   267
  //   lea    0x4(%esi),%esi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   268
  //   mov    (%edi),%ebx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   269
  //   cmp    %ebx,%eax
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   270
  //   je     success
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   271
  // loop:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   272
  //   test   %ebx,%ebx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   273
  //   je     throw_icce
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   274
  //   add    $0x8,%edi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   275
  //   mov    (%edi),%ebx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   276
  //   cmp    %ebx,%eax
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   277
  //   jne    loop
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   278
  // success:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   279
  //   mov    0x4(%edi),%edi
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   280
  //   mov    (%esi,%edi,1),%ebx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   281
  //   jmp    *0x44(%ebx)
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   282
  // throw_icce:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   283
  //   jmp    throw_ICCE_entry
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
int VtableStub::pd_code_alignment() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  return wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
}