hotspot/src/cpu/sparc/vm/vtableStubs_sparc.cpp
author jrose
Fri, 06 Mar 2009 21:36:50 -0800
changeset 2149 3d362637b307
parent 670 ddf3e9583f2f
child 2254 f13dda645a4b
permissions -rw-r--r--
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638) Summary: Code in vtableStubs and templateTable moved into MacroAssembler. Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 360
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_sparc.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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
extern "C" void bad_compiled_vtable_index(JavaThread* thread, oopDesc* receiver, int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Used by compiler only; may use only caller saved, non-argument registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// NOTE:  %%%% if any change is made to this stub make sure that the function
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//             pd_code_size_limit is changed to ensure the correct size for VtableStub
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  const int sparc_code_length = VtableStub::pd_code_size_limit(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  VtableStub* s = new(sparc_code_length) VtableStub(true, vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  CodeBuffer cb(s->entry_point(), sparc_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  MacroAssembler* masm = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  if (CountCompiledCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    Address ctr(G5, SharedRuntime::nof_megamorphic_calls_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    __ sethi(ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    __ ld(ctr, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    __ inc(G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    __ st(G3_scratch, ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  assert(VtableStub::receiver_location() == O0->as_VMReg(), "receiver expected in O0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // get receiver klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  address npe_addr = __ pc();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
    63
  __ load_klass(O0, G3_scratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // set methodOop (in case of interpreted method), and destination address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  int entry_offset = instanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    // check offset vs vtable length
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    __ ld(G3_scratch, instanceKlass::vtable_length_offset()*wordSize, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    __ cmp(G5, vtable_index*vtableEntry::size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    __ br(Assembler::greaterUnsigned, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    __ set(vtable_index, O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), O0, O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int v_off = entry_offset*wordSize + vtableEntry::method_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  if( __ is_simm13(v_off) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    __ ld_ptr(G3, v_off, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    __ set(v_off,G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    __ ld_ptr(G3, G5, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    __ br_notnull(G5_method, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    __ stop("Vtable entry is ZERO");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  address ame_addr = __ pc();  // if the vtable entry is null, the method is abstract
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                               // NOTE: for vtable dispatches, the vtable entry will never be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  __ ld_ptr(G5_method, in_bytes(methodOopDesc::from_compiled_offset()), G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // jump to target (either compiled code or c2iadapter)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  __ JMP(G3_scratch, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // load methodOop (in case we call c2iadapter)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  masm->flush();
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   109
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   110
  if (PrintMiscellaneous && (WizardMode || Verbose)) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   111
    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: 670
diff changeset
   112
                  vtable_index, s->entry_point(),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   113
                  (int)(s->code_end() - s->entry_point()),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   114
                  (int)(s->code_end() - __ pc()));
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   115
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   116
  guarantee(__ pc() <= s->code_end(), "overflowed buffer");
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   117
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  s->set_exception_points(npe_addr, ame_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
// NOTE:  %%%% if any change is made to this stub make sure that the function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
//             pd_code_size_limit is changed to ensure the correct size for VtableStub
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   125
VtableStub* VtableStubs::create_itable_stub(int itable_index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  const int sparc_code_length = VtableStub::pd_code_size_limit(false);
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   127
  VtableStub* s = new(sparc_code_length) VtableStub(false, itable_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  CodeBuffer cb(s->entry_point(), sparc_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  MacroAssembler* masm = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  Register G3_klassOop = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  Register G5_interface = G5;  // Passed in as an argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  Label search;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Entry arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  //  G5_interface: Interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  //  O0:           Receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  assert(VtableStub::receiver_location() == O0->as_VMReg(), "receiver expected in O0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // get receiver klass (also an implicit null-check)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  address npe_addr = __ pc();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   143
  __ load_klass(O0, G3_klassOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  __ verify_oop(G3_klassOop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Push a new window to get some temp registers.  This chops the head of all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // my 64-bit %o registers in the LION build, but this is OK because no longs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // are passed in the %o registers.  Instead, longs are passed in G1 and G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // and so those registers are not available here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  __ save(SP,-frame::register_save_words*wordSize,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  if (CountCompiledCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    Address ctr(L0, SharedRuntime::nof_megamorphic_calls_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    __ sethi(ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    __ ld(ctr, L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    __ inc(L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    __ st(L1, ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   162
  Label throw_icce;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   164
  Register L5_method = L5;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   165
  __ lookup_interface_method(// inputs: rec. class, interface, itable index
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   166
                             G3_klassOop, G5_interface, itable_index,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   167
                             // outputs: method, scan temp. reg
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   168
                             L5_method, L2, L3,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   169
                             throw_icce);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  if (DebugVtables) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    Label L01;
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   174
    __ bpr(Assembler::rc_nz, false, Assembler::pt, L5_method, L01);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    __ stop("methodOop is null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    __ bind(L01);
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   178
    __ verify_oop(L5_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // If the following load is through a NULL pointer, we'll take an OS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // exception that should translate into an AbstractMethodError.  We need the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // window count to be correct at that time.
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   185
  __ restore(L5_method, 0, G5_method);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   186
  // Restore registers *before* the AME point.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  address ame_addr = __ pc();   // if the vtable entry is null, the method is abstract
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  __ ld_ptr(G5_method, in_bytes(methodOopDesc::from_compiled_offset()), G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // G5_method:  methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // O0:         Receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // G3_scratch: entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  __ JMP(G3_scratch, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   197
  __ bind(throw_icce);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   198
  Address icce(G3_scratch, StubRoutines::throw_IncompatibleClassChangeError_entry());
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   199
  __ jump_to(icce, 0);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   200
  __ delayed()->restore();
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  masm->flush();
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   203
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   204
  if (PrintMiscellaneous && (WizardMode || Verbose)) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   205
    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: 670
diff changeset
   206
                  itable_index, s->entry_point(),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   207
                  (int)(s->code_end() - s->entry_point()),
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   208
                  (int)(s->code_end() - __ pc()));
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   209
  }
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   210
  guarantee(__ pc() <= s->code_end(), "overflowed buffer");
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   211
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  s->set_exception_points(npe_addr, ame_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   218
  if (TraceJumps || DebugVtables || CountCompiledCalls || VerifyOops) return 1000;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    const int slop = 2*BytesPerInstWord; // sethi;add  (needed for long offsets)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    if (is_vtable_stub) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   222
      // ld;ld;ld,jmp,nop
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   223
      const int basic = 5*BytesPerInstWord +
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   224
                        // shift;add for load_klass
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   225
                        (UseCompressedOops ? 2*BytesPerInstWord : 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      return basic + slop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    } else {
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 670
diff changeset
   228
      const int basic = (28 LP64_ONLY(+ 6)) * BytesPerInstWord +
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   229
                        // shift;add for load_klass
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   230
                        (UseCompressedOops ? 2*BytesPerInstWord : 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      return (basic + slop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
int VtableStub::pd_code_alignment() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // UltraSPARC cache line size is 8 instructions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  const unsigned int icache_line_size = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  return icache_line_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}