hotspot/src/share/vm/oops/cpCacheOop.hpp
author jrose
Wed, 09 Jun 2010 18:50:45 -0700
changeset 5882 6b2aecc4f7d8
parent 5547 f4b087cbb361
child 6062 bab93afe9df7
permissions -rw-r--r--
6939203: JSR 292 needs method handle constants Summary: Add new CP types CONSTANT_MethodHandle, CONSTANT_MethodType; extend 'ldc' bytecode. Reviewed-by: twisti, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
diff changeset
     2
 * Copyright (c) 1998, 2009, 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: 5420
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
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: 5420
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
// A ConstantPoolCacheEntry describes an individual entry of the constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// pool cache. There's 2 principal kinds of entries: field entries for in-
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// stance & static field access, and method entries for invokes. Some of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// the entry layout is shared and looks as follows:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// bit number |31                0|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// bit length |-8--|-8--|---16----|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// --------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// _indices   [ b2 | b1 |  index  ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// _f1        [  entry specific   ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// _f2        [  entry specific   ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// _flags     [t|f|vf|v|m|h|unused|field_index] (for field entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// bit length |4|1|1 |1|1|0|---7--|----16-----]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// _flags     [t|f|vf|v|m|h|unused|eidx|psze] (for method entries)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// bit length |4|1|1 |1|1|1|---7--|-8--|-8--]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// --------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// with:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// index  = original constant pool index
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// b1     = bytecode 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// b2     = bytecode 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// psze   = parameters size (method entries only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// eidx   = interpreter entry index (method entries only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// field_index = index into field information in holder instanceKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//          The index max is 0xffff (max number of fields in constant pool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//          and is multiplied by (instanceKlass::next_offset) when accessing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// t      = TosState (see below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// f      = field is marked final (see below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// vf     = virtual, final (method entries only : is_vfinal())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// v      = field is volatile (see below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// m      = invokeinterface used for method in class Object (see below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// h      = RedefineClasses/Hotswap bit (see below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// The flags after TosState have the following interpretation:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// bit 27: f flag  true if field is marked final
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// bit 26: vf flag true if virtual final method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// bit 25: v flag true if field is volatile (only for fields)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// bit 24: m flag true if invokeinterface used for method in class Object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// bit 23: 0 for fields, 1 for methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// The flags 31, 30, 29, 28 together build a 4 bit number 0 to 8 with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// following mapping to the TosState states:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// btos: 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// ctos: 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// stos: 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// itos: 3
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// ltos: 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// ftos: 5
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// dtos: 6
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// atos: 7
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// vtos: 8
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// Entry specific: field entries:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// _indices = get (b1 section) and put (b2 section) bytecodes, original constant pool index
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// _f1      = field holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// _f2      = field offset in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// _flags   = field type information, original field index in field holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
//            (field_index section)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// Entry specific: method entries:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// _indices = invoke code for f1 (b1 section), invoke code for f2 (b2 section),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
//            original constant pool index
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// _f1      = method for all but virtual calls, unused by virtual calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
//            (note: for interface calls, which are essentially virtual,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
//             contains klassOop for the corresponding interface.
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
    92
//            for invokedynamic, f1 contains the CallSite object for the invocation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// _f2      = method/vtable index for virtual calls only, unused by all other
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
//            calls.  The vf flag indicates this is a method pointer not an
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
//            index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// _flags   = field type info (f section),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
//            virtual final entry (vf),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
//            interpreter entry index (eidx section),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
//            parameter size (psze section)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// Note: invokevirtual & invokespecial bytecodes can share the same constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
//       pool entry and thus the same constant pool cache entry. All invoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
//       bytecodes but invokevirtual use only _f1 and the corresponding b1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
//       bytecode, while invokevirtual uses only _f2 and the corresponding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
//       b2 bytecode.  The value of _flags is shared for both types of entries.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// The fields are volatile so that they are stored in the order written in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// source code.  The _indices field with the bytecode must be written last.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
class ConstantPoolCacheEntry VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  friend class VMStructs;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   112
  friend class constantPoolCacheKlass;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   113
  friend class constantPoolOopDesc;  //resolve_constant_at_impl => set_f1
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   114
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  volatile intx     _indices;  // constant pool index & rewrite bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  volatile oop      _f1;       // entry specific oop field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  volatile intx     _f2;       // entry specific int/oop field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  volatile intx     _flags;    // flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  bool same_methodOop(oop cur_f1, oop f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  void set_bytecode_1(Bytecodes::Code code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  void set_bytecode_2(Bytecodes::Code code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  void set_f1(oop f1)                            {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    oop existing_f1 = _f1; // read once
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    assert(existing_f1 == NULL || existing_f1 == f1, "illegal field change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    oop_store(&_f1, f1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  void set_f2(intx f2)                           { assert(_f2 == 0    || _f2 == f2, "illegal field change"); _f2 = f2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  int as_flags(TosState state, bool is_final, bool is_vfinal, bool is_volatile,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
               bool is_method_interface, bool is_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  void set_flags(intx flags)                     { _flags = flags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // specific bit values in flag field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Note: the interpreter knows this layout!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  enum FlagBitValues {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    hotSwapBit    = 23,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    methodInterface = 24,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    volatileField = 25,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    vfinalMethod  = 26,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    finalField    = 27
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  enum { field_index_mask = 0xFFFF };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // start of type bits in flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Note: the interpreter knows this layout!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  enum FlagValues {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    tosBits      = 28
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Initialization
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   158
  void initialize_entry(int original_index);     // initialize primary entry
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   159
  void initialize_secondary_entry(int main_index); // initialize secondary entry
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  void set_field(                                // sets entry to resolved field state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    Bytecodes::Code get_code,                    // the bytecode used for reading the field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    Bytecodes::Code put_code,                    // the bytecode used for writing the field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    KlassHandle     field_holder,                // the object/klass holding the field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    int             orig_field_index,            // the original field index in the field holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    int             field_offset,                // the field offset in words in the field holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    TosState        field_type,                  // the (machine) field type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    bool            is_final,                     // the field is final
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    bool            is_volatile                  // the field is volatile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void set_method(                               // sets entry to resolved method entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    Bytecodes::Code invoke_code,                 // the bytecode used for invoking the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    methodHandle    method,                      // the method/prototype if any (NULL, otherwise)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    int             vtable_index                 // the vtable index if any, else negative
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  void set_interface_call(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    methodHandle method,                         // Resolved method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    int index                                    // Method index into interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   183
  void set_dynamic_call(
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   184
    Handle call_site,                            // Resolved java.dyn.CallSite (f1)
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4429
diff changeset
   185
    methodHandle signature_invoker               // determines signature information
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   186
  );
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   187
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void set_parameter_size(int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    assert(parameter_size() == 0 || parameter_size() == value,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
           "size must not change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    // Setting the parameter size by itself is only safe if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    // current value of _flags is 0, otherwise another thread may have
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    // updated it and we don't want to overwrite that value.  Don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    // bother trying to update it once it's nonzero but always make
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    // sure that the final parameter size agrees with what was passed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    if (_flags == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      Atomic::cmpxchg_ptr((value & 0xFF), &_flags, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    guarantee(parameter_size() == value, "size must not change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // Which bytecode number (1 or 2) in the index field is valid for this bytecode?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Returns -1 if neither is valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  static int bytecode_number(Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    switch (code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      case Bytecodes::_getstatic       :    // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
      case Bytecodes::_getfield        :    // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      case Bytecodes::_invokespecial   :    // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      case Bytecodes::_invokestatic    :    // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      case Bytecodes::_invokeinterface : return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      case Bytecodes::_putstatic       :    // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      case Bytecodes::_putfield        :    // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
      case Bytecodes::_invokevirtual   : return 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
      default                          : break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Has this bytecode been resolved? Only valid for invokes and get/put field/static.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  bool is_resolved(Bytecodes::Code code) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    switch (bytecode_number(code)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
      case 1:  return (bytecode_1() == code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      case 2:  return (bytecode_2() == code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return false;      // default: not resolved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Accessors
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   229
  bool is_secondary_entry() const                { return (_indices & 0xFFFF) == 0; }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   230
  int constant_pool_index() const                { assert((_indices & 0xFFFF) != 0, "must be main entry");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   231
                                                   return (_indices & 0xFFFF); }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   232
  int main_entry_index() const                   { assert((_indices & 0xFFFF) == 0, "must be secondary entry");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   233
                                                   return ((uintx)_indices >> 16); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  Bytecodes::Code bytecode_1() const             { return Bytecodes::cast((_indices >> 16) & 0xFF); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  Bytecodes::Code bytecode_2() const             { return Bytecodes::cast((_indices >> 24) & 0xFF); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  volatile oop  f1() const                       { return _f1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  intx f2() const                                { return _f2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  int  field_index() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  int  parameter_size() const                    { return _flags & 0xFF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  bool is_vfinal() const                         { return ((_flags & (1 << vfinalMethod)) == (1 << vfinalMethod)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  bool is_volatile() const                       { return ((_flags & (1 << volatileField)) == (1 << volatileField)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  bool is_methodInterface() const                { return ((_flags & (1 << methodInterface)) == (1 << methodInterface)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  bool is_byte() const                           { return (((uintx) _flags >> tosBits) == btos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  bool is_char() const                           { return (((uintx) _flags >> tosBits) == ctos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  bool is_short() const                          { return (((uintx) _flags >> tosBits) == stos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  bool is_int() const                            { return (((uintx) _flags >> tosBits) == itos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  bool is_long() const                           { return (((uintx) _flags >> tosBits) == ltos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  bool is_float() const                          { return (((uintx) _flags >> tosBits) == ftos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  bool is_double() const                         { return (((uintx) _flags >> tosBits) == dtos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  bool is_object() const                         { return (((uintx) _flags >> tosBits) == atos); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  TosState flag_state() const                    { assert( ( (_flags >> tosBits) & 0x0F ) < number_of_states, "Invalid state in as_flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                                                   return (TosState)((_flags >> tosBits) & 0x0F); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  static WordSize size()                         { return in_WordSize(sizeof(ConstantPoolCacheEntry) / HeapWordSize); }
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   256
  static ByteSize size_in_bytes()                { return in_ByteSize(sizeof(ConstantPoolCacheEntry)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  static ByteSize indices_offset()               { return byte_offset_of(ConstantPoolCacheEntry, _indices); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  static ByteSize f1_offset()                    { return byte_offset_of(ConstantPoolCacheEntry, _f1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  static ByteSize f2_offset()                    { return byte_offset_of(ConstantPoolCacheEntry, _f2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  static ByteSize flags_offset()                 { return byte_offset_of(ConstantPoolCacheEntry, _flags); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // GC Support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  void oops_do(void f(oop*));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void oop_iterate(OopClosure* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  void oop_iterate_m(OopClosure* blk, MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  void follow_contents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  void adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // Parallel Old
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void follow_contents(ParCompactionManager* cm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  void update_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  void update_pointers(HeapWord* beg_addr, HeapWord* end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // If this constantPoolCacheEntry refers to old_method then update it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // to refer to new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // group don't print the klass name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  bool adjust_method_entry(methodOop old_method, methodOop new_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
         bool * trace_name_printed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  bool is_interesting_method_entry(klassOop k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  bool is_field_entry() const                    { return (_flags & (1 << hotSwapBit)) == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  bool is_method_entry() const                   { return (_flags & (1 << hotSwapBit)) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // Debugging & Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  void print (outputStream* st, int index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  void verify(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  static void verify_tosBits() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    assert(tosBits == 28, "interpreter now assumes tosBits is 28");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// A constant pool cache is a runtime data structure set aside to a constant pool. The cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// holds interpreter runtime information for all field access and invoke bytecodes. The cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// is created and initialized before a class is actively used (i.e., initialized), the indivi-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
// dual cache entries are filled at resolution (i.e., "link") time (see also: rewriter.*).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   304
class constantPoolCacheOopDesc: public oopDesc {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
 private:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   307
  int             _length;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  constantPoolOop _constant_pool;                // the corresponding constant pool
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   309
  // If true, safe for concurrent GC processing,
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   310
  // Set unconditionally in constantPoolCacheKlass::allocate()
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   311
  volatile bool        _is_conc_safe;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // Sizing
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   314
  debug_only(friend class ClassVerifier;)
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   315
  int length() const                             { return _length; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   316
  void set_length(int length)                    { _length = length; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   317
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  static int header_size()                       { return sizeof(constantPoolCacheOopDesc) / HeapWordSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  static int object_size(int length)             { return align_object_size(header_size() + length * in_words(ConstantPoolCacheEntry::size())); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  int object_size()                              { return object_size(length()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // Helpers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  constantPoolOop*        constant_pool_addr()   { return &_constant_pool; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  ConstantPoolCacheEntry* base() const           { return (ConstantPoolCacheEntry*)((address)this + in_bytes(base_offset())); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  friend class constantPoolCacheKlass;
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   327
  friend class ConstantPoolCacheEntry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  void initialize(intArray& inverse_index_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   333
  // Secondary indexes.
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   334
  // They must look completely different from normal indexes.
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   335
  // The main reason is that byte swapping is sometimes done on normal indexes.
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   336
  // Also, some of the CP accessors do different things for secondary indexes.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   337
  // Finally, it is helpful for debugging to tell the two apart.
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   338
  static bool is_secondary_index(int i) { return (i < 0); }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   339
  static int  decode_secondary_index(int i) { assert(is_secondary_index(i),  ""); return ~i; }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   340
  static int  encode_secondary_index(int i) { assert(!is_secondary_index(i), ""); return ~i; }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   341
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  void set_constant_pool(constantPoolOop pool)   { oop_store_without_check((oop*)&_constant_pool, (oop)pool); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  constantPoolOop constant_pool() const          { return _constant_pool; }
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   345
  // Fetches the entry at the given index.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   346
  // The entry may be either primary or secondary.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   347
  // In either case the index must not be encoded or byte-swapped in any way.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   348
  ConstantPoolCacheEntry* entry_at(int i) const {
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   349
    assert(0 <= i && i < length(), "index out of bounds");
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   350
    return base() + i;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   351
  }
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   352
  // Fetches the secondary entry referred to by index.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   353
  // The index may be a secondary index, and must not be byte-swapped.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   354
  ConstantPoolCacheEntry* secondary_entry_at(int i) const {
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   355
    int raw_index = i;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   356
    if (is_secondary_index(i)) {  // correct these on the fly
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   357
      raw_index = decode_secondary_index(i);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   358
    }
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   359
    assert(entry_at(raw_index)->is_secondary_entry(), "not a secondary entry");
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   360
    return entry_at(raw_index);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   361
  }
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   362
  // Given a primary or secondary index, fetch the corresponding primary entry.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   363
  // Indirect through the secondary entry, if the index is encoded as a secondary index.
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   364
  // The index must not be byte-swapped.
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   365
  ConstantPoolCacheEntry* main_entry_at(int i) const {
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   366
    int primary_index = i;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   367
    if (is_secondary_index(i)) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   368
      // run through an extra level of indirection:
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   369
      int raw_index = decode_secondary_index(i);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   370
      primary_index = entry_at(raw_index)->main_entry_index();
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   371
    }
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   372
    assert(!entry_at(primary_index)->is_secondary_entry(), "only one level of indirection");
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   373
    return entry_at(primary_index);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   374
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   376
  // GC support
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   377
  // If the _length field has not been set, the size of the
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   378
  // constantPoolCache cannot be correctly calculated.
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   379
  bool is_conc_safe()                            { return _is_conc_safe; }
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   380
  void set_is_conc_safe(bool v)                  { _is_conc_safe = v; }
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
   381
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // Code generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  static ByteSize base_offset()                  { return in_ByteSize(sizeof(constantPoolCacheOopDesc)); }
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   384
  static ByteSize entry_offset(int raw_index) {
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   385
    int index = raw_index;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   386
    if (is_secondary_index(raw_index))
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   387
      index = decode_secondary_index(raw_index);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   388
    return (base_offset() + ConstantPoolCacheEntry::size_in_bytes() * index);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2570
diff changeset
   389
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // RedefineClasses() API support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // If any entry of this constantPoolCache points to any of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // old_methods, replace it with the corresponding new_method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // trace_name_printed is set to true if the current call has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // printed the klass name so that other routines in the adjust_*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // group don't print the klass name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  void adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
                             int methods_length, bool * trace_name_printed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
};