src/hotspot/share/interpreter/rewriter.hpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 53746 bdccafc038a2
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
     2
 * Copyright (c) 1998, 2019, 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: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
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: 4567
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
    25
#ifndef SHARE_INTERPRETER_REWRITER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
    26
#define SHARE_INTERPRETER_REWRITER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    29
#include "utilities/growableArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// The Rewriter adds caches to the constant pool and rewrites bytecode indices
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// pointing into the constant pool for better interpreter performance.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
    34
class Rewriter: public StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 38031
diff changeset
    36
  InstanceKlass*      _klass;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
    37
  constantPoolHandle  _pool;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    38
  Array<Method*>*     _methods;
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    39
  GrowableArray<int>  _cp_map;
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    40
  GrowableArray<int>  _cp_cache_map;  // for Methodref, Fieldref,
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    41
                                      // InterfaceMethodref and InvokeDynamic
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    42
  GrowableArray<int>  _reference_map; // maps from cp index to resolved_refs index (or -1)
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    43
  GrowableArray<int>  _resolved_references_map; // for strings, methodHandle, methodType
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    44
  GrowableArray<int>  _invokedynamic_references_map; // for invokedynamic resolved refs
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    45
  GrowableArray<int>  _method_handle_invokers;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    46
  int                 _resolved_reference_limit;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
    47
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    48
  // For mapping invokedynamic bytecodes, which are discovered during method
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    49
  // scanning.  The invokedynamic entries are added at the end of the cpCache.
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    50
  // If there are any invokespecial/InterfaceMethodref special case bytecodes,
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    51
  // these entries are added before invokedynamic entries so that the
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    52
  // invokespecial bytecode 16 bit index doesn't overflow.
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    53
  GrowableArray<int>      _invokedynamic_cp_cache_map;
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    54
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    55
  // For patching.
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    56
  GrowableArray<address>* _patch_invokedynamic_bcps;
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    57
  GrowableArray<int>*     _patch_invokedynamic_refs;
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    58
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    59
  void init_maps(int length) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    60
    _cp_map.trunc_to(0);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    61
    _cp_map.at_grow(length, -1);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    62
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    63
    _cp_cache_map.trunc_to(0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    64
    // Also cache resolved objects, in another different cache.
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    65
    _reference_map.trunc_to(0);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    66
    _reference_map.at_grow(length, -1);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    67
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    68
    _method_handle_invokers.trunc_to(0);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    69
    _resolved_references_map.trunc_to(0);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    70
    _invokedynamic_references_map.trunc_to(0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    71
    _resolved_reference_limit = -1;
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    72
    _first_iteration_cp_cache_limit = -1;
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    73
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    74
    // invokedynamic specific fields
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    75
    _invokedynamic_cp_cache_map.trunc_to(0);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    76
    _patch_invokedynamic_bcps = new GrowableArray<address>(length / 4);
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    77
    _patch_invokedynamic_refs = new GrowableArray<int>(length / 4);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
    78
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    79
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    80
  int _first_iteration_cp_cache_limit;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    81
  void record_map_limits() {
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    82
    // Record initial size of the two arrays generated for the CP cache
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    83
    // relative to walking the constant pool.
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    84
    _first_iteration_cp_cache_limit = _cp_cache_map.length();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    85
    _resolved_reference_limit = _resolved_references_map.length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    86
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    87
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    88
  int cp_cache_delta() {
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    89
    // How many cp cache entries were added since recording map limits after
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    90
    // cp cache initialization?
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    91
    assert(_first_iteration_cp_cache_limit != -1, "only valid after first iteration");
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    92
    return _cp_cache_map.length() - _first_iteration_cp_cache_limit;
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    93
  }
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    94
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    95
  int  cp_entry_to_cp_cache(int i) { assert(has_cp_cache(i), "oob"); return _cp_map.at(i); }
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    96
  bool has_cp_cache(int i) { return (uint) i < (uint) _cp_map.length() && _cp_map.at(i) >= 0; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    97
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
    98
  int add_map_entry(int cp_index, GrowableArray<int>* cp_map, GrowableArray<int>* cp_cache_map) {
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
    99
    assert(cp_map->at(cp_index) == -1, "not twice on same cp_index");
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   100
    int cache_index = cp_cache_map->append(cp_index);
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   101
    cp_map->at_put(cp_index, cache_index);
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   102
    return cache_index;
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   103
  }
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   104
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   105
  int add_cp_cache_entry(int cp_index) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   106
    assert(_pool->tag_at(cp_index).value() != JVM_CONSTANT_InvokeDynamic, "use indy version");
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   107
    assert(_first_iteration_cp_cache_limit == -1, "do not add cache entries after first iteration");
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   108
    int cache_index = add_map_entry(cp_index, &_cp_map, &_cp_cache_map);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   109
    assert(cp_entry_to_cp_cache(cp_index) == cache_index, "");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   110
    assert(cp_cache_entry_pool_index(cache_index) == cp_index, "");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   111
    return cache_index;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   112
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   113
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   114
  int add_invokedynamic_cp_cache_entry(int cp_index) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   115
    assert(_pool->tag_at(cp_index).value() == JVM_CONSTANT_InvokeDynamic, "use non-indy version");
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   116
    assert(_first_iteration_cp_cache_limit >= 0, "add indy cache entries after first iteration");
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   117
    // add to the invokedynamic index map.
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   118
    int cache_index = _invokedynamic_cp_cache_map.append(cp_index);
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   119
    // do not update _cp_map, since the mapping is one-to-many
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   120
    assert(invokedynamic_cp_cache_entry_pool_index(cache_index) == cp_index, "");
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   121
    // this index starts at one but in the bytecode it's appended to the end.
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   122
    return cache_index + _first_iteration_cp_cache_limit;
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   123
  }
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   124
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   125
  int invokedynamic_cp_cache_entry_pool_index(int cache_index) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   126
    int cp_index = _invokedynamic_cp_cache_map.at(cache_index);
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   127
    return cp_index;
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   128
  }
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   129
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   130
  // add a new CP cache entry beyond the normal cache for the special case of
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   131
  // invokespecial with InterfaceMethodref as cpool operand.
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   132
  int add_invokespecial_cp_cache_entry(int cp_index) {
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   133
    assert(_first_iteration_cp_cache_limit >= 0, "add these special cache entries after first iteration");
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   134
    // Don't add InterfaceMethodref if it already exists at the end.
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   135
    for (int i = _first_iteration_cp_cache_limit; i < _cp_cache_map.length(); i++) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   136
      if (cp_cache_entry_pool_index(i) == cp_index) {
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   137
        return i;
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   138
      }
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   139
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   140
    int cache_index = _cp_cache_map.append(cp_index);
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   141
    assert(cache_index >= _first_iteration_cp_cache_limit, "");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   142
    // do not update _cp_map, since the mapping is one-to-many
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   143
    assert(cp_cache_entry_pool_index(cache_index) == cp_index, "");
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   144
    return cache_index;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   145
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   146
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   147
  int  cp_entry_to_resolved_references(int cp_index) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   148
    assert(has_entry_in_resolved_references(cp_index), "oob");
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   149
    return _reference_map.at(cp_index);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   150
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   151
  bool has_entry_in_resolved_references(int cp_index) const {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   152
    return (uint) cp_index < (uint) _reference_map.length() && _reference_map.at(cp_index) >= 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   153
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   154
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   155
  // add a new entry to the resolved_references map
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   156
  int add_resolved_references_entry(int cp_index) {
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   157
    int ref_index = add_map_entry(cp_index, &_reference_map, &_resolved_references_map);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   158
    assert(cp_entry_to_resolved_references(cp_index) == ref_index, "");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   159
    return ref_index;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   160
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   161
53746
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53244
diff changeset
   162
  // add a new entry to the resolved_references map (for invokedynamic and invokehandle only)
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53244
diff changeset
   163
  int add_invokedynamic_resolved_references_entry(int cp_index, int cache_index) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   164
    assert(_resolved_reference_limit >= 0, "must add indy refs after first iteration");
53746
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53244
diff changeset
   165
    int ref_index = _resolved_references_map.append(cp_index);  // many-to-one
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53244
diff changeset
   166
    assert(ref_index >= _resolved_reference_limit, "");
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53244
diff changeset
   167
    _invokedynamic_references_map.at_put_grow(ref_index, cache_index, -1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   168
    return ref_index;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   169
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   170
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   171
  int resolved_references_entry_to_pool_index(int ref_index) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   172
    int cp_index = _resolved_references_map.at(ref_index);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   173
    return cp_index;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   174
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   175
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   176
  // Access the contents of _cp_cache_map to determine CP cache layout.
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   177
  int cp_cache_entry_pool_index(int cache_index) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 33593
diff changeset
   178
    int cp_index = _cp_cache_map.at(cache_index);
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   179
    return cp_index;
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   180
  }
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   181
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   182
  // All the work goes in here:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 38031
diff changeset
   183
  Rewriter(InstanceKlass* klass, const constantPoolHandle& cpool, Array<Method*>* methods, TRAPS);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   184
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   185
  void compute_index_maps();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   186
  void make_constant_pool_cache(TRAPS);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 53746
diff changeset
   187
  void scan_method(Thread* thread, Method* m, bool reverse, bool* invokespecial_error);
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46329
diff changeset
   188
  void rewrite_Object_init(const methodHandle& m, TRAPS);
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   189
  void rewrite_member_reference(address bcp, int offset, bool reverse);
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   190
  void maybe_rewrite_invokehandle(address opc, int cp_index, int cache_index, bool reverse);
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   191
  void rewrite_invokedynamic(address bcp, int offset, bool reverse);
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   192
  void maybe_rewrite_ldc(address bcp, int offset, bool is_wide, bool reverse);
21734
440a9598dc23 8028347: Rewriter::scan_method asserts with array oob in RT_Baseline
coleenp
parents: 21557
diff changeset
   193
  void rewrite_invokespecial(address bcp, int offset, bool reverse, bool* invokespecial_error);
21557
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   194
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   195
  void patch_invokedynamic_bytecodes();
55115e0708f1 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field change
coleenp
parents: 15099
diff changeset
   196
22750
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 21734
diff changeset
   197
  // Do all the work.
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 21734
diff changeset
   198
  void rewrite_bytecodes(TRAPS);
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 21734
diff changeset
   199
9971
d496ecd7b9de 7033141: assert(has_cp_cache(i)) failed: oob
coleenp
parents: 7397
diff changeset
   200
  // Revert bytecodes in case of an exception.
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 53746
diff changeset
   201
  void restore_bytecodes(Thread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46329
diff changeset
   203
  static methodHandle rewrite_jsrs(const methodHandle& m, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
 public:
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   205
  // Driver routine:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 38031
diff changeset
   206
  static void rewrite(InstanceKlass* klass, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
   208
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
   209
#endif // SHARE_INTERPRETER_REWRITER_HPP