src/hotspot/share/oops/constantPool.cpp
author stefank
Mon, 25 Nov 2019 12:22:13 +0100
changeset 59247 56bf71d64d51
parent 58291 a013100f7a35
child 59252 623722a6aeb9
permissions -rw-r--r--
8234562: Move OrderAccess::release_store*/load_acquire to Atomic Reviewed-by: rehn, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53552
0f5fd67d0886 8216970: condy causes JVM crash
lfoltan
parents: 53322
diff changeset
     2
 * Copyright (c) 1997, 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: 4571
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
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: 4571
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    25
#include "precompiled.hpp"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47634
diff changeset
    26
#include "jvm.h"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    27
#include "classfile/classLoaderData.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28741
diff changeset
    28
#include "classfile/javaClasses.inline.hpp"
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15229
diff changeset
    29
#include "classfile/metadataOnStackMark.hpp"
24426
0a69c8cdfca9 8038654: Separate SymbolTable and StringTable code
gziemski
parents: 24334
diff changeset
    30
#include "classfile/stringTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    31
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    32
#include "classfile/vmSymbols.hpp"
54600
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
    33
#include "interpreter/bootstrapInfo.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    34
#include "interpreter/linkResolver.hpp"
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
    35
#include "memory/allocation.inline.hpp"
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
    36
#include "memory/heapInspection.hpp"
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 51486
diff changeset
    37
#include "memory/heapShared.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    38
#include "memory/metadataFactory.hpp"
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
    39
#include "memory/metaspaceClosure.hpp"
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
    40
#include "memory/metaspaceShared.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    41
#include "memory/oopFactory.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 37078
diff changeset
    42
#include "memory/resourceArea.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54600
diff changeset
    43
#include "memory/universe.hpp"
53838
c8c9bd65c198 8219229: Make ConstantPool::tag_at and release_tag_at_put inlineable
redestad
parents: 53746
diff changeset
    44
#include "oops/array.hpp"
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49056
diff changeset
    45
#include "oops/constantPool.inline.hpp"
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49056
diff changeset
    46
#include "oops/cpCache.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    47
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    48
#include "oops/objArrayKlass.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28741
diff changeset
    49
#include "oops/objArrayOop.inline.hpp"
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28741
diff changeset
    50
#include "oops/oop.inline.hpp"
49036
bc92debe57e4 8197999: Accessors in typeArrayOopDesc should use new Access API
rkennke
parents: 48826
diff changeset
    51
#include "oops/typeArrayOop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    52
#include "runtime/fieldType.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49360
diff changeset
    53
#include "runtime/handles.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    54
#include "runtime/init.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    55
#include "runtime/javaCalls.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    56
#include "runtime/signature.hpp"
53590
ce36f8180d03 8218140: Build failures after JDK-8218041 (Assorted wrong/missing includes)
shade
parents: 53584
diff changeset
    57
#include "runtime/thread.inline.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    58
#include "runtime/vframe.inline.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28741
diff changeset
    59
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    61
ConstantPool* ConstantPool::allocate(ClassLoaderData* loader_data, int length, TRAPS) {
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
    62
  Array<u1>* tags = MetadataFactory::new_array<u1>(loader_data, length, 0, CHECK_NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    63
  int size = ConstantPool::size(length);
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
    64
  return new (loader_data, size, MetaspaceObj::ConstantPoolType, THREAD) ConstantPool(tags);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    65
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    66
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    67
#ifdef ASSERT
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15229
diff changeset
    68
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    69
// MetaspaceObj allocation invariant is calloc equivalent memory
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    70
// simple verification of this here (JVM_CONSTANT_Invalid == 0 )
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    71
static bool tag_array_is_zero_initialized(Array<u1>* tags) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    72
  assert(tags != NULL, "invariant");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    73
  const int length = tags->length();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    74
  for (int index = 0; index < length; ++index) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    75
    if (JVM_CONSTANT_Invalid != tags->at(index)) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    76
      return false;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    77
    }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    78
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    79
  return true;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    80
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    81
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    82
#endif
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    83
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    84
ConstantPool::ConstantPool(Array<u1>* tags) :
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    85
  _tags(tags),
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
    86
  _length(tags->length()) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    87
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    88
    assert(_tags != NULL, "invariant");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    89
    assert(tags->length() == _length, "invariant");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    90
    assert(tag_array_is_zero_initialized(tags), "invariant");
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
    91
    assert(0 == flags(), "invariant");
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    92
    assert(0 == version(), "invariant");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    93
    assert(NULL == _pool_holder, "invariant");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    94
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    95
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    96
void ConstantPool::deallocate_contents(ClassLoaderData* loader_data) {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
    97
  if (cache() != NULL) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
    98
    MetadataFactory::free_metadata(loader_data, cache());
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
    99
    set_cache(NULL);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   100
  }
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   101
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   102
  MetadataFactory::free_array<Klass*>(loader_data, resolved_klasses());
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   103
  set_resolved_klasses(NULL);
22750
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 22539
diff changeset
   104
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   105
  MetadataFactory::free_array<jushort>(loader_data, operands());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   106
  set_operands(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   107
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   108
  release_C_heap_structures();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   109
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   110
  // free tag array
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   111
  MetadataFactory::free_array<u1>(loader_data, tags());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   112
  set_tags(NULL);
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
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   115
void ConstantPool::release_C_heap_structures() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   116
  // walk constant pool and decrement symbol reference counts
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   117
  unreference_symbols();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   118
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   119
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   120
void ConstantPool::metaspace_pointers_do(MetaspaceClosure* it) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   121
  log_trace(cds)("Iter(ConstantPool): %p", this);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   122
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   123
  it->push(&_tags, MetaspaceClosure::_writable);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   124
  it->push(&_cache);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   125
  it->push(&_pool_holder);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   126
  it->push(&_operands);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   127
  it->push(&_resolved_klasses, MetaspaceClosure::_writable);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   128
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   129
  for (int i = 0; i < length(); i++) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   130
    // The only MSO's embedded in the CP entries are Symbols:
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   131
    //   JVM_CONSTANT_String (normal and pseudo)
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   132
    //   JVM_CONSTANT_Utf8
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   133
    constantTag ctag = tag_at(i);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   134
    if (ctag.is_string() || ctag.is_utf8()) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   135
      it->push(symbol_at_addr(i));
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   136
    }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   137
  }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   138
}
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   139
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   140
objArrayOop ConstantPool::resolved_references() const {
46961
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46816
diff changeset
   141
  return (objArrayOop)_cache->resolved_references();
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   142
}
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   143
47532
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   144
// Called from outside constant pool resolution where a resolved_reference array
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   145
// may not be present.
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   146
objArrayOop ConstantPool::resolved_references_or_null() const {
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   147
  if (_cache == NULL) {
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   148
    return NULL;
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   149
  } else {
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   150
    return (objArrayOop)_cache->resolved_references();
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   151
  }
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   152
}
d8e417df3468 8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents: 47216
diff changeset
   153
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   154
// Create resolved_references array and mapping array for original cp indexes
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   155
// The ldc bytecode was rewritten to have the resolved reference array index so need a way
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   156
// to map it back for resolving and some unlikely miscellaneous uses.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   157
// The objects created by invokedynamic are appended to this list.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   158
void ConstantPool::initialize_resolved_references(ClassLoaderData* loader_data,
33232
75e0112d3eb5 8140452: Internal Error memory/allocation.cpp:179
mgerdin
parents: 33148
diff changeset
   159
                                                  const intStack& reference_map,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   160
                                                  int constant_pool_map_length,
20063
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   161
                                                  TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   162
  // Initialized the resolved object cache.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   163
  int map_length = reference_map.length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   164
  if (map_length > 0) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   165
    // Only need mapping back to constant pool entries.  The map isn't used for
20063
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   166
    // invokedynamic resolved_reference entries.  For invokedynamic entries,
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   167
    // the constant pool cache index has the mapping back to both the constant
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   168
    // pool and to the resolved reference index.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   169
    if (constant_pool_map_length > 0) {
20063
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   170
      Array<u2>* om = MetadataFactory::new_array<u2>(loader_data, constant_pool_map_length, CHECK);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   171
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   172
      for (int i = 0; i < constant_pool_map_length; i++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   173
        int x = reference_map.at(i);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   174
        assert(x == (int)(jushort) x, "klass index is too big");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   175
        om->at_put(i, (jushort)x);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   176
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   177
      set_reference_map(om);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   178
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   179
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   180
    // Create Java array for holding resolved strings, methodHandles,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   181
    // methodTypes, invokedynamic and invokehandle appendix objects, etc.
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   182
    objArrayOop stom = oopFactory::new_objArray(SystemDictionary::Object_klass(), map_length, CHECK);
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   183
    Handle refs_handle (THREAD, (oop)stom);  // must handleize.
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   184
    set_resolved_references(loader_data->add_handle(refs_handle));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   185
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   186
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   187
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   188
void ConstantPool::allocate_resolved_klasses(ClassLoaderData* loader_data, int num_klasses, TRAPS) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   189
  // A ConstantPool can't possibly have 0xffff valid class entries,
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   190
  // because entry #0 must be CONSTANT_Invalid, and each class entry must refer to a UTF8
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   191
  // entry for the class's name. So at most we will have 0xfffe class entries.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   192
  // This allows us to use 0xffff (ConstantPool::_temp_resolved_klass_index) to indicate
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   193
  // UnresolvedKlass entries that are temporarily created during class redefinition.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   194
  assert(num_klasses < CPKlassSlot::_temp_resolved_klass_index, "sanity");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   195
  assert(resolved_klasses() == NULL, "sanity");
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   196
  Array<Klass*>* rk = MetadataFactory::new_array<Klass*>(loader_data, num_klasses, CHECK);
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   197
  set_resolved_klasses(rk);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   198
}
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   199
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   200
void ConstantPool::initialize_unresolved_klasses(ClassLoaderData* loader_data, TRAPS) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   201
  int len = length();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   202
  int num_klasses = 0;
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   203
  for (int i = 1; i <len; i++) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   204
    switch (tag_at(i).value()) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   205
    case JVM_CONSTANT_ClassIndex:
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   206
      {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   207
        const int class_index = klass_index_at(i);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   208
        unresolved_klass_at_put(i, class_index, num_klasses++);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   209
      }
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   210
      break;
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   211
#ifndef PRODUCT
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   212
    case JVM_CONSTANT_Class:
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   213
    case JVM_CONSTANT_UnresolvedClass:
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   214
    case JVM_CONSTANT_UnresolvedClassInError:
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   215
      // All of these should have been reverted back to ClassIndex before calling
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   216
      // this function.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   217
      ShouldNotReachHere();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   218
#endif
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   219
    }
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   220
  }
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   221
  allocate_resolved_klasses(loader_data, num_klasses, THREAD);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   222
}
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   223
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51425
diff changeset
   224
// Unsafe anonymous class support:
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   225
void ConstantPool::klass_at_put(int class_index, int name_index, int resolved_klass_index, Klass* k, Symbol* name) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   226
  assert(is_within_bounds(class_index), "index out of bounds");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   227
  assert(is_within_bounds(name_index), "index out of bounds");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   228
  assert((resolved_klass_index & 0xffff0000) == 0, "must be");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   229
  *int_at_addr(class_index) =
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   230
    build_int_from_shorts((jushort)resolved_klass_index, (jushort)name_index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   231
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   232
  symbol_at_put(name_index, name);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   233
  name->increment_refcount();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   234
  Klass** adr = resolved_klasses()->adr_at(resolved_klass_index);
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 58291
diff changeset
   235
  Atomic::release_store(adr, k);
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   236
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   237
  // The interpreter assumes when the tag is stored, the klass is resolved
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   238
  // and the Klass* non-NULL, so we need hardware store ordering here.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   239
  if (k != NULL) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   240
    release_tag_at_put(class_index, JVM_CONSTANT_Class);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   241
  } else {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   242
    release_tag_at_put(class_index, JVM_CONSTANT_UnresolvedClass);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   243
  }
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   244
}
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   245
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51425
diff changeset
   246
// Unsafe anonymous class support:
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   247
void ConstantPool::klass_at_put(int class_index, Klass* k) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   248
  assert(k != NULL, "must be valid klass");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   249
  CPKlassSlot kslot = klass_slot_at(class_index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   250
  int resolved_klass_index = kslot.resolved_klass_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   251
  Klass** adr = resolved_klasses()->adr_at(resolved_klass_index);
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 58291
diff changeset
   252
  Atomic::release_store(adr, k);
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   253
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   254
  // The interpreter assumes when the tag is stored, the klass is resolved
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   255
  // and the Klass* non-NULL, so we need hardware store ordering here.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   256
  release_tag_at_put(class_index, JVM_CONSTANT_Class);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   257
}
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   258
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   259
#if INCLUDE_CDS_JAVA_HEAP
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   260
// Archive the resolved references
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   261
void ConstantPool::archive_resolved_references(Thread* THREAD) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   262
  if (_cache == NULL) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   263
    return; // nothing to do
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   264
  }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   265
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   266
  InstanceKlass *ik = pool_holder();
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   267
  if (!(ik->is_shared_boot_class() || ik->is_shared_platform_class() ||
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   268
        ik->is_shared_app_class())) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   269
    // Archiving resolved references for classes from non-builtin loaders
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   270
    // is not yet supported.
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   271
    set_resolved_references(NULL);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   272
    return;
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   273
  }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   274
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   275
  objArrayOop rr = resolved_references();
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   276
  Array<u2>* ref_map = reference_map();
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   277
  if (rr != NULL) {
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   278
    int ref_map_len = ref_map == NULL ? 0 : ref_map->length();
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   279
    int rr_len = rr->length();
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   280
    for (int i = 0; i < rr_len; i++) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   281
      oop p = rr->obj_at(i);
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   282
      rr->obj_at_put(i, NULL);
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   283
      if (p != NULL && i < ref_map_len) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   284
        int index = object_to_cp_index(i);
54379
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 53838
diff changeset
   285
        if (tag_at(index).is_string()) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   286
          oop op = StringTable::create_archived_string(p, THREAD);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   287
          // If the String object is not archived (possibly too large),
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   288
          // NULL is returned. Also set it in the array, so we won't
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   289
          // have a 'bad' reference in the archived resolved_reference
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   290
          // array.
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   291
          rr->obj_at_put(i, op);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   292
        }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   293
      }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   294
    }
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   295
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 51486
diff changeset
   296
    oop archived = HeapShared::archive_heap_object(rr, THREAD);
51425
4e9667589c43 8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents: 51338
diff changeset
   297
    // If the resolved references array is not archived (too large),
4e9667589c43 8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents: 51338
diff changeset
   298
    // the 'archived' object is NULL. No need to explicitly check
4e9667589c43 8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents: 51338
diff changeset
   299
    // the return value of archive_heap_object here. At runtime, the
4e9667589c43 8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents: 51338
diff changeset
   300
    // resolved references will be created using the normal process
4e9667589c43 8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents: 51338
diff changeset
   301
    // when there is no archived value.
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   302
    _cache->set_archived_references(archived);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   303
    set_resolved_references(NULL);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   304
  }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   305
}
47549
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   306
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   307
void ConstantPool::resolve_class_constants(TRAPS) {
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   308
  assert(DumpSharedSpaces, "used during dump time only");
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   309
  // The _cache may be NULL if the _pool_holder klass fails verification
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   310
  // at dump time due to missing dependencies.
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   311
  if (cache() == NULL || reference_map() == NULL) {
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   312
    return; // nothing to do
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   313
  }
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   314
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   315
  constantPoolHandle cp(THREAD, this);
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   316
  for (int index = 1; index < length(); index++) { // Index 0 is unused
47797
d20059c27430 8184206: Resolve all string constants in shared classes at CDS dump time
jiangli
parents: 47765
diff changeset
   317
    if (tag_at(index).is_string() && !cp->is_pseudo_string_at(index)) {
d20059c27430 8184206: Resolve all string constants in shared classes at CDS dump time
jiangli
parents: 47765
diff changeset
   318
      int cache_index = cp->cp_to_object_index(index);
d20059c27430 8184206: Resolve all string constants in shared classes at CDS dump time
jiangli
parents: 47765
diff changeset
   319
      string_at_impl(cp, index, cache_index, CHECK);
47549
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   320
    }
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   321
  }
0a0fae0c05ac 8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents: 47532
diff changeset
   322
}
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   323
#endif
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   324
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   325
// CDS support. Create a new resolved_references array.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   326
void ConstantPool::restore_unshareable_info(TRAPS) {
46324
8764956ec928 8005165: Remove CPU-dependent code in self-patching vtables
iklam
parents: 39398
diff changeset
   327
  assert(is_constantPool(), "ensure C++ vtable is restored");
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   328
  assert(on_stack(), "should always be set for shared constant pools");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   329
  assert(is_shared(), "should always be set for shared constant pools");
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   330
  assert(_cache != NULL, "constant pool _cache should not be NULL");
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   331
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   332
  // Only create the new resolved references array if it hasn't been attempted before
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   333
  if (resolved_references() != NULL) return;
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   334
31038
2fd2fdc6a70a 8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 29576
diff changeset
   335
  // restore the C++ vtable from the shared archive
2fd2fdc6a70a 8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 29576
diff changeset
   336
  restore_vtable();
2fd2fdc6a70a 8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 29576
diff changeset
   337
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   338
  if (SystemDictionary::Object_klass_loaded()) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   339
    ClassLoaderData* loader_data = pool_holder()->class_loader_data();
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   340
#if INCLUDE_CDS_JAVA_HEAP
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 51486
diff changeset
   341
    if (HeapShared::open_archive_heap_region_mapped() &&
48785
4d1970962ee9 8195107: CDS broken due to 8194741
eosterlund
parents: 48784
diff changeset
   342
        _cache->archived_references() != NULL) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   343
      oop archived = _cache->archived_references();
48785
4d1970962ee9 8195107: CDS broken due to 8194741
eosterlund
parents: 48784
diff changeset
   344
      // Create handle for the archived resolved reference array object
4d1970962ee9 8195107: CDS broken due to 8194741
eosterlund
parents: 48784
diff changeset
   345
      Handle refs_handle(THREAD, archived);
4d1970962ee9 8195107: CDS broken due to 8194741
eosterlund
parents: 48784
diff changeset
   346
      set_resolved_references(loader_data->add_handle(refs_handle));
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   347
    } else
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   348
#endif
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   349
    {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   350
      // No mapped archived resolved reference array
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   351
      // Recreate the object array and add to ClassLoaderData.
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   352
      int map_length = resolved_reference_length();
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   353
      if (map_length > 0) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   354
        objArrayOop stom = oopFactory::new_objArray(SystemDictionary::Object_klass(), map_length, CHECK);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   355
        Handle refs_handle(THREAD, (oop)stom);  // must handleize.
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   356
        set_resolved_references(loader_data->add_handle(refs_handle));
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   357
      }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   358
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   359
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   360
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   361
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   362
void ConstantPool::remove_unshareable_info() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   363
  // Resolved references are not in the shared archive.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   364
  // Save the length for restoration.  It is not necessarily the same length
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   365
  // as reference_map.length() if invokedynamic is saved. It is needed when
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   366
  // re-creating the resolved reference array if archived heap data cannot be map
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   367
  // at runtime.
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   368
  set_resolved_reference_length(
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31038
diff changeset
   369
    resolved_references() != NULL ? resolved_references()->length() : 0);
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   370
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   371
  // If archiving heap objects is not allowed, clear the resolved references.
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   372
  // Otherwise, it is cleared after the resolved references array is cached
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   373
  // (see archive_resolved_references()).
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   374
  // If DynamicDumpSharedSpaces is enabled, clear the resolved references also
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   375
  // as java objects are not archived in the top layer.
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   376
  if (!HeapShared::is_heap_object_archiving_allowed() || DynamicDumpSharedSpaces) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   377
    set_resolved_references(NULL);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   378
  }
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   379
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   380
  // Shared ConstantPools are in the RO region, so the _flags cannot be modified.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   381
  // The _on_stack flag is used to prevent ConstantPools from deallocation during
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   382
  // class redefinition. Since shared ConstantPools cannot be deallocated anyway,
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   383
  // we always set _on_stack to true to avoid having to change _flags during runtime.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   384
  _flags |= (_on_stack | _is_shared);
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   385
  int num_klasses = 0;
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   386
  for (int index = 1; index < length(); index++) { // Index 0 is unused
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   387
    if (!DynamicDumpSharedSpaces) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   388
      assert(!tag_at(index).is_unresolved_klass_in_error(), "This must not happen during static dump time");
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   389
    } else {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   390
      if (tag_at(index).is_unresolved_klass_in_error() ||
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   391
          tag_at(index).is_method_handle_in_error()    ||
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   392
          tag_at(index).is_method_type_in_error()      ||
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   393
          tag_at(index).is_dynamic_constant_in_error()) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   394
        tag_at_put(index, JVM_CONSTANT_UnresolvedClass);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   395
      }
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   396
    }
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   397
    if (tag_at(index).is_klass()) {
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   398
      // This class was resolved as a side effect of executing Java code
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   399
      // during dump time. We need to restore it back to an UnresolvedClass,
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   400
      // so that the proper class loading and initialization can happen
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   401
      // at runtime.
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   402
      CPKlassSlot kslot = klass_slot_at(index);
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   403
      int resolved_klass_index = kslot.resolved_klass_index();
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   404
      int name_index = kslot.name_index();
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   405
      assert(tag_at(name_index).is_symbol(), "sanity");
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   406
      resolved_klasses()->at_put(resolved_klass_index, NULL);
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   407
      tag_at_put(index, JVM_CONSTANT_UnresolvedClass);
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   408
      assert(klass_name_at(index) == symbol_at(name_index), "sanity");
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   409
    }
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   410
  }
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   411
  if (cache() != NULL) {
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   412
    cache()->remove_unshareable_info();
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 47095
diff changeset
   413
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   414
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   415
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   416
int ConstantPool::cp_to_object_index(int cp_index) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   417
  // this is harder don't do this so much.
20063
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   418
  int i = reference_map()->find(cp_index);
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   419
  // We might not find the index for jsr292 call.
8965b97fcbb2 8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents: 18439
diff changeset
   420
  return (i < 0) ? _no_index_sentinel : i;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   421
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   422
35498
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 35219
diff changeset
   423
void ConstantPool::string_at_put(int which, int obj_index, oop str) {
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 35219
diff changeset
   424
  resolved_references()->obj_at_put(obj_index, str);
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 35219
diff changeset
   425
}
392b50de06c6 8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents: 35219
diff changeset
   426
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   427
void ConstantPool::trace_class_resolution(const constantPoolHandle& this_cp, Klass* k) {
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   428
  ResourceMark rm;
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   429
  int line_number = -1;
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   430
  const char * source_file = NULL;
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   431
  if (JavaThread::current()->has_last_Java_frame()) {
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   432
    // try to identify the method which called this function.
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   433
    vframeStream vfst(JavaThread::current());
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   434
    if (!vfst.at_end()) {
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   435
      line_number = vfst.method()->line_number_from_bci(vfst.bci());
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   436
      Symbol* s = vfst.method()->method_holder()->source_file_name();
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   437
      if (s != NULL) {
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   438
        source_file = s->as_C_string();
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   439
      }
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   440
    }
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   441
  }
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   442
  if (k != this_cp->pool_holder()) {
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   443
    // only print something if the classes are different
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   444
    if (source_file != NULL) {
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37475
diff changeset
   445
      log_debug(class, resolve)("%s %s %s:%d",
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   446
                 this_cp->pool_holder()->external_name(),
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33593
diff changeset
   447
                 k->external_name(), source_file, line_number);
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   448
    } else {
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37475
diff changeset
   449
      log_debug(class, resolve)("%s %s",
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   450
                 this_cp->pool_holder()->external_name(),
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33593
diff changeset
   451
                 k->external_name());
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   452
    }
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   453
  }
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   454
}
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   455
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   456
Klass* ConstantPool::klass_at_impl(const constantPoolHandle& this_cp, int which,
27408
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   457
                                   bool save_resolution_error, TRAPS) {
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   458
  assert(THREAD->is_Java_thread(), "must be a Java thread");
53560
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   459
  JavaThread* javaThread = (JavaThread*)THREAD;
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   460
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   461
  // A resolved constantPool entry will contain a Klass*, otherwise a Symbol*.
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   462
  // It is not safe to rely on the tag bit's here, since we don't have a lock, and
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   463
  // the entry and tag is not updated atomicly.
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   464
  CPKlassSlot kslot = this_cp->klass_slot_at(which);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   465
  int resolved_klass_index = kslot.resolved_klass_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   466
  int name_index = kslot.name_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   467
  assert(this_cp->tag_at(name_index).is_symbol(), "sanity");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   468
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   469
  Klass* klass = this_cp->resolved_klasses()->at(resolved_klass_index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   470
  if (klass != NULL) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   471
    return klass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   474
  // This tag doesn't change back to unresolved class unless at a safepoint.
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   475
  if (this_cp->tag_at(which).is_unresolved_klass_in_error()) {
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   476
    // The original attempt to resolve this constant pool entry failed so find the
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   477
    // class of the original error and throw another error of the same class
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   478
    // (JVMS 5.4.3).
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   479
    // If there is a detail message, pass that detail message to the error.
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   480
    // The JVMS does not strictly require us to duplicate the same detail message,
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   481
    // or any internal exception fields such as cause or stacktrace.  But since the
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   482
    // detail message is often a class name or other literal string, we will repeat it
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   483
    // if we can find it in the symbol table.
52067
2e72562697bf 8211394: CHECK_ must be used in the rhs of an assignment statement within a block
dholmes
parents: 52062
diff changeset
   484
    throw_resolution_error(this_cp, which, CHECK_NULL);
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   485
    ShouldNotReachHere();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   488
  Handle mirror_handle;
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   489
  Symbol* name = this_cp->symbol_at(name_index);
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   490
  Handle loader (THREAD, this_cp->pool_holder()->class_loader());
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   491
  Handle protection_domain (THREAD, this_cp->pool_holder()->protection_domain());
53560
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   492
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   493
  Klass* k;
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   494
  {
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   495
    // Turn off the single stepping while doing class resolution
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   496
    JvmtiHideSingleStepping jhss(javaThread);
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   497
    k = SystemDictionary::resolve_or_fail(name, loader, protection_domain, true, THREAD);
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   498
  } //  JvmtiHideSingleStepping jhss(javaThread);
b92b0baa7afd 8163127: Debugger classExclusionFilter does not work correctly with method references
dtitov
parents: 53552
diff changeset
   499
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   500
  if (!HAS_PENDING_EXCEPTION) {
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   501
    // preserve the resolved klass from unloading
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   502
    mirror_handle = Handle(THREAD, k->java_mirror());
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   503
    // Do access check for klasses
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   504
    verify_constant_pool_resolve(this_cp, k, THREAD);
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   505
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   507
  // Failed to resolve class. We must record the errors so that subsequent attempts
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   508
  // to resolve this constant pool entry fail with the same error (JVMS 5.4.3).
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   509
  if (HAS_PENDING_EXCEPTION) {
27408
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   510
    if (save_resolution_error) {
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   511
      save_and_throw_exception(this_cp, which, constantTag(JVM_CONSTANT_UnresolvedClass), CHECK_NULL);
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   512
      // If CHECK_NULL above doesn't return the exception, that means that
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   513
      // some other thread has beaten us and has resolved the class.
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   514
      // To preserve old behavior, we return the resolved class.
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   515
      klass = this_cp->resolved_klasses()->at(resolved_klass_index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   516
      assert(klass != NULL, "must be resolved if exception was cleared");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   517
      return klass;
27408
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   518
    } else {
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   519
      return NULL;  // return the pending exception
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   520
    }
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   521
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37475
diff changeset
   523
  // logging for class+resolve.
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37475
diff changeset
   524
  if (log_is_enabled(Debug, class, resolve)){
37451
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
   525
    trace_class_resolution(this_cp, k);
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
   526
  }
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   527
  Klass** adr = this_cp->resolved_klasses()->adr_at(resolved_klass_index);
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 58291
diff changeset
   528
  Atomic::release_store(adr, k);
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   529
  // The interpreter assumes when the tag is stored, the klass is resolved
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   530
  // and the Klass* stored in _resolved_klasses is non-NULL, so we need
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   531
  // hardware store ordering here.
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   532
  this_cp->release_tag_at_put(which, JVM_CONSTANT_Class);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   533
  return k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   537
// Does not update ConstantPool* - to avoid any exception throwing. Used
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
// by compiler and exception handling.  Also used to avoid classloads for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
// instanceof operations. Returns NULL if the class has not been loaded or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
// if the verification of constant pool failed
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   541
Klass* ConstantPool::klass_at_if_loaded(const constantPoolHandle& this_cp, int which) {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   542
  CPKlassSlot kslot = this_cp->klass_slot_at(which);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   543
  int resolved_klass_index = kslot.resolved_klass_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   544
  int name_index = kslot.name_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   545
  assert(this_cp->tag_at(name_index).is_symbol(), "sanity");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   546
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   547
  Klass* k = this_cp->resolved_klasses()->at(resolved_klass_index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   548
  if (k != NULL) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   549
    return k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    Thread *thread = Thread::current();
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   552
    Symbol* name = this_cp->symbol_at(name_index);
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   553
    oop loader = this_cp->pool_holder()->class_loader();
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   554
    oop protection_domain = this_cp->pool_holder()->protection_domain();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    Handle h_prot (thread, protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    Handle h_loader (thread, loader);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   557
    Klass* k = SystemDictionary::find(name, h_loader, h_prot, thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
58291
a013100f7a35 8213150: Add verification for locking by VMThread
coleenp
parents: 58177
diff changeset
   559
    // Avoid constant pool verification at a safepoint, which takes the Module_lock.
a013100f7a35 8213150: Add verification for locking by VMThread
coleenp
parents: 58177
diff changeset
   560
    if (k != NULL && !SafepointSynchronize::is_at_safepoint()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
      // Make sure that resolving is legal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
      // return NULL if verification fails
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   564
      verify_constant_pool_resolve(this_cp, k, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
      if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
        CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      }
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   569
      return k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
      return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   576
Method* ConstantPool::method_at_if_loaded(const constantPoolHandle& cpool,
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   577
                                                   int which) {
11626
7423003cc783 7140882: Don't return booleans from methods returning pointers
brutisso
parents: 10565
diff changeset
   578
  if (cpool->cache() == NULL)  return NULL;  // nothing to load yet
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   579
  int cache_index = decode_cpcache_index(which, true);
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9116
diff changeset
   580
  if (!(cache_index >= 0 && cache_index < cpool->cache()->length())) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   581
    // FIXME: should be an assert
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37475
diff changeset
   582
    log_debug(class, resolve)("bad operand %d in:", which); cpool->print();
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9116
diff changeset
   583
    return NULL;
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9116
diff changeset
   584
  }
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9116
diff changeset
   585
  ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   586
  return e->method_if_resolved(cpool);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   587
}
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   588
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   589
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   590
bool ConstantPool::has_appendix_at_if_loaded(const constantPoolHandle& cpool, int which) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   591
  if (cpool->cache() == NULL)  return false;  // nothing to load yet
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   592
  int cache_index = decode_cpcache_index(which, true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   593
  ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   594
  return e->has_appendix();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   595
}
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   596
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   597
oop ConstantPool::appendix_at_if_loaded(const constantPoolHandle& cpool, int which) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
   598
  if (cpool->cache() == NULL)  return NULL;  // nothing to load yet
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   599
  int cache_index = decode_cpcache_index(which, true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   600
  ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   601
  return e->appendix_if_resolved(cpool);
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9116
diff changeset
   602
}
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9116
diff changeset
   603
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9116
diff changeset
   604
53746
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53745
diff changeset
   605
bool ConstantPool::has_local_signature_at_if_loaded(const constantPoolHandle& cpool, int which) {
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13736
diff changeset
   606
  if (cpool->cache() == NULL)  return false;  // nothing to load yet
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13736
diff changeset
   607
  int cache_index = decode_cpcache_index(which, true);
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13736
diff changeset
   608
  ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
53746
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53745
diff changeset
   609
  return e->has_local_signature();
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13736
diff changeset
   610
}
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13736
diff changeset
   611
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   612
Symbol* ConstantPool::impl_name_ref_at(int which, bool uncached) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   613
  int name_index = name_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  return symbol_at(name_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   618
Symbol* ConstantPool::impl_signature_ref_at(int which, bool uncached) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   619
  int signature_index = signature_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  return symbol_at(signature_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   623
int ConstantPool::impl_name_and_type_ref_index_at(int which, bool uncached) {
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   624
  int i = which;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   625
  if (!uncached && cache() != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   626
    if (ConstantPool::is_invokedynamic_index(which)) {
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
   627
      // Invokedynamic index is index into the constant pool cache
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
   628
      int pool_index = invokedynamic_bootstrap_ref_index_at(which);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
   629
      pool_index = bootstrap_name_and_type_ref_index_at(pool_index);
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   630
      assert(tag_at(pool_index).is_name_and_type(), "");
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   631
      return pool_index;
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   632
    }
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   633
    // change byte-ordering and go via cache
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   634
    i = remap_instruction_operand_from_cache(which);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   635
  } else {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
   636
    if (tag_at(which).has_bootstrap()) {
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
   637
      int pool_index = bootstrap_name_and_type_ref_index_at(which);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   638
      assert(tag_at(pool_index).is_name_and_type(), "");
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   639
      return pool_index;
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   640
    }
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   641
  }
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   642
  assert(tag_at(i).is_field_or_method(), "Corrupted constant pool");
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
   643
  assert(!tag_at(i).has_bootstrap(), "Must be handled above");
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   644
  jint ref_index = *int_at_addr(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  return extract_high_short_from_int(ref_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   648
constantTag ConstantPool::impl_tag_ref_at(int which, bool uncached) {
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   649
  int pool_index = which;
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   650
  if (!uncached && cache() != NULL) {
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   651
    if (ConstantPool::is_invokedynamic_index(which)) {
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   652
      // Invokedynamic index is index into resolved_references
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
   653
      pool_index = invokedynamic_bootstrap_ref_index_at(which);
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   654
    } else {
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   655
      // change byte-ordering and go via cache
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   656
      pool_index = remap_instruction_operand_from_cache(which);
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   657
    }
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   658
  }
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   659
  return tag_at(pool_index);
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
   660
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   662
int ConstantPool::impl_klass_ref_index_at(int which, bool uncached) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   663
  guarantee(!ConstantPool::is_invokedynamic_index(which),
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   664
            "an invokedynamic instruction does not have a klass");
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   665
  int i = which;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   666
  if (!uncached && cache() != NULL) {
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   667
    // change byte-ordering and go via cache
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   668
    i = remap_instruction_operand_from_cache(which);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   669
  }
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   670
  assert(tag_at(i).is_field_or_method(), "Corrupted constant pool");
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   671
  jint ref_index = *int_at_addr(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  return extract_low_short_from_int(ref_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   676
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   677
int ConstantPool::remap_instruction_operand_from_cache(int operand) {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
   678
  int cpc_index = operand;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
   679
  DEBUG_ONLY(cpc_index -= CPCACHE_INDEX_TAG);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4571
diff changeset
   680
  assert((int)(u2)cpc_index == cpc_index, "clean u2");
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   681
  int member_index = cache()->entry_at(cpc_index)->constant_pool_index();
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 2860
diff changeset
   682
  return member_index;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   683
}
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   684
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   685
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   686
void ConstantPool::verify_constant_pool_resolve(const constantPoolHandle& this_cp, Klass* k, TRAPS) {
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   687
  if (!(k->is_instance_klass() || k->is_objArray_klass())) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   688
    return;  // short cut, typeArray klass is always accessible
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  }
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   690
  Klass* holder = this_cp->pool_holder();
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   691
  bool fold_type_to_class = true;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   692
  LinkResolver::check_klass_accessability(holder, k, fold_type_to_class, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   696
int ConstantPool::name_ref_index_at(int which_nt) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   697
  jint ref_index = name_and_type_at(which_nt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  return extract_low_short_from_int(ref_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   702
int ConstantPool::signature_ref_index_at(int which_nt) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   703
  jint ref_index = name_and_type_at(which_nt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  return extract_high_short_from_int(ref_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   708
Klass* ConstantPool::klass_ref_at(int which, TRAPS) {
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 27408
diff changeset
   709
  return klass_at(klass_ref_index_at(which), THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   712
Symbol* ConstantPool::klass_name_at(int which) const {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
   713
  return symbol_at(klass_slot_at(which).name_index());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   716
Symbol* ConstantPool::klass_ref_at_noresolve(int which) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  jint ref_index = klass_ref_index_at(which);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  return klass_at_noresolve(ref_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   721
Symbol* ConstantPool::uncached_klass_ref_at_noresolve(int which) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   722
  jint ref_index = uncached_klass_ref_index_at(which);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   723
  return klass_at_noresolve(ref_index);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   724
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   725
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   726
char* ConstantPool::string_at_noresolve(int which) {
28741
1f10b1bd612d 8008678: JSR 292: constant pool reconstitution must support pseudo strings
sspitsyn
parents: 27680
diff changeset
   727
  return unresolved_string_at(which)->as_C_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   730
BasicType ConstantPool::basic_type_for_signature_at(int which) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  return FieldType::basic_type(symbol_at(which));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   735
void ConstantPool::resolve_string_constants_impl(const constantPoolHandle& this_cp, TRAPS) {
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   736
  for (int index = 1; index < this_cp->length(); index++) { // Index 0 is unused
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   737
    if (this_cp->tag_at(index).is_string()) {
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   738
      this_cp->string_at(index, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   743
Symbol* ConstantPool::exception_message(const constantPoolHandle& this_cp, int which, constantTag tag, oop pending_exception) {
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   744
  // Dig out the detailed message to reuse if possible
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents: 25325
diff changeset
   745
  Symbol* message = java_lang_Throwable::detail_message(pending_exception);
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents: 25325
diff changeset
   746
  if (message != NULL) {
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents: 25325
diff changeset
   747
    return message;
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   748
  }
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   749
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   750
  // Return specific message for the tag
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   751
  switch (tag.value()) {
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   752
  case JVM_CONSTANT_UnresolvedClass:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   753
    // return the class name in the error message
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   754
    message = this_cp->klass_name_at(which);
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   755
    break;
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   756
  case JVM_CONSTANT_MethodHandle:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   757
    // return the method handle name in the error message
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   758
    message = this_cp->method_handle_name_ref_at(which);
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   759
    break;
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   760
  case JVM_CONSTANT_MethodType:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   761
    // return the method type signature in the error message
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   762
    message = this_cp->method_type_signature_at(which);
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   763
    break;
57511
00ae3b739184 8228485: JVM crashes when bootstrap method for condy triggers loading of class whose static initializer throws exception
coleenp
parents: 54927
diff changeset
   764
  case JVM_CONSTANT_Dynamic:
00ae3b739184 8228485: JVM crashes when bootstrap method for condy triggers loading of class whose static initializer throws exception
coleenp
parents: 54927
diff changeset
   765
    // return the name of the condy in the error message
00ae3b739184 8228485: JVM crashes when bootstrap method for condy triggers loading of class whose static initializer throws exception
coleenp
parents: 54927
diff changeset
   766
    message = this_cp->uncached_name_ref_at(which);
00ae3b739184 8228485: JVM crashes when bootstrap method for condy triggers loading of class whose static initializer throws exception
coleenp
parents: 54927
diff changeset
   767
    break;
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   768
  default:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   769
    ShouldNotReachHere();
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   770
  }
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   771
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   772
  return message;
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   773
}
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   774
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   775
void ConstantPool::throw_resolution_error(const constantPoolHandle& this_cp, int which, TRAPS) {
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   776
  Symbol* message = NULL;
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   777
  Symbol* error = SystemDictionary::find_resolution_error(this_cp, which, &message);
51486
67b55f3c45eb 8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents: 51444
diff changeset
   778
  assert(error != NULL, "checking");
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   779
  CLEAR_PENDING_EXCEPTION;
51486
67b55f3c45eb 8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents: 51444
diff changeset
   780
  if (message != NULL) {
67b55f3c45eb 8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents: 51444
diff changeset
   781
    ResourceMark rm;
67b55f3c45eb 8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents: 51444
diff changeset
   782
    THROW_MSG(error, message->as_C_string());
67b55f3c45eb 8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents: 51444
diff changeset
   783
  } else {
67b55f3c45eb 8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents: 51444
diff changeset
   784
    THROW(error);
67b55f3c45eb 8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents: 51444
diff changeset
   785
  }
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   786
}
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   787
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   788
// If resolution for Class, Dynamic constant, MethodHandle or MethodType fails, save the
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   789
// exception in the resolution error table, so that the same exception is thrown again.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   790
void ConstantPool::save_and_throw_exception(const constantPoolHandle& this_cp, int which,
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   791
                                            constantTag tag, TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   792
  Symbol* error = PENDING_EXCEPTION->klass()->name();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   793
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   794
  int error_tag = tag.error_value();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   795
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   796
  if (!PENDING_EXCEPTION->
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   797
    is_a(SystemDictionary::LinkageError_klass())) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   798
    // Just throw the exception and don't prevent these classes from
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   799
    // being loaded due to virtual machine errors like StackOverflow
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   800
    // and OutOfMemoryError, etc, or if the thread was hit by stop()
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   801
    // Needs clarification to section 5.4.3 of the VM spec (see 6308271)
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   802
  } else if (this_cp->tag_at(which).value() != error_tag) {
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   803
    Symbol* message = exception_message(this_cp, which, tag, PENDING_EXCEPTION);
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   804
    SystemDictionary::add_resolution_error(this_cp, which, error, message);
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   805
    // CAS in the tag.  If a thread beat us to registering this error that's fine.
27408
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   806
    // If another thread resolved the reference, this is a race condition. This
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   807
    // thread may have had a security manager or something temporary.
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   808
    // This doesn't deterministically get an error.   So why do we save this?
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   809
    // We save this because jvmti can add classes to the bootclass path after
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   810
    // this error, so it needs to get the same error if the error is first.
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   811
    jbyte old_tag = Atomic::cmpxchg((jbyte)error_tag,
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
   812
                            (jbyte*)this_cp->tag_addr_at(which), (jbyte)tag.value());
27408
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   813
    if (old_tag != error_tag && old_tag != tag.value()) {
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   814
      // MethodHandles and MethodType doesn't change to resolved version.
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   815
      assert(this_cp->tag_at(which).is_klass(), "Wrong tag value");
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   816
      // Forget the exception and use the resolved class.
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   817
      CLEAR_PENDING_EXCEPTION;
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   818
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   819
  } else {
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   820
    // some other thread put this in error state
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   821
    throw_resolution_error(this_cp, which, CHECK);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   822
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   823
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   824
50971
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   825
constantTag ConstantPool::constant_tag_at(int which) {
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   826
  constantTag tag = tag_at(which);
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   827
  if (tag.is_dynamic_constant() ||
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   828
      tag.is_dynamic_constant_in_error()) {
53552
0f5fd67d0886 8216970: condy causes JVM crash
lfoltan
parents: 53322
diff changeset
   829
    BasicType bt = basic_type_for_constant_at(which);
0f5fd67d0886 8216970: condy causes JVM crash
lfoltan
parents: 53322
diff changeset
   830
    // dynamic constant could return an array, treat as object
0f5fd67d0886 8216970: condy causes JVM crash
lfoltan
parents: 53322
diff changeset
   831
    return constantTag::ofBasicType(is_reference_type(bt) ? T_OBJECT : bt);
50971
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   832
  }
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   833
  return tag;
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   834
}
34872a21af82 8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents: 49658
diff changeset
   835
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   836
BasicType ConstantPool::basic_type_for_constant_at(int which) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   837
  constantTag tag = tag_at(which);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   838
  if (tag.is_dynamic_constant() ||
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   839
      tag.is_dynamic_constant_in_error()) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   840
    // have to look at the signature for this one
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   841
    Symbol* constant_type = uncached_signature_ref_at(which);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   842
    return FieldType::basic_type(constant_type);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   843
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   844
  return tag.basic_type();
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   845
}
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   846
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   847
// Called to resolve constants in the constant pool and return an oop.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   848
// Some constant pool entries cache their resolved oop. This is also
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   849
// called to create oops from constants to use in arguments for invokedynamic
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   850
oop ConstantPool::resolve_constant_at_impl(const constantPoolHandle& this_cp,
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   851
                                           int index, int cache_index,
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   852
                                           bool* status_return, TRAPS) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   853
  oop result_oop = NULL;
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   854
  Handle throw_exception;
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   855
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   856
  if (cache_index == _possible_index_sentinel) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   857
    // It is possible that this constant is one which is cached in the objects.
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   858
    // We'll do a linear search.  This should be OK because this usage is rare.
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   859
    // FIXME: If bootstrap specifiers stress this code, consider putting in
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   860
    // a reverse index.  Binary search over a short array should do it.
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   861
    assert(index > 0, "valid index");
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   862
    cache_index = this_cp->cp_to_object_index(index);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   863
  }
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   864
  assert(cache_index == _no_index_sentinel || cache_index >= 0, "");
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   865
  assert(index == _no_index_sentinel || index >= 0, "");
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   866
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   867
  if (cache_index >= 0) {
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   868
    result_oop = this_cp->resolved_references()->obj_at(cache_index);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   869
    if (result_oop != NULL) {
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 57511
diff changeset
   870
      if (result_oop == Universe::the_null_sentinel()) {
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   871
        DEBUG_ONLY(int temp_index = (index >= 0 ? index : this_cp->object_to_cp_index(cache_index)));
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   872
        assert(this_cp->tag_at(temp_index).is_dynamic_constant(), "only condy uses the null sentinel");
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   873
        result_oop = NULL;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   874
      }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   875
      if (status_return != NULL)  (*status_return) = true;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   876
      return result_oop;
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   877
      // That was easy...
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   878
    }
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   879
    index = this_cp->object_to_cp_index(cache_index);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   880
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   881
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   882
  jvalue prim_value;  // temp used only in a few cases below
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
   883
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   884
  constantTag tag = this_cp->tag_at(index);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   885
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   886
  if (status_return != NULL) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   887
    // don't trigger resolution if the constant might need it
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   888
    switch (tag.value()) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   889
    case JVM_CONSTANT_Class:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   890
    {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   891
      CPKlassSlot kslot = this_cp->klass_slot_at(index);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   892
      int resolved_klass_index = kslot.resolved_klass_index();
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   893
      if (this_cp->resolved_klasses()->at(resolved_klass_index) == NULL) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   894
        (*status_return) = false;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   895
        return NULL;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   896
      }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   897
      // the klass is waiting in the CP; go get it
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   898
      break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   899
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   900
    case JVM_CONSTANT_String:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   901
    case JVM_CONSTANT_Integer:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   902
    case JVM_CONSTANT_Float:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   903
    case JVM_CONSTANT_Long:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   904
    case JVM_CONSTANT_Double:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   905
      // these guys trigger OOM at worst
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   906
      break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   907
    default:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   908
      (*status_return) = false;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   909
      return NULL;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   910
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   911
    // from now on there is either success or an OOME
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   912
    (*status_return) = true;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   913
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   914
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   915
  switch (tag.value()) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   916
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   917
  case JVM_CONSTANT_UnresolvedClass:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   918
  case JVM_CONSTANT_UnresolvedClassInError:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   919
  case JVM_CONSTANT_Class:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   920
    {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   921
      assert(cache_index == _no_index_sentinel, "should not have been set");
27408
9a8090dd6ec3 8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents: 27247
diff changeset
   922
      Klass* resolved = klass_at_impl(this_cp, index, true, CHECK_NULL);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   923
      // ldc wants the java mirror.
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8651
diff changeset
   924
      result_oop = resolved->java_mirror();
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   925
      break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   926
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   927
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   928
  case JVM_CONSTANT_Dynamic:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   929
    {
54600
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   930
      // Resolve the Dynamically-Computed constant to invoke the BSM in order to obtain the resulting oop.
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   931
      BootstrapInfo bootstrap_specifier(this_cp, index);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   932
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   933
      // The initial step in resolving an unresolved symbolic reference to a
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   934
      // dynamically-computed constant is to resolve the symbolic reference to a
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   935
      // method handle which will be the bootstrap method for the dynamically-computed
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   936
      // constant. If resolution of the java.lang.invoke.MethodHandle for the bootstrap
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   937
      // method fails, then a MethodHandleInError is stored at the corresponding
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   938
      // bootstrap method's CP index for the CONSTANT_MethodHandle_info. No need to
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   939
      // set a DynamicConstantInError here since any subsequent use of this
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   940
      // bootstrap method will encounter the resolution of MethodHandleInError.
54600
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   941
      // Both the first, (resolution of the BSM and its static arguments), and the second tasks,
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   942
      // (invocation of the BSM), of JVMS Section 5.4.3.6 occur within invoke_bootstrap_method()
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   943
      // for the bootstrap_specifier created above.
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   944
      SystemDictionary::invoke_bootstrap_method(bootstrap_specifier, THREAD);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   945
      Exceptions::wrap_dynamic_exception(THREAD);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   946
      if (HAS_PENDING_EXCEPTION) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   947
        // Resolution failure of the dynamically-computed constant, save_and_throw_exception
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   948
        // will check for a LinkageError and store a DynamicConstantInError.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   949
        save_and_throw_exception(this_cp, index, tag, CHECK_NULL);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   950
      }
54600
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   951
      result_oop = bootstrap_specifier.resolved_value()();
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   952
      BasicType type = FieldType::basic_type(bootstrap_specifier.signature());
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   953
      if (!is_reference_type(type)) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   954
        // Make sure the primitive value is properly boxed.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   955
        // This is a JDK responsibility.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   956
        const char* fail = NULL;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   957
        if (result_oop == NULL) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   958
          fail = "null result instead of box";
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   959
        } else if (!is_java_primitive(type)) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   960
          // FIXME: support value types via unboxing
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   961
          fail = "can only handle references and primitives";
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   962
        } else if (!java_lang_boxing_object::is_instance(result_oop, type)) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   963
          fail = "primitive is not properly boxed";
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   964
        }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   965
        if (fail != NULL) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   966
          // Since this exception is not a LinkageError, throw exception
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   967
          // but do not save a DynamicInError resolution result.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   968
          // See section 5.4.3 of the VM spec.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   969
          THROW_MSG_NULL(vmSymbols::java_lang_InternalError(), fail);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   970
        }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   971
      }
54600
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   972
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   973
      if (TraceMethodHandles) {
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   974
        bootstrap_specifier.print_msg_on(tty, "resolve_constant_at_impl");
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
   975
      }
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   976
      break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   977
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   978
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   979
  case JVM_CONSTANT_String:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   980
    assert(cache_index != _no_index_sentinel, "should have been set");
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   981
    if (this_cp->is_pseudo_string_at(index)) {
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   982
      result_oop = this_cp->pseudo_string_at(index, cache_index);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   983
      break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   984
    }
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   985
    result_oop = string_at_impl(this_cp, index, cache_index, CHECK_NULL);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   986
    break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   987
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
   988
  case JVM_CONSTANT_DynamicInError:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   989
  case JVM_CONSTANT_MethodHandleInError:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   990
  case JVM_CONSTANT_MethodTypeInError:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   991
    {
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
   992
      throw_resolution_error(this_cp, index, CHECK_NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   993
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   994
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   995
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   996
  case JVM_CONSTANT_MethodHandle:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   997
    {
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   998
      int ref_kind                 = this_cp->method_handle_ref_kind_at(index);
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
   999
      int callee_index             = this_cp->method_handle_klass_index_at(index);
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1000
      Symbol*  name =      this_cp->method_handle_name_ref_at(index);
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1001
      Symbol*  signature = this_cp->method_handle_signature_ref_at(index);
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
  1002
      constantTag m_tag  = this_cp->tag_at(this_cp->method_handle_index_at(index));
37451
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1003
      { ResourceMark rm(THREAD);
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37475
diff changeset
  1004
        log_debug(class, resolve)("resolve JVM_CONSTANT_MethodHandle:%d [%d/%d/%d] %s.%s",
37451
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1005
                              ref_kind, index, this_cp->method_handle_index_at(index),
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1006
                              callee_index, name->as_C_string(), signature->as_C_string());
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1007
      }
39398
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents: 38719
diff changeset
  1008
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
  1009
      Klass* callee = klass_at_impl(this_cp, callee_index, true, CHECK_NULL);
39398
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents: 38719
diff changeset
  1010
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents: 38719
diff changeset
  1011
      // Check constant pool method consistency
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
  1012
      if ((callee->is_interface() && m_tag.is_method()) ||
39398
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents: 38719
diff changeset
  1013
          ((!callee->is_interface() && m_tag.is_interface_method()))) {
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
  1014
        ResourceMark rm(THREAD);
54432
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1015
        stringStream ss;
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1016
        ss.print("Inconsistent constant pool data in classfile for class %s. "
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1017
                 "Method '", callee->name()->as_C_string());
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1018
        signature->print_as_signature_external_return_type(&ss);
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1019
        ss.print(" %s(", name->as_C_string());
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1020
        signature->print_as_signature_external_parameters(&ss);
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1021
        ss.print(")' at index %d is %s and should be %s",
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1022
                 index,
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1023
                 callee->is_interface() ? "CONSTANT_MethodRef" : "CONSTANT_InterfaceMethodRef",
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1024
                 callee->is_interface() ? "CONSTANT_InterfaceMethodRef" : "CONSTANT_MethodRef");
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54379
diff changeset
  1025
        THROW_MSG_NULL(vmSymbols::java_lang_IncompatibleClassChangeError(), ss.as_string());
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
  1026
      }
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38658
diff changeset
  1027
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
  1028
      Klass* klass = this_cp->pool_holder();
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1029
      Handle value = SystemDictionary::link_method_handle_constant(klass, ref_kind,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1030
                                                                   callee, name, signature,
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1031
                                                                   THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1032
      result_oop = value();
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1033
      if (HAS_PENDING_EXCEPTION) {
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
  1034
        save_and_throw_exception(this_cp, index, tag, CHECK_NULL);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1035
      }
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1036
      break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1037
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1038
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1039
  case JVM_CONSTANT_MethodType:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1040
    {
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1041
      Symbol*  signature = this_cp->method_type_signature_at(index);
37451
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1042
      { ResourceMark rm(THREAD);
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37475
diff changeset
  1043
        log_debug(class, resolve)("resolve JVM_CONSTANT_MethodType [%d/%d] %s",
37451
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1044
                              index, this_cp->method_type_index_at(index),
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1045
                              signature->as_C_string());
ab07c0e0b05c 8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents: 37248
diff changeset
  1046
      }
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
  1047
      Klass* klass = this_cp->pool_holder();
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
  1048
      Handle value = SystemDictionary::find_method_handle_type(signature, klass, THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1049
      result_oop = value();
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1050
      if (HAS_PENDING_EXCEPTION) {
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
  1051
        save_and_throw_exception(this_cp, index, tag, CHECK_NULL);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1052
      }
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1053
      break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1054
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1055
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1056
  case JVM_CONSTANT_Integer:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1057
    assert(cache_index == _no_index_sentinel, "should not have been set");
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1058
    prim_value.i = this_cp->int_at(index);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1059
    result_oop = java_lang_boxing_object::create(T_INT, &prim_value, CHECK_NULL);
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1060
    break;
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1061
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1062
  case JVM_CONSTANT_Float:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1063
    assert(cache_index == _no_index_sentinel, "should not have been set");
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1064
    prim_value.f = this_cp->float_at(index);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1065
    result_oop = java_lang_boxing_object::create(T_FLOAT, &prim_value, CHECK_NULL);
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1066
    break;
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1067
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1068
  case JVM_CONSTANT_Long:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1069
    assert(cache_index == _no_index_sentinel, "should not have been set");
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1070
    prim_value.j = this_cp->long_at(index);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1071
    result_oop = java_lang_boxing_object::create(T_LONG, &prim_value, CHECK_NULL);
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1072
    break;
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1073
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1074
  case JVM_CONSTANT_Double:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1075
    assert(cache_index == _no_index_sentinel, "should not have been set");
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1076
    prim_value.d = this_cp->double_at(index);
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1077
    result_oop = java_lang_boxing_object::create(T_DOUBLE, &prim_value, CHECK_NULL);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1078
    break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1079
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1080
  default:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1081
    DEBUG_ONLY( tty->print_cr("*** %p: tag at CP[%d/%d] = %d",
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 23872
diff changeset
  1082
                              this_cp(), index, cache_index, tag.value()));
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1083
    assert(false, "unexpected constant tag");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1084
    break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1085
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1086
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1087
  if (cache_index >= 0) {
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1088
    // Benign race condition:  resolved_references may already be filled in.
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1089
    // The important thing here is that all threads pick up the same result.
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1090
    // It doesn't matter which racing thread wins, as long as only one
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1091
    // result is used by all threads, and all future queries.
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1092
    oop new_result = (result_oop == NULL ? Universe::the_null_sentinel() : result_oop);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1093
    oop old_result = this_cp->resolved_references()
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1094
      ->atomic_compare_exchange_oop(cache_index, new_result, NULL);
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1095
    if (old_result == NULL) {
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1096
      return result_oop;  // was installed
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1097
    } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1098
      // Return the winning thread's result.  This can be different than
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1099
      // the result here for MethodHandles.
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 57511
diff changeset
  1100
      if (old_result == Universe::the_null_sentinel())
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1101
        old_result = NULL;
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1102
      return old_result;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1103
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1104
  } else {
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 57511
diff changeset
  1105
    assert(result_oop != Universe::the_null_sentinel(), "");
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1106
    return result_oop;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1107
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1108
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1109
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1110
oop ConstantPool::uncached_string_at(int which, TRAPS) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1111
  Symbol* sym = unresolved_string_at(which);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1112
  oop str = StringTable::intern(sym, CHECK_(NULL));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1113
  assert(java_lang_String::is_instance(str), "must be string");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1114
  return str;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1115
}
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11626
diff changeset
  1116
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1117
void ConstantPool::copy_bootstrap_arguments_at_impl(const constantPoolHandle& this_cp, int index,
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1118
                                                    int start_arg, int end_arg,
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1119
                                                    objArrayHandle info, int pos,
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1120
                                                    bool must_resolve, Handle if_not_available,
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1121
                                                    TRAPS) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1122
  int argc;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1123
  int limit = pos + end_arg - start_arg;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1124
  // checks: index in range [0..this_cp->length),
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1125
  // tag at index, start..end in range [0..argc],
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1126
  // info array non-null, pos..limit in [0..info.length]
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1127
  if ((0 >= index    || index >= this_cp->length())  ||
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1128
      !(this_cp->tag_at(index).is_invoke_dynamic()    ||
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1129
        this_cp->tag_at(index).is_dynamic_constant()) ||
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1130
      (0 > start_arg || start_arg > end_arg) ||
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1131
      (end_arg > (argc = this_cp->bootstrap_argument_count_at(index))) ||
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1132
      (0 > pos       || pos > limit)         ||
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1133
      (info.is_null() || limit > info->length())) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1134
    // An index or something else went wrong; throw an error.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1135
    // Since this is an internal API, we don't expect this,
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1136
    // so we don't bother to craft a nice message.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1137
    THROW_MSG(vmSymbols::java_lang_LinkageError(), "bad BSM argument access");
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1138
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1139
  // now we can loop safely
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1140
  int info_i = pos;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1141
  for (int i = start_arg; i < end_arg; i++) {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1142
    int arg_index = this_cp->bootstrap_argument_index_at(index, i);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1143
    oop arg_oop;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1144
    if (must_resolve) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1145
      arg_oop = this_cp->resolve_possibly_cached_constant_at(arg_index, CHECK);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1146
    } else {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1147
      bool found_it = false;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1148
      arg_oop = this_cp->find_cached_constant_at(arg_index, found_it, CHECK);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1149
      if (!found_it)  arg_oop = if_not_available();
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1150
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1151
    info->obj_at_put(info_i++, arg_oop);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1152
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1153
}
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1154
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1155
oop ConstantPool::string_at_impl(const constantPoolHandle& this_cp, int which, int obj_index, TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1156
  // If the string has already been interned, this entry will be non-null
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1157
  oop str = this_cp->resolved_references()->obj_at(obj_index);
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 57511
diff changeset
  1158
  assert(str != Universe::the_null_sentinel(), "");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1159
  if (str != NULL) return str;
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1160
  Symbol* sym = this_cp->unresolved_string_at(which);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1161
  str = StringTable::intern(sym, CHECK_(NULL));
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 23175
diff changeset
  1162
  this_cp->string_at_put(which, obj_index, str);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1163
  assert(java_lang_String::is_instance(str), "must be string");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1164
  return str;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
  1168
bool ConstantPool::klass_name_at_matches(const InstanceKlass* k, int which) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1169
  // Names are interned, so we can compare Symbol*s directly
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1170
  Symbol* cp_name = klass_name_at(which);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  return (cp_name == k->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1175
// Iterate over symbols and decrement ones which are Symbol*s
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1176
// This is done during GC.
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  1177
// Only decrement the UTF8 symbols. Strings point to
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1178
// these symbols but didn't increment the reference count.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1179
void ConstantPool::unreference_symbols() {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1180
  for (int index = 1; index < length(); index++) { // Index 0 is unused
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1181
    constantTag tag = tag_at(index);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1182
    if (tag.is_symbol()) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1183
      symbol_at(index)->decrement_refcount();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1184
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1185
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1186
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
// Compare this constant pool's entry at index1 to the constant pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
// cp2's entry at index2.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1191
bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
       int index2, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
20677
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 20672
diff changeset
  1194
  // The error tags are equivalent to non-error tags when comparing
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 20672
diff changeset
  1195
  jbyte t1 = tag_at(index1).non_error_value();
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 20672
diff changeset
  1196
  jbyte t2 = cp2->tag_at(index2).non_error_value();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  if (t1 != t2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
    // Not the same entry type so there is nothing else to check. Note
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
    // that this style of checking will consider resolved/unresolved
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1201
    // class pairs as different.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1202
    // From the ConstantPool* API point of view, this is correct
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1203
    // behavior. See VM_RedefineClasses::merge_constant_pools() to see how this
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1204
    // plays out in the context of ConstantPool* merging.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  switch (t1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  case JVM_CONSTANT_Class:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1211
    Klass* k1 = klass_at(index1, CHECK_false);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1212
    Klass* k2 = cp2->klass_at(index2, CHECK_false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
    if (k1 == k2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
  case JVM_CONSTANT_ClassIndex:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
    int recur1 = klass_index_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
    int recur2 = cp2->klass_index_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
    bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
    if (match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  case JVM_CONSTANT_Double:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
    jdouble d1 = double_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
    jdouble d2 = cp2->double_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
    if (d1 == d2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  case JVM_CONSTANT_Fieldref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  case JVM_CONSTANT_InterfaceMethodref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  case JVM_CONSTANT_Methodref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
    int recur1 = uncached_klass_ref_index_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
    int recur2 = cp2->uncached_klass_ref_index_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
    bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
    if (match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
      recur1 = uncached_name_and_type_ref_index_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
      recur2 = cp2->uncached_name_and_type_ref_index_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
      match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
      if (match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  case JVM_CONSTANT_Float:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
    jfloat f1 = float_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
    jfloat f2 = cp2->float_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    if (f1 == f2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  case JVM_CONSTANT_Integer:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
    jint i1 = int_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
    jint i2 = cp2->int_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
    if (i1 == i2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
  case JVM_CONSTANT_Long:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    jlong l1 = long_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
    jlong l2 = cp2->long_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    if (l1 == l2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
  case JVM_CONSTANT_NameAndType:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
    int recur1 = name_ref_index_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
    int recur2 = cp2->name_ref_index_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
    bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
    if (match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
      recur1 = signature_ref_index_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
      recur2 = cp2->signature_ref_index_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
      match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
      if (match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  case JVM_CONSTANT_StringIndex:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
    int recur1 = string_index_at(index1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
    int recur2 = cp2->string_index_at(index2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
    bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
    if (match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
  case JVM_CONSTANT_UnresolvedClass:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  {
25325
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1308
    Symbol* k1 = klass_name_at(index1);
e3af4e02b0d5 8026977: NPG: Remove ConstantPool::lock
coleenp
parents: 24429
diff changeset
  1309
    Symbol* k2 = cp2->klass_name_at(index2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
    if (k1 == k2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1315
  case JVM_CONSTANT_MethodType:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1316
  {
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1317
    int k1 = method_type_index_at(index1);
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1318
    int k2 = cp2->method_type_index_at(index2);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1319
    bool match = compare_entry_to(k1, cp2, k2, CHECK_false);
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1320
    if (match) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1321
      return true;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1322
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1323
  } break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1324
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1325
  case JVM_CONSTANT_MethodHandle:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1326
  {
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1327
    int k1 = method_handle_ref_kind_at(index1);
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1328
    int k2 = cp2->method_handle_ref_kind_at(index2);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1329
    if (k1 == k2) {
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1330
      int i1 = method_handle_index_at(index1);
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1331
      int i2 = cp2->method_handle_index_at(index2);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1332
      bool match = compare_entry_to(i1, cp2, i2, CHECK_false);
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1333
      if (match) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1334
        return true;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1335
      }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1336
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1337
  } break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1338
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1339
  case JVM_CONSTANT_Dynamic:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1340
  {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1341
    int k1 = bootstrap_name_and_type_ref_index_at(index1);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1342
    int k2 = cp2->bootstrap_name_and_type_ref_index_at(index2);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1343
    int i1 = bootstrap_methods_attribute_index(index1);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1344
    int i2 = cp2->bootstrap_methods_attribute_index(index2);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1345
    // separate statements and variables because CHECK_false is used
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1346
    bool match_entry = compare_entry_to(k1, cp2, k2, CHECK_false);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1347
    bool match_operand = compare_operand_to(i1, cp2, i2, CHECK_false);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1348
    return (match_entry && match_operand);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1349
  } break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1350
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1351
  case JVM_CONSTANT_InvokeDynamic:
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1352
  {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1353
    int k1 = bootstrap_name_and_type_ref_index_at(index1);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1354
    int k2 = cp2->bootstrap_name_and_type_ref_index_at(index2);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1355
    int i1 = bootstrap_methods_attribute_index(index1);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1356
    int i2 = cp2->bootstrap_methods_attribute_index(index2);
17833
52e915e40b15 8015265: revise the fix for 8007037
ccheung
parents: 17078
diff changeset
  1357
    // separate statements and variables because CHECK_false is used
52e915e40b15 8015265: revise the fix for 8007037
ccheung
parents: 17078
diff changeset
  1358
    bool match_entry = compare_entry_to(k1, cp2, k2, CHECK_false);
52e915e40b15 8015265: revise the fix for 8007037
ccheung
parents: 17078
diff changeset
  1359
    bool match_operand = compare_operand_to(i1, cp2, i2, CHECK_false);
52e915e40b15 8015265: revise the fix for 8007037
ccheung
parents: 17078
diff changeset
  1360
    return (match_entry && match_operand);
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1361
  } break;
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1362
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1363
  case JVM_CONSTANT_String:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1365
    Symbol* s1 = unresolved_string_at(index1);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1366
    Symbol* s2 = cp2->unresolved_string_at(index2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
    if (s1 == s2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  case JVM_CONSTANT_Utf8:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1374
    Symbol* s1 = symbol_at(index1);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1375
    Symbol* s2 = cp2->symbol_at(index2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
    if (s1 == s2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  // Invalid is used as the tag for the second constant pool entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  // occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  // not be seen by itself.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  case JVM_CONSTANT_Invalid: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
} // end compare_entry_to()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
17077
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1395
// Resize the operands array with delta_len and delta_size.
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1396
// Used in RedefineClasses for CP merge.
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1397
void ConstantPool::resize_operands(int delta_len, int delta_size, TRAPS) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1398
  int old_len  = operand_array_length(operands());
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1399
  int new_len  = old_len + delta_len;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1400
  int min_len  = (delta_len > 0) ? old_len : new_len;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1401
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1402
  int old_size = operands()->length();
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1403
  int new_size = old_size + delta_size;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1404
  int min_size = (delta_size > 0) ? old_size : new_size;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1405
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1406
  ClassLoaderData* loader_data = pool_holder()->class_loader_data();
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1407
  Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, new_size, CHECK);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1408
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1409
  // Set index in the resized array for existing elements only
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1410
  for (int idx = 0; idx < min_len; idx++) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1411
    int offset = operand_offset_at(idx);                       // offset in original array
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1412
    operand_offset_at_put(new_ops, idx, offset + 2*delta_len); // offset in resized array
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1413
  }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1414
  // Copy the bootstrap specifiers only
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1415
  Copy::conjoint_memory_atomic(operands()->adr_at(2*old_len),
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1416
                               new_ops->adr_at(2*new_len),
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1417
                               (min_size - 2*min_len) * sizeof(u2));
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1418
  // Explicitly deallocate old operands array.
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1419
  // Note, it is not needed for 7u backport.
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1420
  if ( operands() != NULL) { // the safety check
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1421
    MetadataFactory::free_array<u2>(loader_data, operands());
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1422
  }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1423
  set_operands(new_ops);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1424
} // end resize_operands()
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1425
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1426
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1427
// Extend the operands array with the length and size of the ext_cp operands.
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1428
// Used in RedefineClasses for CP merge.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1429
void ConstantPool::extend_operands(const constantPoolHandle& ext_cp, TRAPS) {
17077
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1430
  int delta_len = operand_array_length(ext_cp->operands());
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1431
  if (delta_len == 0) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1432
    return; // nothing to do
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1433
  }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1434
  int delta_size = ext_cp->operands()->length();
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1435
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1436
  assert(delta_len  > 0 && delta_size > 0, "extended operands array must be bigger");
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1437
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1438
  if (operand_array_length(operands()) == 0) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1439
    ClassLoaderData* loader_data = pool_holder()->class_loader_data();
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1440
    Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, delta_size, CHECK);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1441
    // The first element index defines the offset of second part
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1442
    operand_offset_at_put(new_ops, 0, 2*delta_len); // offset in new array
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1443
    set_operands(new_ops);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1444
  } else {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1445
    resize_operands(delta_len, delta_size, CHECK);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1446
  }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1447
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1448
} // end extend_operands()
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1449
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1450
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1451
// Shrink the operands array to a smaller array with new_len length.
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1452
// Used in RedefineClasses for CP merge.
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1453
void ConstantPool::shrink_operands(int new_len, TRAPS) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1454
  int old_len = operand_array_length(operands());
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1455
  if (new_len == old_len) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1456
    return; // nothing to do
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1457
  }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1458
  assert(new_len < old_len, "shrunken operands array must be smaller");
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1459
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1460
  int free_base  = operand_next_offset_at(new_len - 1);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1461
  int delta_len  = new_len - old_len;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1462
  int delta_size = 2*delta_len + free_base - operands()->length();
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1463
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1464
  resize_operands(delta_len, delta_size, CHECK);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1465
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1466
} // end shrink_operands()
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1467
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1468
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1469
void ConstantPool::copy_operands(const constantPoolHandle& from_cp,
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1470
                                 const constantPoolHandle& to_cp,
15433
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1471
                                 TRAPS) {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1472
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1473
  int from_oplen = operand_array_length(from_cp->operands());
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1474
  int old_oplen  = operand_array_length(to_cp->operands());
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1475
  if (from_oplen != 0) {
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13961
diff changeset
  1476
    ClassLoaderData* loader_data = to_cp->pool_holder()->class_loader_data();
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1477
    // append my operands to the target's operands array
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1478
    if (old_oplen == 0) {
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13961
diff changeset
  1479
      // Can't just reuse from_cp's operand list because of deallocation issues
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13961
diff changeset
  1480
      int len = from_cp->operands()->length();
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13961
diff changeset
  1481
      Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, len, CHECK);
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13961
diff changeset
  1482
      Copy::conjoint_memory_atomic(
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13961
diff changeset
  1483
          from_cp->operands()->adr_at(0), new_ops->adr_at(0), len * sizeof(u2));
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13961
diff changeset
  1484
      to_cp->set_operands(new_ops);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1485
    } else {
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1486
      int old_len  = to_cp->operands()->length();
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1487
      int from_len = from_cp->operands()->length();
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1488
      int old_off  = old_oplen * sizeof(u2);
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1489
      int from_off = from_oplen * sizeof(u2);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1490
      // Use the metaspace for the destination constant pool
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1491
      Array<u2>* new_operands = MetadataFactory::new_array<u2>(loader_data, old_len + from_len, CHECK);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1492
      int fillp = 0, len = 0;
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1493
      // first part of dest
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1494
      Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(0),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1495
                                   new_operands->adr_at(fillp),
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1496
                                   (len = old_off) * sizeof(u2));
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1497
      fillp += len;
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1498
      // first part of src
15445
3a166138739c 8006546: JSR 292: typos in the ConstantPool::copy_cp_impl()
sspitsyn
parents: 15438
diff changeset
  1499
      Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(0),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1500
                                   new_operands->adr_at(fillp),
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1501
                                   (len = from_off) * sizeof(u2));
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1502
      fillp += len;
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1503
      // second part of dest
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1504
      Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(old_off),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1505
                                   new_operands->adr_at(fillp),
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1506
                                   (len = old_len - old_off) * sizeof(u2));
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1507
      fillp += len;
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1508
      // second part of src
15445
3a166138739c 8006546: JSR 292: typos in the ConstantPool::copy_cp_impl()
sspitsyn
parents: 15438
diff changeset
  1509
      Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(from_off),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1510
                                   new_operands->adr_at(fillp),
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1511
                                   (len = from_len - from_off) * sizeof(u2));
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1512
      fillp += len;
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1513
      assert(fillp == new_operands->length(), "");
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1514
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1515
      // Adjust indexes in the first part of the copied operands array.
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1516
      for (int j = 0; j < from_oplen; j++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1517
        int offset = operand_offset_at(new_operands, old_oplen + j);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1518
        assert(offset == operand_offset_at(from_cp->operands(), j), "correct copy");
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1519
        offset += old_len;  // every new tuple is preceded by old_len extra u2's
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1520
        operand_offset_at_put(new_operands, old_oplen + j, offset);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1521
      }
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1522
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1523
      // replace target operands array with combined array
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1524
      to_cp->set_operands(new_operands);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1525
    }
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1526
  }
15433
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1527
} // end copy_operands()
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1528
15433
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1529
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1530
// Copy this constant pool's entries at start_i to end_i (inclusive)
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1531
// to the constant pool to_cp's entries starting at to_i. A total of
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1532
// (end_i - start_i) + 1 entries are copied.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1533
void ConstantPool::copy_cp_to_impl(const constantPoolHandle& from_cp, int start_i, int end_i,
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1534
       const constantPoolHandle& to_cp, int to_i, TRAPS) {
15433
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1535
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1536
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1537
  int dest_i = to_i;  // leave original alone for debug purposes
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1538
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1539
  for (int src_i = start_i; src_i <= end_i; /* see loop bottom */ ) {
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1540
    copy_entry_to(from_cp, src_i, to_cp, dest_i, CHECK);
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1541
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1542
    switch (from_cp->tag_at(src_i).value()) {
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1543
    case JVM_CONSTANT_Double:
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1544
    case JVM_CONSTANT_Long:
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1545
      // double and long take two constant pool entries
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1546
      src_i += 2;
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1547
      dest_i += 2;
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1548
      break;
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1549
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1550
    default:
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1551
      // all others take one constant pool entry
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1552
      src_i++;
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1553
      dest_i++;
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1554
      break;
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1555
    }
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1556
  }
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1557
  copy_operands(from_cp, to_cp, CHECK);
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1558
0f53fd973576 8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents: 15430
diff changeset
  1559
} // end copy_cp_to_impl()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
// Copy this constant pool's entry at from_i to the constant pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
// to_cp's entry at to_i.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1564
void ConstantPool::copy_entry_to(const constantPoolHandle& from_cp, int from_i,
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1565
                                        const constantPoolHandle& to_cp, int to_i,
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1566
                                        TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1568
  int tag = from_cp->tag_at(from_i).value();
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1569
  switch (tag) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  case JVM_CONSTANT_ClassIndex:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1572
    jint ki = from_cp->klass_index_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
    to_cp->klass_index_at_put(to_i, ki);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
  case JVM_CONSTANT_Double:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1578
    jdouble d = from_cp->double_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
    to_cp->double_at_put(to_i, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
    // double takes two constant pool entries so init second entry's tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
    to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
  case JVM_CONSTANT_Fieldref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1586
    int class_index = from_cp->uncached_klass_ref_index_at(from_i);
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1587
    int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
    to_cp->field_at_put(to_i, class_index, name_and_type_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
  case JVM_CONSTANT_Float:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1593
    jfloat f = from_cp->float_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
    to_cp->float_at_put(to_i, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
  case JVM_CONSTANT_Integer:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1599
    jint i = from_cp->int_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
    to_cp->int_at_put(to_i, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  case JVM_CONSTANT_InterfaceMethodref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1605
    int class_index = from_cp->uncached_klass_ref_index_at(from_i);
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1606
    int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
    to_cp->interface_method_at_put(to_i, class_index, name_and_type_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
  case JVM_CONSTANT_Long:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1612
    jlong l = from_cp->long_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
    to_cp->long_at_put(to_i, l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
    // long takes two constant pool entries so init second entry's tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
    to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
  case JVM_CONSTANT_Methodref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1620
    int class_index = from_cp->uncached_klass_ref_index_at(from_i);
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1621
    int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
    to_cp->method_at_put(to_i, class_index, name_and_type_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  case JVM_CONSTANT_NameAndType:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1627
    int name_ref_index = from_cp->name_ref_index_at(from_i);
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1628
    int signature_ref_index = from_cp->signature_ref_index_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
    to_cp->name_and_type_at_put(to_i, name_ref_index, signature_ref_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
  case JVM_CONSTANT_StringIndex:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
  {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1634
    jint si = from_cp->string_index_at(from_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
    to_cp->string_index_at_put(to_i, si);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  1638
  case JVM_CONSTANT_Class:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
  case JVM_CONSTANT_UnresolvedClass:
23175
892220ab2ae1 8035150: ShouldNotReachHere() in ConstantPool::copy_entry_to
sla
parents: 22750
diff changeset
  1640
  case JVM_CONSTANT_UnresolvedClassInError:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
  {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  1642
    // Revert to JVM_CONSTANT_ClassIndex
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  1643
    int name_index = from_cp->klass_slot_at(from_i).name_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  1644
    assert(from_cp->tag_at(name_index).is_symbol(), "sanity");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  1645
    to_cp->klass_index_at_put(to_i, name_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1648
  case JVM_CONSTANT_String:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1650
    Symbol* s = from_cp->unresolved_string_at(from_i);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1651
    to_cp->unresolved_string_at_put(to_i, s);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
  case JVM_CONSTANT_Utf8:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
  {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1656
    Symbol* s = from_cp->symbol_at(from_i);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1657
    // Need to increase refcount, the old one will be thrown away and deferenced
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1658
    s->increment_refcount();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
    to_cp->symbol_at_put(to_i, s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1662
  case JVM_CONSTANT_MethodType:
20672
9340852feeef 8025185: MethodHandleInError and MethodTypeInError not handled in ConstantPool::compare_entry_to and copy_entry_to
coleenp
parents: 20282
diff changeset
  1663
  case JVM_CONSTANT_MethodTypeInError:
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1664
  {
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1665
    jint k = from_cp->method_type_index_at(from_i);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1666
    to_cp->method_type_index_at_put(to_i, k);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1667
  } break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1668
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1669
  case JVM_CONSTANT_MethodHandle:
20672
9340852feeef 8025185: MethodHandleInError and MethodTypeInError not handled in ConstantPool::compare_entry_to and copy_entry_to
coleenp
parents: 20282
diff changeset
  1670
  case JVM_CONSTANT_MethodHandleInError:
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1671
  {
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1672
    int k1 = from_cp->method_handle_ref_kind_at(from_i);
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  1673
    int k2 = from_cp->method_handle_index_at(from_i);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1674
    to_cp->method_handle_index_at_put(to_i, k1, k2);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1675
  } break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1676
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1677
  case JVM_CONSTANT_Dynamic:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1678
  case JVM_CONSTANT_DynamicInError:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1679
  {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1680
    int k1 = from_cp->bootstrap_methods_attribute_index(from_i);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1681
    int k2 = from_cp->bootstrap_name_and_type_ref_index_at(from_i);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1682
    k1 += operand_array_length(to_cp->operands());  // to_cp might already have operands
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1683
    to_cp->dynamic_constant_at_put(to_i, k1, k2);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1684
  } break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1685
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1686
  case JVM_CONSTANT_InvokeDynamic:
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1687
  {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1688
    int k1 = from_cp->bootstrap_methods_attribute_index(from_i);
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  1689
    int k2 = from_cp->bootstrap_name_and_type_ref_index_at(from_i);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1690
    k1 += operand_array_length(to_cp->operands());  // to_cp might already have operands
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1691
    to_cp->invoke_dynamic_at_put(to_i, k1, k2);
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1692
  } break;
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1693
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
  // Invalid is used as the tag for the second constant pool entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
  // occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
  // not be seen by itself.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
  case JVM_CONSTANT_Invalid: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
  } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
} // end copy_entry_to()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
// Search constant pool search_cp for an entry that matches this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
// constant pool's entry at pattern_i. Returns the index of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
// matching entry or zero (0) if there is no matching entry.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1709
int ConstantPool::find_matching_entry(int pattern_i,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1710
      const constantPoolHandle& search_cp, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
  // index zero (0) is not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
  for (int i = 1; i < search_cp->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
    bool found = compare_entry_to(pattern_i, search_cp, i, CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
    if (found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
      return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
  return 0;  // entry not found; return unused index zero (0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
} // end find_matching_entry()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
17077
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1724
// Compare this constant pool's bootstrap specifier at idx1 to the constant pool
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1725
// cp2's bootstrap specifier at idx2.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1726
bool ConstantPool::compare_operand_to(int idx1, const constantPoolHandle& cp2, int idx2, TRAPS) {
17077
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1727
  int k1 = operand_bootstrap_method_ref_index_at(idx1);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1728
  int k2 = cp2->operand_bootstrap_method_ref_index_at(idx2);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1729
  bool match = compare_entry_to(k1, cp2, k2, CHECK_false);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1730
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1731
  if (!match) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1732
    return false;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1733
  }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1734
  int argc = operand_argument_count_at(idx1);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1735
  if (argc == cp2->operand_argument_count_at(idx2)) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1736
    for (int j = 0; j < argc; j++) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1737
      k1 = operand_argument_index_at(idx1, j);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1738
      k2 = cp2->operand_argument_index_at(idx2, j);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1739
      match = compare_entry_to(k1, cp2, k2, CHECK_false);
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1740
      if (!match) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1741
        return false;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1742
      }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1743
    }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1744
    return true;           // got through loop; all elements equal
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1745
  }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1746
  return false;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1747
} // end compare_operand_to()
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1748
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1749
// Search constant pool search_cp for a bootstrap specifier that matches
54600
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
  1750
// this constant pool's bootstrap specifier data at pattern_i index.
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
  1751
// Return the index of a matching bootstrap attribute record or (-1) if there is no match.
17077
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1752
int ConstantPool::find_matching_operand(int pattern_i,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
  1753
                    const constantPoolHandle& search_cp, int search_len, TRAPS) {
17077
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1754
  for (int i = 0; i < search_len; i++) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1755
    bool found = compare_operand_to(pattern_i, search_cp, i, CHECK_(-1));
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1756
    if (found) {
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1757
      return i;
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1758
    }
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1759
  }
54600
69cfd80f8706 8218994: Consolidate indy and condy JVM information within a BootstrapInfo data structure
lfoltan
parents: 54432
diff changeset
  1760
  return -1;  // bootstrap specifier data not found; return unused index (-1)
17077
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1761
} // end find_matching_operand()
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1762
8607f7c33310 8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents: 16670
diff changeset
  1763
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1766
const char* ConstantPool::printable_name_at(int which) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
  constantTag tag = tag_at(which);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1770
  if (tag.is_string()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
    return string_at_noresolve(which);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
  } else if (tag.is_klass() || tag.is_unresolved_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
    return klass_name_at(which)->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
  } else if (tag.is_symbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
    return symbol_at(which)->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
  return "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
// JVMTI GetConstantPool support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
16670
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16383
diff changeset
  1785
// For debugging of constant pool
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16383
diff changeset
  1786
const bool debug_cpool = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
16670
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16383
diff changeset
  1788
#define DBG(code) do { if (debug_cpool) { (code); } } while(0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
static void print_cpool_bytes(jint cnt, u1 *bytes) {
16670
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16383
diff changeset
  1791
  const char* WARN_MSG = "Must not be such entry!";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
  jint size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  u2   idx1, idx2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  for (jint idx = 1; idx < cnt; idx++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
    jint ent_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
    u1   tag  = *bytes++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
    size++;                       // count tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
    printf("const #%03d, tag: %02d ", idx, tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
    switch(tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
      case JVM_CONSTANT_Invalid: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
        printf("Invalid");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
      case JVM_CONSTANT_Unicode: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
        printf("Unicode      %s", WARN_MSG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
      case JVM_CONSTANT_Utf8: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
        u2 len = Bytes::get_Java_u2(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
        char str[128];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
        if (len > 127) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
           len = 127;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
        strncpy(str, (char *) (bytes+2), len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
        str[len] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
        printf("Utf8          \"%s\"", str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
        ent_size = 2 + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
      case JVM_CONSTANT_Integer: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
        u4 val = Bytes::get_Java_u4(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
        printf("int          %d", *(int *) &val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
        ent_size = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
      case JVM_CONSTANT_Float: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
        u4 val = Bytes::get_Java_u4(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
        printf("float        %5.3ff", *(float *) &val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
        ent_size = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
      case JVM_CONSTANT_Long: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
        u8 val = Bytes::get_Java_u8(bytes);
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31046
diff changeset
  1836
        printf("long         " INT64_FORMAT, (int64_t) *(jlong *) &val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
        ent_size = 8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
        idx++; // Long takes two cpool slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
      case JVM_CONSTANT_Double: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
        u8 val = Bytes::get_Java_u8(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
        printf("double       %5.3fd", *(jdouble *)&val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
        ent_size = 8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
        idx++; // Double takes two cpool slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
      case JVM_CONSTANT_Class: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
        idx1 = Bytes::get_Java_u2(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
        printf("class        #%03d", idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
        ent_size = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
      case JVM_CONSTANT_String: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
        idx1 = Bytes::get_Java_u2(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
        printf("String       #%03d", idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
        ent_size = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
      case JVM_CONSTANT_Fieldref: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
        idx1 = Bytes::get_Java_u2(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
        idx2 = Bytes::get_Java_u2(bytes+2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
        printf("Field        #%03d, #%03d", (int) idx1, (int) idx2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
        ent_size = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
      case JVM_CONSTANT_Methodref: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
        idx1 = Bytes::get_Java_u2(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
        idx2 = Bytes::get_Java_u2(bytes+2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
        printf("Method       #%03d, #%03d", idx1, idx2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
        ent_size = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
      case JVM_CONSTANT_InterfaceMethodref: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
        idx1 = Bytes::get_Java_u2(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
        idx2 = Bytes::get_Java_u2(bytes+2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
        printf("InterfMethod #%03d, #%03d", idx1, idx2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
        ent_size = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
      case JVM_CONSTANT_NameAndType: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
        idx1 = Bytes::get_Java_u2(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
        idx2 = Bytes::get_Java_u2(bytes+2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
        printf("NameAndType  #%03d, #%03d", idx1, idx2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
        ent_size = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
      case JVM_CONSTANT_ClassIndex: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
        printf("ClassIndex  %s", WARN_MSG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
      case JVM_CONSTANT_UnresolvedClass: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
        printf("UnresolvedClass: %s", WARN_MSG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
      case JVM_CONSTANT_UnresolvedClassInError: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
        printf("UnresolvedClassInErr: %s", WARN_MSG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
      case JVM_CONSTANT_StringIndex: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
        printf("StringIndex: %s", WARN_MSG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
    printf(";\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
    bytes += ent_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
    size  += ent_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
  printf("Cpool size: %d\n", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
  fflush(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
} /* end print_cpool_bytes */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
// Returns size of constant pool entry.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1916
jint ConstantPool::cpool_entry_size(jint idx) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
  switch(tag_at(idx).value()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
    case JVM_CONSTANT_Invalid:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
    case JVM_CONSTANT_Unicode:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
    case JVM_CONSTANT_Utf8:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
      return 3 + symbol_at(idx)->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
    case JVM_CONSTANT_Class:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
    case JVM_CONSTANT_String:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
    case JVM_CONSTANT_ClassIndex:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
    case JVM_CONSTANT_UnresolvedClass:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
    case JVM_CONSTANT_UnresolvedClassInError:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
    case JVM_CONSTANT_StringIndex:
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1931
    case JVM_CONSTANT_MethodType:
20070
90ee74be2445 8025088: Missing cases for JVM_CONSTANT_MethodHandleInError cause crash if debugger steps into error-tagged method handle
iklam
parents: 20066
diff changeset
  1932
    case JVM_CONSTANT_MethodTypeInError:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
      return 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1935
    case JVM_CONSTANT_MethodHandle:
20070
90ee74be2445 8025088: Missing cases for JVM_CONSTANT_MethodHandleInError cause crash if debugger steps into error-tagged method handle
iklam
parents: 20066
diff changeset
  1936
    case JVM_CONSTANT_MethodHandleInError:
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1937
      return 4; //tag, ref_kind, ref_index
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  1938
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
    case JVM_CONSTANT_Integer:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
    case JVM_CONSTANT_Float:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
    case JVM_CONSTANT_Fieldref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
    case JVM_CONSTANT_Methodref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
    case JVM_CONSTANT_InterfaceMethodref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
    case JVM_CONSTANT_NameAndType:
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1945
      return 5;
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 7111
diff changeset
  1946
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1947
    case JVM_CONSTANT_Dynamic:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  1948
    case JVM_CONSTANT_DynamicInError:
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  1949
    case JVM_CONSTANT_InvokeDynamic:
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1950
      // u1 tag, u2 bsm, u2 nt
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  1951
      return 5;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
    case JVM_CONSTANT_Long:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
    case JVM_CONSTANT_Double:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
      return 9;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
  assert(false, "cpool_entry_size: Invalid constant pool entry tag");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
  return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
} /* end cpool_entry_size */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
// SymbolHashMap is used to find a constant pool index from a string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
// This function fills in SymbolHashMaps, one for utf8s and one for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
// class names, returns size of the cpool raw bytes.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1965
jint ConstantPool::hash_entries_to(SymbolHashMap *symmap,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
                                          SymbolHashMap *classmap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
  jint size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
  for (u2 idx = 1; idx < length(); idx++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
    u2 tag = tag_at(idx).value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
    size += cpool_entry_size(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
    switch(tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
      case JVM_CONSTANT_Utf8: {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1975
        Symbol* sym = symbol_at(idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
        symmap->add_entry(sym, idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
        DBG(printf("adding symbol entry %s = %d\n", sym->as_utf8(), idx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
      case JVM_CONSTANT_Class:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
      case JVM_CONSTANT_UnresolvedClass:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
      case JVM_CONSTANT_UnresolvedClassInError: {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  1983
        Symbol* sym = klass_name_at(idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
        classmap->add_entry(sym, idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
        DBG(printf("adding class entry %s = %d\n", sym->as_utf8(), idx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
      case JVM_CONSTANT_Long:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
      case JVM_CONSTANT_Double: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
        idx++; // Both Long and Double take two cpool slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
} /* end hash_utf8_entries_to */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
// Copy cpool bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
// Returns:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
//    0, in case of OutOfMemoryError
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
//   -1, in case of internal error
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
//  > 0, count of the raw cpool bytes that have been copied
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2004
int ConstantPool::copy_cpool_bytes(int cpool_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
                                          SymbolHashMap* tbl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
                                          unsigned char *bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
  u2   idx1, idx2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
  jint size  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
  jint cnt   = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
  unsigned char *start_bytes = bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
  for (jint idx = 1; idx < cnt; idx++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
    u1   tag      = tag_at(idx).value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
    jint ent_size = cpool_entry_size(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
    assert(size + ent_size <= cpool_size, "Size mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
    *bytes = tag;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46560
diff changeset
  2019
    DBG(printf("#%03hd tag=%03hd, ", (short)idx, (short)tag));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
    switch(tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
      case JVM_CONSTANT_Invalid: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
        DBG(printf("JVM_CONSTANT_Invalid"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
      case JVM_CONSTANT_Unicode: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
        assert(false, "Wrong constant pool tag: JVM_CONSTANT_Unicode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
        DBG(printf("JVM_CONSTANT_Unicode"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
      case JVM_CONSTANT_Utf8: {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  2031
        Symbol* sym = symbol_at(idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
        char*     str = sym->as_utf8();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
        // Warning! It's crashing on x86 with len = sym->utf8_length()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
        int       len = (int) strlen(str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
        Bytes::put_Java_u2((address) (bytes+1), (u2) len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
        for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
            bytes[3+i] = (u1) str[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
        DBG(printf("JVM_CONSTANT_Utf8: %s ", str));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
      case JVM_CONSTANT_Integer: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
        jint val = int_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
        Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
      case JVM_CONSTANT_Float: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
        jfloat val = float_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
        Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
      case JVM_CONSTANT_Long: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
        jlong val = long_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
        Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
        idx++;             // Long takes two cpool slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
      case JVM_CONSTANT_Double: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
        jdouble val = double_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
        Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
        idx++;             // Double takes two cpool slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
      case JVM_CONSTANT_Class:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
      case JVM_CONSTANT_UnresolvedClass:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
      case JVM_CONSTANT_UnresolvedClassInError: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
        *bytes = JVM_CONSTANT_Class;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  2068
        Symbol* sym = klass_name_at(idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
        idx1 = tbl->symbol_to_value(sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
        assert(idx1 != 0, "Have not found a hashtable entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
        Bytes::put_Java_u2((address) (bytes+1), idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
        DBG(printf("JVM_CONSTANT_Class: idx=#%03hd, %s", idx1, sym->as_utf8()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
      case JVM_CONSTANT_String: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
        *bytes = JVM_CONSTANT_String;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  2077
        Symbol* sym = unresolved_string_at(idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
        idx1 = tbl->symbol_to_value(sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
        assert(idx1 != 0, "Have not found a hashtable entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
        Bytes::put_Java_u2((address) (bytes+1), idx1);
16670
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16383
diff changeset
  2081
        DBG(printf("JVM_CONSTANT_String: idx=#%03hd, %s", idx1, sym->as_utf8()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
      case JVM_CONSTANT_Fieldref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
      case JVM_CONSTANT_Methodref:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
      case JVM_CONSTANT_InterfaceMethodref: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
        idx1 = uncached_klass_ref_index_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
        idx2 = uncached_name_and_type_ref_index_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
        Bytes::put_Java_u2((address) (bytes+1), idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
        Bytes::put_Java_u2((address) (bytes+3), idx2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
        DBG(printf("JVM_CONSTANT_Methodref: %hd %hd", idx1, idx2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
      case JVM_CONSTANT_NameAndType: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
        idx1 = name_ref_index_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
        idx2 = signature_ref_index_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
        Bytes::put_Java_u2((address) (bytes+1), idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
        Bytes::put_Java_u2((address) (bytes+3), idx2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
        DBG(printf("JVM_CONSTANT_NameAndType: %hd %hd", idx1, idx2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
      case JVM_CONSTANT_ClassIndex: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
        *bytes = JVM_CONSTANT_Class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
        idx1 = klass_index_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
        Bytes::put_Java_u2((address) (bytes+1), idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
        DBG(printf("JVM_CONSTANT_ClassIndex: %hd", idx1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
      case JVM_CONSTANT_StringIndex: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
        *bytes = JVM_CONSTANT_String;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
        idx1 = string_index_at(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
        Bytes::put_Java_u2((address) (bytes+1), idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
        DBG(printf("JVM_CONSTANT_StringIndex: %hd", idx1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
      }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2116
      case JVM_CONSTANT_MethodHandle:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2117
      case JVM_CONSTANT_MethodHandleInError: {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2118
        *bytes = JVM_CONSTANT_MethodHandle;
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  2119
        int kind = method_handle_ref_kind_at(idx);
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  2120
        idx1 = method_handle_index_at(idx);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2121
        *(bytes+1) = (unsigned char) kind;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2122
        Bytes::put_Java_u2((address) (bytes+2), idx1);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2123
        DBG(printf("JVM_CONSTANT_MethodHandle: %d %hd", kind, idx1));
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2124
        break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2125
      }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2126
      case JVM_CONSTANT_MethodType:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2127
      case JVM_CONSTANT_MethodTypeInError: {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2128
        *bytes = JVM_CONSTANT_MethodType;
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  2129
        idx1 = method_type_index_at(idx);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2130
        Bytes::put_Java_u2((address) (bytes+1), idx1);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2131
        DBG(printf("JVM_CONSTANT_MethodType: %hd", idx1));
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2132
        break;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
  2133
      }
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2134
      case JVM_CONSTANT_Dynamic:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2135
      case JVM_CONSTANT_DynamicInError: {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2136
        *bytes = tag;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2137
        idx1 = extract_low_short_from_int(*int_at_addr(idx));
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2138
        idx2 = extract_high_short_from_int(*int_at_addr(idx));
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2139
        assert(idx2 == bootstrap_name_and_type_ref_index_at(idx), "correct half of u4");
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2140
        Bytes::put_Java_u2((address) (bytes+1), idx1);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2141
        Bytes::put_Java_u2((address) (bytes+3), idx2);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2142
        DBG(printf("JVM_CONSTANT_Dynamic: %hd %hd", idx1, idx2));
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2143
        break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2144
      }
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  2145
      case JVM_CONSTANT_InvokeDynamic: {
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  2146
        *bytes = tag;
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  2147
        idx1 = extract_low_short_from_int(*int_at_addr(idx));
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  2148
        idx2 = extract_high_short_from_int(*int_at_addr(idx));
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2149
        assert(idx2 == bootstrap_name_and_type_ref_index_at(idx), "correct half of u4");
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  2150
        Bytes::put_Java_u2((address) (bytes+1), idx1);
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  2151
        Bytes::put_Java_u2((address) (bytes+3), idx2);
7436
dbc43da3d512 7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents: 7397
diff changeset
  2152
        DBG(printf("JVM_CONSTANT_InvokeDynamic: %hd %hd", idx1, idx2));
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  2153
        break;
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
  2154
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
    DBG(printf("\n"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
    bytes += ent_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
    size  += ent_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
  assert(size == cpool_size, "Size mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
  // Keep temorarily for debugging until it's stable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
  DBG(print_cpool_bytes(cnt, start_bytes));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
  return (int)(bytes - start_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
} /* end copy_cpool_bytes */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
16670
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16383
diff changeset
  2167
#undef DBG
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16383
diff changeset
  2168
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2170
void ConstantPool::set_on_stack(const bool value) {
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15229
diff changeset
  2171
  if (value) {
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  2172
    // Only record if it's not already set.
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  2173
    if (!on_stack()) {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2174
      assert(!is_shared(), "should always be set for shared constant pools");
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  2175
      _flags |= _on_stack;
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  2176
      MetadataOnStackMark::record(this);
27247
99db666dbe8e 8056240: Investigate increased GC remark time after class unloading changes in CRM Fuse
stefank
parents: 25624
diff changeset
  2177
    }
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15229
diff changeset
  2178
  } else {
27247
99db666dbe8e 8056240: Investigate increased GC remark time after class unloading changes in CRM Fuse
stefank
parents: 25624
diff changeset
  2179
    // Clearing is done single-threadedly.
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2180
    if (!is_shared()) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2181
      _flags &= ~_on_stack;
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2182
    }
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15229
diff changeset
  2183
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2184
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2185
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2186
// JSR 292 support for patching constant pool oops after the class is linked and
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2187
// the oop array for resolved references are created.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2188
// We can't do this during classfile parsing, which is how the other indexes are
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2189
// patched.  The other patches are applied early for some error checking
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2190
// so only defer the pseudo_strings.
24322
c2978d1578e3 8036956: remove EnableInvokeDynamic flag
anoll
parents: 23872
diff changeset
  2191
void ConstantPool::patch_resolved_references(GrowableArray<Handle>* cp_patches) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2192
  for (int index = 1; index < cp_patches->length(); index++) { // Index 0 is unused
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2193
    Handle patch = cp_patches->at(index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2194
    if (patch.not_null()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2195
      assert (tag_at(index).is_string(), "should only be string left");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2196
      // Patching a string means pre-resolving it.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2197
      // The spelling in the constant pool is ignored.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2198
      // The constant reference may be any object whatever.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2199
      // If it is not a real interned string, the constant is referred
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2200
      // to as a "pseudo-string", and must be presented to the CP
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2201
      // explicitly, because it may require scavenging.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2202
      int obj_index = cp_to_object_index(index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2203
      pseudo_string_at_put(index, obj_index, patch());
28741
1f10b1bd612d 8008678: JSR 292: constant pool reconstitution must support pseudo strings
sspitsyn
parents: 27680
diff changeset
  2204
     DEBUG_ONLY(cp_patches->at_put(index, Handle());)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2205
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2206
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2207
#ifdef ASSERT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2208
  // Ensure that all the patches have been used.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2209
  for (int index = 0; index < cp_patches->length(); index++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2210
    assert(cp_patches->at(index).is_null(),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
  2211
           "Unused constant pool patch at %d in class file %s",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
  2212
           index,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
  2213
           pool_holder()->external_name());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2214
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2215
#endif // ASSERT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2216
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2217
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2218
// Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2219
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2220
void ConstantPool::print_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2221
  assert(is_constantPool(), "must be constantPool");
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24337
diff changeset
  2222
  st->print_cr("%s", internal_name());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2223
  if (flags() != 0) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2224
    st->print(" - flags: 0x%x", flags());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2225
    if (has_preresolution()) st->print(" has_preresolution");
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15229
diff changeset
  2226
    if (on_stack()) st->print(" on_stack");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2227
    st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2228
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2229
  if (pool_holder() != NULL) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  2230
    st->print_cr(" - holder: " INTPTR_FORMAT, p2i(pool_holder()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2231
  }
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  2232
  st->print_cr(" - cache: " INTPTR_FORMAT, p2i(cache()));
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  2233
  st->print_cr(" - resolved_references: " INTPTR_FORMAT, p2i(resolved_references()));
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  2234
  st->print_cr(" - reference_map: " INTPTR_FORMAT, p2i(reference_map()));
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2235
  st->print_cr(" - resolved_klasses: " INTPTR_FORMAT, p2i(resolved_klasses()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2236
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2237
  for (int index = 1; index < length(); index++) {      // Index 0 is unused
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2238
    ((ConstantPool*)this)->print_entry_on(index, st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2239
    switch (tag_at(index).value()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2240
      case JVM_CONSTANT_Long :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2241
      case JVM_CONSTANT_Double :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2242
        index++;   // Skip entry following eigth-byte constant
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2243
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2244
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2245
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2246
  st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2247
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2248
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2249
// Print one constant pool entry
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2250
void ConstantPool::print_entry_on(const int index, outputStream* st) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2251
  EXCEPTION_MARK;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2252
  st->print(" - %3d : ", index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2253
  tag_at(index).print_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2254
  st->print(" : ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2255
  switch (tag_at(index).value()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2256
    case JVM_CONSTANT_Class :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2257
      { Klass* k = klass_at(index, CATCH);
16383
57cb9d398a11 8009593: [parfait] Null pointer deference in hotspot/src/share/vm/oops/constantPool.cpp
morris
parents: 15799
diff changeset
  2258
        guarantee(k != NULL, "need klass");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2259
        k->print_value_on(st);
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  2260
        st->print(" {" PTR_FORMAT "}", p2i(k));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2261
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2262
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2263
    case JVM_CONSTANT_Fieldref :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2264
    case JVM_CONSTANT_Methodref :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2265
    case JVM_CONSTANT_InterfaceMethodref :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2266
      st->print("klass_index=%d", uncached_klass_ref_index_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2267
      st->print(" name_and_type_index=%d", uncached_name_and_type_ref_index_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2268
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2269
    case JVM_CONSTANT_String :
15799
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 15445
diff changeset
  2270
      if (is_pseudo_string_at(index)) {
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 15445
diff changeset
  2271
        oop anObj = pseudo_string_at(index);
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 15445
diff changeset
  2272
        anObj->print_value_on(st);
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  2273
        st->print(" {" PTR_FORMAT "}", p2i(anObj));
15799
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 15445
diff changeset
  2274
      } else {
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 15445
diff changeset
  2275
        unresolved_string_at(index)->print_value_on(st);
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 15445
diff changeset
  2276
      }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2277
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2278
    case JVM_CONSTANT_Integer :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2279
      st->print("%d", int_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2280
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2281
    case JVM_CONSTANT_Float :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2282
      st->print("%f", float_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2283
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2284
    case JVM_CONSTANT_Long :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2285
      st->print_jlong(long_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2286
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2287
    case JVM_CONSTANT_Double :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2288
      st->print("%lf", double_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2289
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2290
    case JVM_CONSTANT_NameAndType :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2291
      st->print("name_index=%d", name_ref_index_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2292
      st->print(" signature_index=%d", signature_ref_index_at(index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2293
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2294
    case JVM_CONSTANT_Utf8 :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2295
      symbol_at(index)->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2296
      break;
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2297
    case JVM_CONSTANT_ClassIndex: {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2298
        int name_index = *int_at_addr(index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2299
        st->print("klass_index=%d ", name_index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2300
        symbol_at(name_index)->print_value_on(st);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2301
      }
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2302
      break;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2303
    case JVM_CONSTANT_UnresolvedClass :               // fall-through
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2304
    case JVM_CONSTANT_UnresolvedClassInError: {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2305
        CPKlassSlot kslot = klass_slot_at(index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2306
        int resolved_klass_index = kslot.resolved_klass_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2307
        int name_index = kslot.name_index();
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2308
        assert(tag_at(name_index).is_symbol(), "sanity");
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2309
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2310
        Klass* klass = resolved_klasses()->at(resolved_klass_index);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2311
        if (klass != NULL) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2312
          klass->print_value_on(st);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2313
        } else {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2314
          symbol_at(name_index)->print_value_on(st);
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2315
        }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2316
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2317
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2318
    case JVM_CONSTANT_MethodHandle :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2319
    case JVM_CONSTANT_MethodHandleInError :
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  2320
      st->print("ref_kind=%d", method_handle_ref_kind_at(index));
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  2321
      st->print(" ref_index=%d", method_handle_index_at(index));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2322
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2323
    case JVM_CONSTANT_MethodType :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2324
    case JVM_CONSTANT_MethodTypeInError :
37475
0da78fa10d78 8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37451
diff changeset
  2325
      st->print("signature_index=%d", method_type_index_at(index));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2326
      break;
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2327
    case JVM_CONSTANT_Dynamic :
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2328
    case JVM_CONSTANT_DynamicInError :
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2329
      {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2330
        st->print("bootstrap_method_index=%d", bootstrap_method_ref_index_at(index));
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2331
        st->print(" type_index=%d", bootstrap_name_and_type_ref_index_at(index));
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2332
        int argc = bootstrap_argument_count_at(index);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2333
        if (argc > 0) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2334
          for (int arg_i = 0; arg_i < argc; arg_i++) {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2335
            int arg = bootstrap_argument_index_at(index, arg_i);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2336
            st->print((arg_i == 0 ? " arguments={%d" : ", %d"), arg);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2337
          }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2338
          st->print("}");
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2339
        }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2340
      }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48785
diff changeset
  2341
      break;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2342
    case JVM_CONSTANT_InvokeDynamic :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2343
      {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2344
        st->print("bootstrap_method_index=%d", bootstrap_method_ref_index_at(index));
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2345
        st->print(" name_and_type_index=%d", bootstrap_name_and_type_ref_index_at(index));
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2346
        int argc = bootstrap_argument_count_at(index);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2347
        if (argc > 0) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2348
          for (int arg_i = 0; arg_i < argc; arg_i++) {
53745
a535ba736cab 8218004: Clean up terminology for shared methods within the JVM for indy and condy support
lfoltan
parents: 53590
diff changeset
  2349
            int arg = bootstrap_argument_index_at(index, arg_i);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2350
            st->print((arg_i == 0 ? " arguments={%d" : ", %d"), arg);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2351
          }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2352
          st->print("}");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2353
        }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2354
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2355
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2356
    default:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2357
      ShouldNotReachHere();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2358
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2359
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2360
  st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2361
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2362
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2363
void ConstantPool::print_value_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2364
  assert(is_constantPool(), "must be constantPool");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2365
  st->print("constant pool [%d]", length());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2366
  if (has_preresolution()) st->print("/preresolution");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2367
  if (operands() != NULL)  st->print("/operands[%d]", operands()->length());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2368
  print_address_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2369
  if (pool_holder() != NULL) {
51338
aa3bfacc912c 8208677: Move inner metaspace cleaning out of class unloading
coleenp
parents: 50971
diff changeset
  2370
    st->print(" for ");
aa3bfacc912c 8208677: Move inner metaspace cleaning out of class unloading
coleenp
parents: 50971
diff changeset
  2371
    pool_holder()->print_value_on(st);
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
  2372
    bool extra = (pool_holder()->constants() != this);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2373
    if (extra)  st->print(" (extra)");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2374
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2375
  if (cache() != NULL) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
  2376
    st->print(" cache=" PTR_FORMAT, p2i(cache()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2377
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2378
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2379
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2380
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2381
// Size Statistics
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2382
void ConstantPool::collect_statistics(KlassSizeStats *sz) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2383
  sz->_cp_all_bytes += (sz->_cp_bytes          = sz->count(this));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2384
  sz->_cp_all_bytes += (sz->_cp_tags_bytes     = sz->count_array(tags()));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2385
  sz->_cp_all_bytes += (sz->_cp_cache_bytes    = sz->count(cache()));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2386
  sz->_cp_all_bytes += (sz->_cp_operands_bytes = sz->count_array(operands()));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2387
  sz->_cp_all_bytes += (sz->_cp_refmap_bytes   = sz->count_array(reference_map()));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2388
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2389
  sz->_ro_bytes += sz->_cp_operands_bytes + sz->_cp_tags_bytes +
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2390
                   sz->_cp_refmap_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2391
  sz->_rw_bytes += sz->_cp_bytes + sz->_cp_cache_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2392
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  2393
#endif // INCLUDE_SERVICES
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2394
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2395
// Verification
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2396
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2397
void ConstantPool::verify_on(outputStream* st) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2398
  guarantee(is_constantPool(), "object must be constant pool");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2399
  for (int i = 0; i< length();  i++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2400
    constantTag tag = tag_at(i);
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2401
    if (tag.is_klass() || tag.is_unresolved_klass()) {
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2402
      guarantee(klass_name_at(i)->refcount() != 0, "should have nonzero reference count");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2403
    } else if (tag.is_symbol()) {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2404
      CPSlot entry = slot_at(i);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2405
      guarantee(entry.get_symbol()->refcount() != 0, "should have nonzero reference count");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2406
    } else if (tag.is_string()) {
46427
54713555867e 8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents: 46329
diff changeset
  2407
      CPSlot entry = slot_at(i);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2408
      guarantee(entry.get_symbol()->refcount() != 0, "should have nonzero reference count");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2409
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2410
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2411
  if (pool_holder() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2412
    // Note: pool_holder() can be NULL in temporary constant pools
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2413
    // used during constant pool merging
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2414
    guarantee(pool_holder()->is_klass(),    "should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2415
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2416
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2417
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2418
49360
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2419
SymbolHashMap::~SymbolHashMap() {
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2420
  SymbolHashMapEntry* next;
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2421
  for (int i = 0; i < _table_size; i++) {
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2422
    for (SymbolHashMapEntry* cur = bucket(i); cur != NULL; cur = next) {
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2423
      next = cur->next();
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2424
      delete(cur);
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2425
    }
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2426
  }
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2427
  FREE_C_HEAP_ARRAY(SymbolHashMapBucket, _buckets);
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2428
}
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49348
diff changeset
  2429
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  2430
void SymbolHashMap::add_entry(Symbol* sym, u2 value) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
  char *str = sym->as_utf8();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
  unsigned int hash = compute_hash(str, sym->utf8_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
  unsigned int index = hash % table_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
  // check if already in map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
  // we prefer the first entry since it is more likely to be what was used in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
  // the class file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
  for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
    assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
    if (en->hash() == hash && en->symbol() == sym) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
        return;  // already there
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
  SymbolHashMapEntry* entry = new SymbolHashMapEntry(hash, sym, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
  entry->set_next(bucket(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
  _buckets[index].set_entry(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
  assert(entry->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7436
diff changeset
  2451
SymbolHashMapEntry* SymbolHashMap::find_entry(Symbol* sym) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
  assert(sym != NULL, "SymbolHashMap::find_entry - symbol is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
  char *str = sym->as_utf8();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
  int   len = sym->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
  unsigned int hash = SymbolHashMap::compute_hash(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
  unsigned int index = hash % table_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
  for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
    assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
    if (en->hash() == hash && en->symbol() == sym) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
      return en;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
}
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2465
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2466
void SymbolHashMap::initialize_table(int table_size) {
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2467
  _table_size = table_size;
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2468
  _buckets = NEW_C_HEAP_ARRAY(SymbolHashMapBucket, table_size, mtSymbol);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2469
  for (int index = 0; index < table_size; index++) {
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2470
    _buckets[index].clear();
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2471
  }
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47797
diff changeset
  2472
}