hotspot/src/cpu/x86/vm/vtableStubs_x86_64.cpp
author iveresov
Fri, 03 Sep 2010 17:51:07 -0700
changeset 6453 970dc585ab63
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
permissions -rw-r--r--
6953144: Tiered compilation Summary: Infrastructure for tiered compilation support (interpreter + c1 + c2) for 32 and 64 bit. Simple tiered policy implementation. Reviewed-by: kvn, never, phh, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
     2
 * Copyright (c) 2003, 2010, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_vtableStubs_x86_64.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,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
                                          oop receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
                                          int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  const int amd64_code_length = VtableStub::pd_code_size_limit(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  VtableStub* s = new(amd64_code_length) VtableStub(true, vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  CodeBuffer cb(s->entry_point(), amd64_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  MacroAssembler* masm = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if (CountCompiledCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // get receiver (need to skip return address on top of stack)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Free registers (non-args) are rax, rbx
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // get receiver klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  address npe_addr = __ pc();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
    59
  __ load_klass(rax, j_rarg0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // compute entry offset (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  int entry_offset =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    instanceKlass::vtable_start_offset() + vtable_index * vtableEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    // check offset vs vtable length
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    __ cmpl(Address(rax, instanceKlass::vtable_length_offset() * wordSize),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
            vtable_index * vtableEntry::size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    __ jcc(Assembler::greater, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    __ movl(rbx, vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    __ call_VM(noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
               CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), j_rarg0, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // load methodOop and target address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  const Register method = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    82
  __ movptr(method, Address(rax,
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    83
                            entry_offset * wordSize +
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    84
                            vtableEntry::method_offset_in_bytes()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    Label L;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    87
    __ cmpptr(method, (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    __ jcc(Assembler::equal, L);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    89
    __ cmpptr(Address(method, methodOopDesc::from_compiled_offset()), (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    __ jcc(Assembler::notZero, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    __ stop("Vtable entry is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // rax: receiver klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // rbx: methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // rcx: receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  address ame_addr = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  __ jmp( Address(rbx, methodOopDesc::from_compiled_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  __ flush();
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   101
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   102
  if (PrintMiscellaneous && (WizardMode || Verbose)) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   103
    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: 1066
diff changeset
   104
                  vtable_index, s->entry_point(),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   105
                  (int)(s->code_end() - s->entry_point()),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   106
                  (int)(s->code_end() - __ pc()));
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   107
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   108
  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
   109
  // shut the door on sizing bugs
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   110
  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
   111
  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: 1066
diff changeset
   112
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  s->set_exception_points(npe_addr, ame_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   118
VtableStub* VtableStubs::create_itable_stub(int itable_index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Note well: pd_code_size_limit is the absolute minimum we can get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // away with.  If you add code here, bump the code stub size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // returned by pd_code_size_limit!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  const int amd64_code_length = VtableStub::pd_code_size_limit(false);
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   123
  VtableStub* s = new(amd64_code_length) VtableStub(false, itable_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  CodeBuffer cb(s->entry_point(), amd64_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  MacroAssembler* masm = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  if (CountCompiledCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // Entry arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  //  rax: Interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  //  j_rarg0: Receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Free registers (non-args) are rax (interface), rbx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // get receiver (need to skip return address on top of stack)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // get receiver klass (also an implicit null-check)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  address npe_addr = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   146
  // Most registers are in use; we'll use rax, rbx, r10, r11
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   147
  // (various calling sequences use r[cd]x, r[sd]i, r[89]; stay away from them)
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   148
  __ load_klass(r10, j_rarg0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // If we take a trap while this arg is on the stack we will not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // be able to walk the stack properly. This is not an issue except
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // when there are mistakes in this assembly code that could generate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // a spurious fault. Ask me how I know...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   155
  const Register method = rbx;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   156
  Label throw_icce;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Get methodOop and entrypoint for compiler
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   159
  __ lookup_interface_method(// inputs: rec. class, interface, itable index
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   160
                             r10, rax, itable_index,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   161
                             // outputs: method, scan temp. reg
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   162
                             method, r11,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   163
                             throw_icce);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // method (rbx): methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // j_rarg0: receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
#ifdef ASSERT
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   169
  if (DebugVtables) {
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   170
    Label L2;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   171
    __ cmpptr(method, (int32_t)NULL_WORD);
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   172
    __ jcc(Assembler::equal, L2);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   173
    __ cmpptr(Address(method, methodOopDesc::from_compiled_offset()), (int32_t)NULL_WORD);
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   174
    __ jcc(Assembler::notZero, L2);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   175
    __ stop("compiler entrypoint is null");
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   176
    __ bind(L2);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   177
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   180
  // rbx: methodOop
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   181
  // j_rarg0: receiver
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   182
  address ame_addr = __ pc();
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   183
  __ jmp(Address(method, methodOopDesc::from_compiled_offset()));
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   184
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   185
  __ bind(throw_icce);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   186
  __ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  __ flush();
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   189
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   190
  if (PrintMiscellaneous && (WizardMode || Verbose)) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   191
    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: 1066
diff changeset
   192
                  itable_index, s->entry_point(),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   193
                  (int)(s->code_end() - s->entry_point()),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   194
                  (int)(s->code_end() - __ pc()));
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 1066
diff changeset
   195
  }
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   196
  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
   197
  // shut the door on sizing bugs
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   198
  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
   199
  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
   200
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  s->set_exception_points(npe_addr, ame_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  if (is_vtable_stub) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    // Vtable stub size
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   208
    return (DebugVtables ? 512 : 24) + (CountCompiledCalls ? 13 : 0) +
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   209
           (UseCompressedOops ? 16 : 0);  // 1 leaq can be 3 bytes + 1 long
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    // Itable stub size
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   212
    return (DebugVtables ? 512 : 74) + (CountCompiledCalls ? 13 : 0) +
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   213
           (UseCompressedOops ? 32 : 0);  // 2 leaqs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
2533
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   215
  // 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
   216
  // +PrintMiscellaneous and +WizardMode to see information about
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   217
  // 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
   218
  //   itable #1 at 0x5551212[71] left over: 3
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   219
  // 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
   220
  // for the common cases.
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   221
  // 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
   222
  // large vtable or itable index (>= 32) will require a 32-bit
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   223
  // 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
   224
  //
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   225
  // 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
   226
  // The itable code looks like this:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   227
  // Decoding VtableStub itbl[1]@12
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   228
  //   mov    0x8(%rsi),%r10
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   229
  //   mov    0x198(%r10),%r11d
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   230
  //   lea    0x218(%r10,%r11,8),%r11
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   231
  //   lea    0x8(%r10),%r10
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   232
  //   mov    (%r11),%rbx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   233
  //   cmp    %rbx,%rax
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   234
  //   je     success
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   235
  // loop:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   236
  //   test   %rbx,%rbx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   237
  //   je     throw_icce
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   238
  //   add    $0x10,%r11
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   239
  //   mov    (%r11),%rbx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   240
  //   cmp    %rbx,%rax
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   241
  //   jne    loop
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   242
  // success:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   243
  //   mov    0x8(%r11),%r11d
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   244
  //   mov    (%r10,%r11,1),%rbx
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   245
  //   jmpq   *0x60(%rbx)
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   246
  // throw_icce:
9aa50ba9a67f 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 2149
diff changeset
   247
  //   jmpq   throw_ICCE_entry
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
int VtableStub::pd_code_alignment() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  return wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}