hotspot/src/share/vm/oops/cpCacheOop.cpp
author jrose
Tue, 21 Apr 2009 23:21:04 -0700
changeset 2570 ecc7862946d4
parent 670 ddf3e9583f2f
child 3261 c7d5aae8d3f7
permissions -rw-r--r--
6655646: dynamic languages need dynamically linked call sites Summary: invokedynamic instruction (JSR 292 RI) Reviewed-by: twisti, never
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 1998-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/_cpCacheOop.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Implememtation of ConstantPoolCacheEntry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
void ConstantPoolCacheEntry::set_initial_state(int index) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    32
  if (constantPoolCacheOopDesc::is_secondary_index(index)) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    33
    // Hack:  The rewriter is trying to say that this entry itself
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    34
    // will be a secondary entry.
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    35
    int main_index = constantPoolCacheOopDesc::decode_secondary_index(index);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    36
    assert(0 <= main_index && main_index < 0x10000, "sanity check");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    37
    _indices = (main_index << 16);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    38
    assert(main_entry_index() == main_index, "");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    39
    return;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    40
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    41
  assert(0 < index && index < 0x10000, "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _indices = index;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
    43
  assert(constant_pool_index() == index, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
int ConstantPoolCacheEntry::as_flags(TosState state, bool is_final,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
                    bool is_vfinal, bool is_volatile,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                    bool is_method_interface, bool is_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  int f = state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  assert( state < number_of_states, "Invalid state in as_flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  f <<= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (is_final) f |= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  f <<= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  if (is_vfinal) f |= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  f <<= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (is_volatile) f |= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  f <<= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  if (is_method_interface) f |= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  f <<= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  if (is_method) f |= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  f <<= ConstantPoolCacheEntry::hotSwapBit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // Preserve existing flag bit values
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int old_state = ((_flags >> tosBits) & 0x0F);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  assert(old_state == 0 || old_state == state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
         "inconsistent cpCache flags state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  return (_flags | f) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
void ConstantPoolCacheEntry::set_bytecode_1(Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Read once.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  volatile Bytecodes::Code c = bytecode_1();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  assert(c == 0 || c == code || code == 0, "update must be consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Need to flush pending stores here before bytecode is written.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << 16));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
void ConstantPoolCacheEntry::set_bytecode_2(Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Read once.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  volatile Bytecodes::Code c = bytecode_2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  assert(c == 0 || c == code || code == 0, "update must be consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Need to flush pending stores here before bytecode is written.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << 24));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// It is possible to have two different dummy methodOops created
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// when the resolve code for invoke interface executes concurrently
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// Hence the assertion below is weakened a bit for the invokeinterface
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
bool ConstantPoolCacheEntry::same_methodOop(oop cur_f1, oop f1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  return (cur_f1 == f1 || ((methodOop)cur_f1)->name() ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
         ((methodOop)f1)->name() || ((methodOop)cur_f1)->signature() ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
         ((methodOop)f1)->signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Note that concurrent update of both bytecodes can leave one of them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// reset to zero.  This is harmless; the interpreter will simply re-resolve
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// the damaged entry.  More seriously, the memory synchronization is needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// to flush other fields (f1, f2) completely to memory before the bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// are updated, lest other processors see a non-zero bytecode but zero f1/f2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void ConstantPoolCacheEntry::set_field(Bytecodes::Code get_code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                                       Bytecodes::Code put_code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                                       KlassHandle field_holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                                       int orig_field_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                                       int field_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                                       TosState field_type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
                                       bool is_final,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                                       bool is_volatile) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  set_f1(field_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  set_f2(field_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // The field index is used by jvm/ti and is the index into fields() array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // in holder instanceKlass.  This is scaled by instanceKlass::next_offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  assert((orig_field_index % instanceKlass::next_offset) == 0, "wierd index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  const int field_index = orig_field_index / instanceKlass::next_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  assert(field_index <= field_index_mask,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
         "field index does not fit in low flag bits");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  set_flags(as_flags(field_type, is_final, false, is_volatile, false, false) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
            (field_index & field_index_mask));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  set_bytecode_1(get_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  set_bytecode_2(put_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  NOT_PRODUCT(verify(tty));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
int  ConstantPoolCacheEntry::field_index() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  return (_flags & field_index_mask) * instanceKlass::next_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
void ConstantPoolCacheEntry::set_method(Bytecodes::Code invoke_code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                                        methodHandle method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                                        int vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  assert(method->interpreter_entry() != NULL, "should have been set at this point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  assert(!method->is_obsolete(),  "attempt to write obsolete method to cpCache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  bool change_to_virtual = (invoke_code == Bytecodes::_invokeinterface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  int byte_no = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  bool needs_vfinal_flag = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  switch (invoke_code) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   149
    case Bytecodes::_invokedynamic:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    case Bytecodes::_invokeinterface: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
        if (method->can_be_statically_bound()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
          set_f2((intptr_t)method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
          needs_vfinal_flag = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
          assert(vtable_index >= 0, "valid index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
          set_f2(vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
        byte_no = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
      // Preserve the value of the vfinal flag on invokevirtual bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      // which may be shared with this constant pool cache entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      needs_vfinal_flag = is_resolved(Bytecodes::_invokevirtual) && is_vfinal();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    case Bytecodes::_invokestatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
      set_f1(method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      byte_no = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  set_flags(as_flags(as_TosState(method->result_type()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                     method->is_final_method(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
                     needs_vfinal_flag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
                     false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
                     change_to_virtual,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
                     true)|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
            method()->size_of_parameters());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Note:  byte_no also appears in TemplateTable::resolve.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  if (byte_no == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    set_bytecode_1(invoke_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  } else if (byte_no == 2)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    if (change_to_virtual) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      // NOTE: THIS IS A HACK - BE VERY CAREFUL!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      // Workaround for the case where we encounter an invokeinterface, but we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      // should really have an _invokevirtual since the resolved method is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      // virtual method in java.lang.Object. This is a corner case in the spec
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      // but is presumably legal. javac does not generate this code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      // We set bytecode_1() to _invokeinterface, because that is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      // bytecode # used by the interpreter to see if it is resolved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      // We set bytecode_2() to _invokevirtual.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      // See also interpreterRuntime.cpp. (8/25/2000)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      // Only set resolved for the invokeinterface case if method is public.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      // Otherwise, the method needs to be reresolved with caller for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
      // interface call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      if (method->is_public()) set_bytecode_1(invoke_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      set_bytecode_2(Bytecodes::_invokevirtual);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      set_bytecode_2(invoke_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  NOT_PRODUCT(verify(tty));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
void ConstantPoolCacheEntry::set_interface_call(methodHandle method, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  klassOop interf = method->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(instanceKlass::cast(interf)->is_interface(), "must be an interface");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  set_f1(interf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  set_f2(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  set_flags(as_flags(as_TosState(method->result_type()), method->is_final_method(), false, false, false, true) | method()->size_of_parameters());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  set_bytecode_1(Bytecodes::_invokeinterface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   225
void ConstantPoolCacheEntry::set_dynamic_call(Handle call_site, int extra_data) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   226
  methodOop method = (methodOop) sun_dyn_CallSiteImpl::vmmethod(call_site());
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   227
  assert(method->is_method(), "must be initialized properly");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   228
  int param_size = method->size_of_parameters();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   229
  assert(param_size > 1, "method argument size must include MH.this & initial dynamic receiver");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   230
  param_size -= 1;              // do not count MH.this; it is not stacked for invokedynamic
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   231
  if (Atomic::cmpxchg_ptr(call_site(), &_f1, NULL) == NULL) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   232
    // racing threads might be trying to install their own favorites
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   233
    set_f1(call_site());
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   234
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   235
  set_f2(extra_data);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   236
  set_flags(as_flags(as_TosState(method->result_type()), method->is_final_method(), false, false, false, true) | param_size);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   237
  // do not do set_bytecode on a secondary CP cache entry
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   238
  //set_bytecode_1(Bytecodes::_invokedynamic);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   239
}
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   240
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   241
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
class LocalOopClosure: public OopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  void (*_f)(oop*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  LocalOopClosure(void f(oop*))        { _f = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  virtual void do_oop(oop* o)          { _f(o); }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   249
  virtual void do_oop(narrowOop *o)    { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
void ConstantPoolCacheEntry::oops_do(void f(oop*)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  LocalOopClosure blk(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  oop_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
void ConstantPoolCacheEntry::oop_iterate(OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  assert(in_words(size()) == 4, "check code below - may need adjustment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // field[1] is always oop or NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  blk->do_oop((oop*)&_f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    blk->do_oop((oop*)&_f2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
void ConstantPoolCacheEntry::oop_iterate_m(OopClosure* blk, MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  assert(in_words(size()) == 4, "check code below - may need adjustment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // field[1] is always oop or NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if (mr.contains((oop *)&_f1)) blk->do_oop((oop*)&_f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    if (mr.contains((oop *)&_f2)) blk->do_oop((oop*)&_f2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
void ConstantPoolCacheEntry::follow_contents() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  assert(in_words(size()) == 4, "check code below - may need adjustment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // field[1] is always oop or NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  MarkSweep::mark_and_push((oop*)&_f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    MarkSweep::mark_and_push((oop*)&_f2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
void ConstantPoolCacheEntry::follow_contents(ParCompactionManager* cm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  assert(in_words(size()) == 4, "check code below - may need adjustment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // field[1] is always oop or NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  PSParallelCompact::mark_and_push(cm, (oop*)&_f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    PSParallelCompact::mark_and_push(cm, (oop*)&_f2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
void ConstantPoolCacheEntry::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  assert(in_words(size()) == 4, "check code below - may need adjustment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // field[1] is always oop or NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  MarkSweep::adjust_pointer((oop*)&_f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    MarkSweep::adjust_pointer((oop*)&_f2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
void ConstantPoolCacheEntry::update_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  assert(in_words(size()) == 4, "check code below - may need adjustment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // field[1] is always oop or NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  PSParallelCompact::adjust_pointer((oop*)&_f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    PSParallelCompact::adjust_pointer((oop*)&_f2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
void ConstantPoolCacheEntry::update_pointers(HeapWord* beg_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
                                             HeapWord* end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  assert(in_words(size()) == 4, "check code below - may need adjustment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // field[1] is always oop or NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  PSParallelCompact::adjust_pointer((oop*)&_f1, beg_addr, end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    PSParallelCompact::adjust_pointer((oop*)&_f2, beg_addr, end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
// RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// If this constantPoolCacheEntry refers to old_method then update it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// to refer to new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
bool ConstantPoolCacheEntry::adjust_method_entry(methodOop old_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
       methodOop new_method, bool * trace_name_printed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    // virtual and final so f2() contains method ptr instead of vtable index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    if (f2() == (intptr_t)old_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      // match old_method so need an update
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
      _f2 = (intptr_t)new_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
        if (!(*trace_name_printed)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
          // RC_TRACE_MESG macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
          RC_TRACE_MESG(("adjust: name=%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
            Klass::cast(old_method->method_holder())->external_name()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
          *trace_name_printed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
        // RC_TRACE macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
        RC_TRACE(0x00400000, ("cpc vf-entry update: %s(%s)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
          new_method->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
          new_method->signature()->as_C_string()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    // f1() is not used with virtual entries so bail out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  if ((oop)_f1 == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    // NULL f1() means this is a virtual entry so bail out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    // We are assuming that the vtable index does not need change.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  if ((oop)_f1 == old_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    _f1 = new_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      if (!(*trace_name_printed)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
        // RC_TRACE_MESG macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
        RC_TRACE_MESG(("adjust: name=%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
          Klass::cast(old_method->method_holder())->external_name()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
        *trace_name_printed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
      // RC_TRACE macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      RC_TRACE(0x00400000, ("cpc entry update: %s(%s)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
        new_method->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
        new_method->signature()->as_C_string()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
bool ConstantPoolCacheEntry::is_interesting_method_entry(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  if (!is_method_entry()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    // not a method entry so not interesting by default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  methodOop m = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  if (is_vfinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    // virtual and final so _f2 contains method ptr instead of vtable index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    m = (methodOop)_f2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  } else if ((oop)_f1 == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    // NULL _f1 means this is a virtual entry so also not interesting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    if (!((oop)_f1)->is_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
      // _f1 can also contain a klassOop for an interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    m = (methodOop)_f1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  assert(m != NULL && m->is_method(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  if (m == NULL || !m->is_method() || m->method_holder() != k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    // robustness for above sanity checks or method is not in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    // the interesting class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // the method is in the interesting class so the entry is interesting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
void ConstantPoolCacheEntry::print(outputStream* st, int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // print separator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  if (index == 0) tty->print_cr("                 -------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // print entry
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   423
  tty->print_cr("%3d  (%08x)  ", index, this);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   424
  if (is_secondary_entry())
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   425
    tty->print_cr("[%5d|secondary]", main_entry_index());
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   426
  else
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   427
    tty->print_cr("[%02x|%02x|%5d]", bytecode_2(), bytecode_1(), constant_pool_index());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  tty->print_cr("                 [   %08x]", (address)(oop)_f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  tty->print_cr("                 [   %08x]", _f2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  tty->print_cr("                 [   %08x]", _flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  tty->print_cr("                 -------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
void ConstantPoolCacheEntry::verify(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // not implemented yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
// Implementation of ConstantPoolCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
void constantPoolCacheOopDesc::initialize(intArray& inverse_index_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  assert(inverse_index_map.length() == length(), "inverse index map must have same length as cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  for (int i = 0; i < length(); i++) entry_at(i)->set_initial_state(inverse_index_map[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
// RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
// If any entry of this constantPoolCache points to any of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
// old_methods, replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
void constantPoolCacheOopDesc::adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
                                                     int methods_length, bool * trace_name_printed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  if (methods_length == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    // nothing to do if there are no methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // get shorthand for the interesting class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  klassOop old_holder = old_methods[0]->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  for (int i = 0; i < length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    if (!entry_at(i)->is_interesting_method_entry(old_holder)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      // skip uninteresting methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    // The constantPoolCache contains entries for several different
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    // things, but we only care about methods. In fact, we only care
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    // about methods in the same class as the one that contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    // old_methods. At this point, we have an interesting entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    for (int j = 0; j < methods_length; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      methodOop old_method = old_methods[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
      methodOop new_method = new_methods[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
      if (entry_at(i)->adjust_method_entry(old_method, new_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
          trace_name_printed)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
        // current old_method matched this entry and we updated it so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
        // break out and get to the next interesting entry if there one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
}