hotspot/src/share/vm/classfile/symbolTable.cpp
author jprovino
Mon, 04 Apr 2016 12:57:48 -0400
changeset 37248 11a660dbbb8e
parent 37198 b96542d1afa1
child 37995 92aec042a43b
permissions -rw-r--r--
8132524: Missing includes to resourceArea.hpp Summary: Files that use ResourceMark are missing the include of resourceArea.hpp Reviewed-by: tschatzl, jwilhelm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
35497
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
     2
 * Copyright (c) 1997, 2016, 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: 2332
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2332
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: 2332
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: 5547
diff changeset
    25
#include "precompiled.hpp"
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
    26
#include "classfile/altHashing.hpp"
34659
3a7071043457 8143615: compactHashtable.hpp includes .inline.hpp file
iklam
parents: 34237
diff changeset
    27
#include "classfile/compactHashtable.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "classfile/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "classfile/systemDictionary.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    31
#include "gc/shared/collectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    32
#include "gc/shared/gcLocker.inline.hpp"
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    33
#include "memory/allocation.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "memory/filemap.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 37198
diff changeset
    35
#include "memory/resourceArea.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "oops/oop.inline.hpp"
25351
7c198a690050 8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents: 24429
diff changeset
    37
#include "runtime/atomic.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "utilities/hashtable.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// --------------------------------------------------------------------------
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    42
// the number of buckets a thread claims
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    43
const int ClaimChunkSize = 32;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    44
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
SymbolTable* SymbolTable::_the_table = NULL;
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    46
// Static arena for symbols that are not deallocated
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    47
Arena* SymbolTable::_arena = NULL;
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
    48
bool SymbolTable::_needs_rehashing = false;
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
    49
bool SymbolTable::_lookup_shared_first = false;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
    50
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
    51
CompactHashtable<Symbol*, char> SymbolTable::_shared_table;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    53
Symbol* SymbolTable::allocate_symbol(const u1* name, int len, bool c_heap, TRAPS) {
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
    54
  assert (len <= Symbol::max_length(), "should be checked by caller");
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
    55
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    56
  Symbol* sym;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
    57
15934
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    58
  if (DumpSharedSpaces) {
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    59
    // Allocate all symbols to CLD shared metaspace
31790
4a08476437e8 8025692: Log what methods are touched at run-time
minqi
parents: 31345
diff changeset
    60
    sym = new (len, ClassLoaderData::the_null_class_loader_data(), THREAD) Symbol(name, len, PERM_REFCOUNT);
15934
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    61
  } else if (c_heap) {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    62
    // refcount starts as 1
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    63
    sym = new (len, THREAD) Symbol(name, len, 1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
    64
    assert(sym != NULL, "new should call vm_exit_out_of_memory if C_HEAP is exhausted");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
    65
  } else {
15934
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    66
    // Allocate to global arena
31790
4a08476437e8 8025692: Log what methods are touched at run-time
minqi
parents: 31345
diff changeset
    67
    sym = new (len, arena(), THREAD) Symbol(name, len, PERM_REFCOUNT);
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    68
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    69
  return sym;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    70
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    71
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    72
void SymbolTable::initialize_symbols(int arena_alloc_size) {
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    73
  // Initialize the arena for global symbols, size passed in depends on CDS.
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    74
  if (arena_alloc_size == 0) {
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25351
diff changeset
    75
    _arena = new (mtSymbol) Arena(mtSymbol);
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    76
  } else {
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25351
diff changeset
    77
    _arena = new (mtSymbol) Arena(mtSymbol, arena_alloc_size);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    78
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    79
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    80
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    81
// Call function for all symbols in the symbol table.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    82
void SymbolTable::symbols_do(SymbolClosure *cl) {
28615
1fb960ea5a7e 8067982: Some jcmd /gc/heap_dump tests failed: hprof output contains warning or error.
jiangli
parents: 28363
diff changeset
    83
  // all symbols from shared table
1fb960ea5a7e 8067982: Some jcmd /gc/heap_dump tests failed: hprof output contains warning or error.
jiangli
parents: 28363
diff changeset
    84
  _shared_table.symbols_do(cl);
1fb960ea5a7e 8067982: Some jcmd /gc/heap_dump tests failed: hprof output contains warning or error.
jiangli
parents: 28363
diff changeset
    85
1fb960ea5a7e 8067982: Some jcmd /gc/heap_dump tests failed: hprof output contains warning or error.
jiangli
parents: 28363
diff changeset
    86
  // all symbols from the dynamic table
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    87
  const int n = the_table()->table_size();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    88
  for (int i = 0; i < n; i++) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    89
    for (HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    90
         p != NULL;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    91
         p = p->next()) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    92
      cl->do_symbol(p->literal_addr());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    93
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    94
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    95
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    96
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    97
int SymbolTable::_symbols_removed = 0;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    98
int SymbolTable::_symbols_counted = 0;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    99
volatile int SymbolTable::_parallel_claimed_idx = 0;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   100
34237
c34adffc35c0 8143255: Remove debug logging from SymbolTable::unlink() and SymbolTable::possibly_parallel_unlink()
brutisso
parents: 33638
diff changeset
   101
void SymbolTable::buckets_unlink(int start_idx, int end_idx, int* processed, int* removed) {
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   102
  for (int i = start_idx; i < end_idx; ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   103
    HashtableEntry<Symbol*, mtSymbol>** p = the_table()->bucket_addr(i);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   104
    HashtableEntry<Symbol*, mtSymbol>* entry = the_table()->bucket(i);
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   105
    while (entry != NULL) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   106
      // Shared entries are normally at the end of the bucket and if we run into
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   107
      // a shared entry, then there is nothing more to remove. However, if we
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   108
      // have rehashed the table, then the shared entries are no longer at the
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   109
      // end of the bucket.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   110
      if (entry->is_shared() && !use_alternate_hashcode()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   111
        break;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   112
      }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   113
      Symbol* s = entry->literal();
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   114
      (*processed)++;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   115
      assert(s != NULL, "just checking");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   116
      // If reference count is zero, remove.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   117
      if (s->refcount() == 0) {
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   118
        assert(!entry->is_shared(), "shared entries should be kept live");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   119
        delete s;
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   120
        (*removed)++;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   121
        *p = entry->next();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   122
        the_table()->free_entry(entry);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   123
      } else {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   124
        p = entry->next_addr();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   125
      }
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   126
      // get next entry
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   127
      entry = (HashtableEntry<Symbol*, mtSymbol>*)HashtableEntry<Symbol*, mtSymbol>::make_ptr(*p);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   128
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   129
  }
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   130
}
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   131
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   132
// Remove unreferenced symbols from the symbol table
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   133
// This is done late during GC.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   134
void SymbolTable::unlink(int* processed, int* removed) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   135
  size_t memory_total = 0;
34237
c34adffc35c0 8143255: Remove debug logging from SymbolTable::unlink() and SymbolTable::possibly_parallel_unlink()
brutisso
parents: 33638
diff changeset
   136
  buckets_unlink(0, the_table()->table_size(), processed, removed);
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   137
  _symbols_removed += *removed;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   138
  _symbols_counted += *processed;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   139
}
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   140
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   141
void SymbolTable::possibly_parallel_unlink(int* processed, int* removed) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   142
  const int limit = the_table()->table_size();
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   143
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   144
  size_t memory_total = 0;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   145
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   146
  for (;;) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   147
    // Grab next set of buckets to scan
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   148
    int start_idx = Atomic::add(ClaimChunkSize, &_parallel_claimed_idx) - ClaimChunkSize;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   149
    if (start_idx >= limit) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   150
      // End of table
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   151
      break;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   152
    }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   153
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   154
    int end_idx = MIN2(limit, start_idx + ClaimChunkSize);
34237
c34adffc35c0 8143255: Remove debug logging from SymbolTable::unlink() and SymbolTable::possibly_parallel_unlink()
brutisso
parents: 33638
diff changeset
   155
    buckets_unlink(start_idx, end_idx, processed, removed);
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   156
  }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   157
  Atomic::add(*processed, &_symbols_counted);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   158
  Atomic::add(*removed, &_symbols_removed);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   159
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   160
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   161
// Create a new table and using alternate hash code, populate the new table
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   162
// with the existing strings.   Set flag to use the alternate hash code afterwards.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   163
void SymbolTable::rehash_table() {
37198
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   164
  if (DumpSharedSpaces) {
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   165
    tty->print_cr("Warning: rehash_table should not be called while dumping archive");
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   166
    return;
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   167
  }
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   168
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   169
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   170
  // This should never happen with -Xshare:dump but it might in testing mode.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   171
  if (DumpSharedSpaces) return;
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   172
  // Create a new symbol table
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   173
  SymbolTable* new_table = new SymbolTable();
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   174
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   175
  the_table()->move_to(new_table);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   176
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   177
  // Delete the table and buckets (entries are reused in new table).
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   178
  delete _the_table;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   179
  // Don't check if we need rehashing until the table gets unbalanced again.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   180
  // Then rehash with a new global seed.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   181
  _needs_rehashing = false;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   182
  _the_table = new_table;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   183
}
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   184
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// Lookup a symbol in a bucket.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   187
Symbol* SymbolTable::lookup_dynamic(int index, const char* name,
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   188
                                    int len, unsigned int hash) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   189
  int count = 0;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   190
  for (HashtableEntry<Symbol*, mtSymbol>* e = bucket(index); e != NULL; e = e->next()) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   191
    count++;  // count all entries in this bucket, not just ones with same hash
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    if (e->hash() == hash) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   193
      Symbol* sym = e->literal();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      if (sym->equals(name, len)) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   195
        // something is referencing this symbol now.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   196
        sym->increment_refcount();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        return sym;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   201
  // If the bucket size is too deep check if this hash code is insufficient.
26421
37d88e604ad0 8056084: Refactor Hashtable to allow implementations without rehashing support
mgerdin
parents: 25946
diff changeset
   202
  if (count >= rehash_count && !needs_rehashing()) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   203
    _needs_rehashing = check_rehash_table(count);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   204
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   208
Symbol* SymbolTable::lookup_shared(const char* name,
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   209
                                   int len, unsigned int hash) {
37198
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   210
  if (use_alternate_hashcode()) {
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   211
    // hash_code parameter may use alternate hashing algorithm but the shared table
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   212
    // always uses the same original hash code.
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   213
    hash = hash_shared_symbol(name, len);
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   214
  }
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   215
  return _shared_table.lookup(name, hash, len);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   216
}
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   217
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   218
Symbol* SymbolTable::lookup(int index, const char* name,
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   219
                            int len, unsigned int hash) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   220
  Symbol* sym;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   221
  if (_lookup_shared_first) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   222
    sym = lookup_shared(name, len, hash);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   223
    if (sym != NULL) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   224
      return sym;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   225
    }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   226
    _lookup_shared_first = false;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   227
    return lookup_dynamic(index, name, len, hash);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   228
  } else {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   229
    sym = lookup_dynamic(index, name, len, hash);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   230
    if (sym != NULL) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   231
      return sym;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   232
    }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   233
    sym = lookup_shared(name, len, hash);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   234
    if (sym != NULL) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   235
      _lookup_shared_first = true;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   236
    }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   237
    return sym;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   238
  }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   239
}
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   240
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   241
// Pick hashing algorithm.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   242
unsigned int SymbolTable::hash_symbol(const char* s, int len) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   243
  return use_alternate_hashcode() ?
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   244
           AltHashing::murmur3_32(seed(), (const jbyte*)s, len) :
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33148
diff changeset
   245
           java_lang_String::hash_code((const jbyte*)s, len);
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   246
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   247
37198
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   248
unsigned int SymbolTable::hash_shared_symbol(const char* s, int len) {
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   249
  return java_lang_String::hash_code((const jbyte*)s, len);
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   250
}
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   251
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
// We take care not to be blocking while holding the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// SymbolTable_lock. Otherwise, the system might deadlock, since the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
// symboltable is used during compilation (VM_thread) The lock free
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// synchronization is simplified by the fact that we do not delete
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// entries in the symbol table during normal execution (only during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
// safepoints).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   260
Symbol* SymbolTable::lookup(const char* name, int len, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  unsigned int hashValue = hash_symbol(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  int index = the_table()->hash_to_index(hashValue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   264
  Symbol* s = the_table()->lookup(index, name, len, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  if (s != NULL) return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   269
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   270
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   271
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // Otherwise, add to symbol to table
27677
b1997f2f1b56 8062808: Turn on the -Wreturn-type warning
stefank
parents: 26923
diff changeset
   273
  return the_table()->basic_add(index, (u1*)name, len, hashValue, true, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   276
Symbol* SymbolTable::lookup(const Symbol* sym, int begin, int end, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  char* buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  int index, len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  unsigned int hashValue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  char* name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  {
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 34659
diff changeset
   282
    debug_only(NoSafepointVerifier nsv;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    name = (char*)sym->base() + begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    len = end - begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    hashValue = hash_symbol(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    index = the_table()->hash_to_index(hashValue);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   288
    Symbol* s = the_table()->lookup(index, name, len, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    // Found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    if (s != NULL) return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // Otherwise, add to symbol to table. Copy to a C string first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  char stack_buf[128];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  if (len <= 128) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    buffer = stack_buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    buffer = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    buffer[i] = name[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // Make sure there is no safepoint in the code above since name can't move.
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 34659
diff changeset
   306
  // We can't include the code in NoSafepointVerifier because of the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // ResourceMark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   309
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   310
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   311
27677
b1997f2f1b56 8062808: Turn on the -Wreturn-type warning
stefank
parents: 26923
diff changeset
   312
  return the_table()->basic_add(index, (u1*)buffer, len, hashValue, true, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   315
Symbol* SymbolTable::lookup_only(const char* name, int len,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
                                   unsigned int& hash) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  hash = hash_symbol(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  int index = the_table()->hash_to_index(hash);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   320
  Symbol* s = the_table()->lookup(index, name, len, hash);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   321
  return s;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   324
// Look up the address of the literal in the SymbolTable for this Symbol*
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   325
// Do not create any new symbols
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   326
// Do not increment the reference count to keep this alive
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   327
Symbol** SymbolTable::lookup_symbol_addr(Symbol* sym){
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   328
  unsigned int hash = hash_symbol((char*)sym->bytes(), sym->utf8_length());
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   329
  int index = the_table()->hash_to_index(hash);
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   330
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   331
  for (HashtableEntry<Symbol*, mtSymbol>* e = the_table()->bucket(index); e != NULL; e = e->next()) {
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   332
    if (e->hash() == hash) {
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   333
      Symbol* literal_sym = e->literal();
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   334
      if (sym == literal_sym) {
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   335
        return e->literal_addr();
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   336
      }
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   337
    }
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   338
  }
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   339
  return NULL;
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   340
}
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   341
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   342
// Suggestion: Push unicode-based lookup all the way into the hashing
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   343
// and probing logic, so there is no need for convert_to_utf8 until
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   344
// an actual new Symbol* is created.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   345
Symbol* SymbolTable::lookup_unicode(const jchar* name, int utf16_length, TRAPS) {
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   346
  int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   347
  char stack_buf[128];
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   348
  if (utf8_length < (int) sizeof(stack_buf)) {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   349
    char* chars = stack_buf;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   350
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   351
    return lookup(chars, utf8_length, THREAD);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   352
  } else {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   353
    ResourceMark rm(THREAD);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   354
    char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   355
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   356
    return lookup(chars, utf8_length, THREAD);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   357
  }
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   358
}
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   359
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   360
Symbol* SymbolTable::lookup_only_unicode(const jchar* name, int utf16_length,
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   361
                                           unsigned int& hash) {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   362
  int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   363
  char stack_buf[128];
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   364
  if (utf8_length < (int) sizeof(stack_buf)) {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   365
    char* chars = stack_buf;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   366
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   367
    return lookup_only(chars, utf8_length, hash);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   368
  } else {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   369
    ResourceMark rm;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   370
    char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   371
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   372
    return lookup_only(chars, utf8_length, hash);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   373
  }
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   374
}
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   375
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   376
void SymbolTable::add(ClassLoaderData* loader_data, const constantPoolHandle& cp,
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   377
                      int names_count,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
                      const char** names, int* lengths, int* cp_indices,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                      unsigned int* hashValues, TRAPS) {
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   380
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   381
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   382
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  SymbolTable* table = the_table();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   384
  bool added = table->basic_add(loader_data, cp, names_count, names, lengths,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
                                cp_indices, hashValues, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  if (!added) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    // do it the hard way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    for (int i=0; i<names_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
      int index = table->hash_to_index(hashValues[i]);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   390
      bool c_heap = !loader_data->is_the_null_class_loader_data();
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   391
      Symbol* sym = table->basic_add(index, (u1*)names[i], lengths[i], hashValues[i], c_heap, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      cp->symbol_at_put(cp_indices[i], sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   397
Symbol* SymbolTable::new_permanent_symbol(const char* name, TRAPS) {
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   398
  unsigned int hash;
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   399
  Symbol* result = SymbolTable::lookup_only((char*)name, (int)strlen(name), hash);
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   400
  if (result != NULL) {
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   401
    return result;
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   402
  }
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   403
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   404
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   405
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   406
  SymbolTable* table = the_table();
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   407
  int index = table->hash_to_index(hash);
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   408
  return table->basic_add(index, (u1*)name, (int)strlen(name), hash, false, THREAD);
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   409
}
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   410
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   411
Symbol* SymbolTable::basic_add(int index_arg, u1 *name, int len,
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   412
                               unsigned int hashValue_arg, bool c_heap, TRAPS) {
20079
edbc2f7b38ef 8024974: Incorrect use of GC_locker::is_active()
stefank
parents: 18091
diff changeset
   413
  assert(!Universe::heap()->is_in_reserved(name),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
         "proposed name of symbol must be stable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   416
  // Don't allow symbols to be created which cannot fit in a Symbol*.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   417
  if (len > Symbol::max_length()) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   418
    THROW_MSG_0(vmSymbols::java_lang_InternalError(),
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   419
                "name is too long to represent");
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   420
  }
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   421
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   422
  // Cannot hit a safepoint in this function because the "this" pointer can move.
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 34659
diff changeset
   423
  NoSafepointVerifier nsv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   425
  // Check if the symbol table has been rehashed, if so, need to recalculate
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   426
  // the hash value and index.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   427
  unsigned int hashValue;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   428
  int index;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   429
  if (use_alternate_hashcode()) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   430
    hashValue = hash_symbol((const char*)name, len);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   431
    index = hash_to_index(hashValue);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   432
  } else {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   433
    hashValue = hashValue_arg;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   434
    index = index_arg;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   435
  }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   436
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // Since look-up was done lock-free, we need to check if another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // thread beat us in the race to insert the symbol.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   439
  Symbol* test = lookup(index, (char*)name, len, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  if (test != NULL) {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   441
    // A race occurred and another thread introduced the symbol.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   442
    assert(test->refcount() != 0, "lookup should have incremented the count");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    return test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   446
  // Create a new symbol.
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   447
  Symbol* sym = allocate_symbol(name, len, c_heap, CHECK_NULL);
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   448
  assert(sym->equals((char*)name, len), "symbol must be properly initialized");
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   449
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   450
  HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  add_entry(index, entry);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   452
  return sym;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   455
// This version of basic_add adds symbols in batch from the constant pool
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   456
// parsing.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33148
diff changeset
   457
bool SymbolTable::basic_add(ClassLoaderData* loader_data, const constantPoolHandle& cp,
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   458
                            int names_count,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
                            const char** names, int* lengths,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
                            int* cp_indices, unsigned int* hashValues,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
                            TRAPS) {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   462
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   463
  // Check symbol names are not too long.  If any are too long, don't add any.
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   464
  for (int i = 0; i< names_count; i++) {
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   465
    if (lengths[i] > Symbol::max_length()) {
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   466
      THROW_MSG_0(vmSymbols::java_lang_InternalError(),
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   467
                  "name is too long to represent");
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   468
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   471
  // Cannot hit a safepoint in this function because the "this" pointer can move.
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 34659
diff changeset
   472
  NoSafepointVerifier nsv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   474
  for (int i=0; i<names_count; i++) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   475
    // Check if the symbol table has been rehashed, if so, need to recalculate
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   476
    // the hash value.
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   477
    unsigned int hashValue;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   478
    if (use_alternate_hashcode()) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   479
      hashValue = hash_symbol(names[i], lengths[i]);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   480
    } else {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   481
      hashValue = hashValues[i];
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   482
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    // Since look-up was done lock-free, we need to check if another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    // thread beat us in the race to insert the symbol.
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   485
    int index = hash_to_index(hashValue);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   486
    Symbol* test = lookup(index, names[i], lengths[i], hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    if (test != NULL) {
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
   488
      // A race occurred and another thread introduced the symbol, this one
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      // will be dropped and collected. Use test instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      cp->symbol_at_put(cp_indices[i], test);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   491
      assert(test->refcount() != 0, "lookup should have incremented the count");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    } else {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   493
      // Create a new symbol.  The null class loader is never unloaded so these
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   494
      // are allocated specially in a permanent arena.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   495
      bool c_heap = !loader_data->is_the_null_class_loader_data();
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   496
      Symbol* sym = allocate_symbol((const u1*)names[i], lengths[i], c_heap, CHECK_(false));
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   497
      assert(sym->equals(names[i], lengths[i]), "symbol must be properly initialized");  // why wouldn't it be???
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   498
      HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
      add_entry(index, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
      cp->symbol_at_put(cp_indices[i], sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
void SymbolTable::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  for (int i = 0; i < the_table()->table_size(); ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   509
    HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    for ( ; p != NULL; p = p->next()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   511
      Symbol* s = (Symbol*)(p->literal());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
      guarantee(s != NULL, "symbol is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
      unsigned int h = hash_symbol((char*)s->bytes(), s->utf8_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
      guarantee(p->hash() == h, "broken hash in symbol table entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      guarantee(the_table()->hash_to_index(h) == i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
                "wrong index in symbol table");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   521
void SymbolTable::dump(outputStream* st, bool verbose) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   522
  if (!verbose) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   523
    the_table()->dump_table(st, "SymbolTable");
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   524
  } else {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   525
    st->print_cr("VERSION: 1.0");
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   526
    for (int i = 0; i < the_table()->table_size(); ++i) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   527
      HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   528
      for ( ; p != NULL; p = p->next()) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   529
        Symbol* s = (Symbol*)(p->literal());
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   530
        const char* utf8_string = (const char*)s->bytes();
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   531
        int utf8_length = s->utf8_length();
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   532
        st->print("%d %d: ", utf8_length, s->refcount());
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   533
        HashtableTextDump::put_utf8(st, utf8_string, utf8_length);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   534
        st->cr();
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   535
      }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   536
    }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   537
  }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   538
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   539
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   540
bool SymbolTable::copy_compact_table(char** top, char*end) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   541
#if INCLUDE_CDS
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 30764
diff changeset
   542
  CompactHashtableWriter ch_table(CompactHashtable<Symbol*, char>::_symbol_table,
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 30764
diff changeset
   543
                                  the_table()->number_of_entries(),
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   544
                                  &MetaspaceShared::stats()->symbol);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   545
  if (*top + ch_table.get_required_bytes() > end) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   546
    // not enough space left
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   547
    return false;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   548
  }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   549
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   550
  for (int i = 0; i < the_table()->table_size(); ++i) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   551
    HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   552
    for ( ; p != NULL; p = p->next()) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   553
      Symbol* s = (Symbol*)(p->literal());
37198
b96542d1afa1 8152380: Shared symbol table should never use alternate hashcode
iklam
parents: 35898
diff changeset
   554
      unsigned int fixed_hash =  hash_shared_symbol((char*)s->bytes(), s->utf8_length());
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   555
      assert(fixed_hash == p->hash(), "must not rehash during dumping");
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   556
      ch_table.add(fixed_hash, s);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   557
    }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   558
  }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   559
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   560
  ch_table.dump(top, end);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   561
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35497
diff changeset
   562
  *top = (char*)align_ptr_up(*top, sizeof(void*));
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   563
#endif
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   564
  return true;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   565
}
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   566
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   567
const char* SymbolTable::init_shared_table(const char* buffer) {
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 30764
diff changeset
   568
  const char* end = _shared_table.init(
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 30764
diff changeset
   569
          CompactHashtable<Symbol*, char>::_symbol_table, buffer);
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35497
diff changeset
   570
  return (const char*)align_ptr_up(end, sizeof(void*));
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   571
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
//---------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
// Non-product code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
void SymbolTable::print_histogram() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  MutexLocker ml(SymbolTable_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  const int results_length = 100;
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   581
  int counts[results_length];
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   582
  int sizes[results_length];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  int i,j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // initialize results to zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  for (j = 0; j < results_length; j++) {
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   587
    counts[j] = 0;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   588
    sizes[j] = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   591
  int total_size = 0;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   592
  int total_count = 0;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   593
  int total_length = 0;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   594
  int max_length = 0;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   595
  int out_of_range_count = 0;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   596
  int out_of_range_size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  for (i = 0; i < the_table()->table_size(); i++) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   598
    HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    for ( ; p != NULL; p = p->next()) {
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   600
      int size = p->literal()->size();
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   601
      int len = p->literal()->utf8_length();
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   602
      if (len < results_length) {
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   603
        counts[len]++;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   604
        sizes[len] += size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
      } else {
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   606
        out_of_range_count++;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   607
        out_of_range_size += size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
      }
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   609
      total_count++;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   610
      total_size += size;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   611
      total_length += len;
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   612
      max_length = MAX2(max_length, len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  }
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   615
  tty->print_cr("Symbol Table Histogram:");
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   616
  tty->print_cr("  Total number of symbols  %7d", total_count);
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   617
  tty->print_cr("  Total size in memory     %7dK",
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35497
diff changeset
   618
          (total_size*wordSize)/1024);
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   619
  tty->print_cr("  Total counted            %7d", _symbols_counted);
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   620
  tty->print_cr("  Total removed            %7d", _symbols_removed);
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   621
  if (_symbols_counted > 0) {
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   622
    tty->print_cr("  Percent removed          %3.2f",
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   623
          ((float)_symbols_removed/(float)_symbols_counted)* 100);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   624
  }
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   625
  tty->print_cr("  Reference counts         %7d", Symbol::_total_count);
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 31790
diff changeset
   626
  tty->print_cr("  Symbol arena used        " SIZE_FORMAT_W(7) "K", arena()->used()/1024);
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 31790
diff changeset
   627
  tty->print_cr("  Symbol arena size        " SIZE_FORMAT_W(7) "K", arena()->size_in_bytes()/1024);
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   628
  tty->print_cr("  Total symbol length      %7d", total_length);
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   629
  tty->print_cr("  Maximum symbol length    %7d", max_length);
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   630
  tty->print_cr("  Average symbol length    %7.2f", ((float) total_length / (float) total_count));
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   631
  tty->print_cr("  Symbol length histogram:");
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   632
  tty->print_cr("    %6s %10s %10s", "Length", "#Symbols", "Size");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  for (i = 0; i < results_length; i++) {
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   634
    if (counts[i] > 0) {
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35497
diff changeset
   635
      tty->print_cr("    %6d %10d %10dK", i, counts[i], (sizes[i]*wordSize)/1024);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  }
26923
60c1555c25c5 8057925: PrintSymbolTableSizeHistogram prints misleading output
shade
parents: 26421
diff changeset
   638
  tty->print_cr("  >=%6d %10d %10dK\n", results_length,
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35497
diff changeset
   639
          out_of_range_count, (out_of_range_size*wordSize)/1024);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   640
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   641
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   642
void SymbolTable::print() {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   643
  for (int i = 0; i < the_table()->table_size(); ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   644
    HashtableEntry<Symbol*, mtSymbol>** p = the_table()->bucket_addr(i);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   645
    HashtableEntry<Symbol*, mtSymbol>* entry = the_table()->bucket(i);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   646
    if (entry != NULL) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   647
      while (entry != NULL) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 31790
diff changeset
   648
        tty->print(PTR_FORMAT " ", p2i(entry->literal()));
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   649
        entry->literal()->print();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   650
        tty->print(" %d", entry->literal()->refcount());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   651
        p = entry->next_addr();
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   652
        entry = (HashtableEntry<Symbol*, mtSymbol>*)HashtableEntry<Symbol*, mtSymbol>::make_ptr(*p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
#endif // PRODUCT
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   659
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   660
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   661
// Utility for dumping symbols
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   662
SymboltableDCmd::SymboltableDCmd(outputStream* output, bool heap) :
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   663
                                 DCmdWithParser(output, heap),
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   664
  _verbose("-verbose", "Dump the content of each symbol in the table",
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   665
           "BOOLEAN", false, "false") {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   666
  _dcmdparser.add_dcmd_option(&_verbose);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   667
}
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   668
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   669
void SymboltableDCmd::execute(DCmdSource source, TRAPS) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   670
  VM_DumpHashtable dumper(output(), VM_DumpHashtable::DumpSymbols,
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   671
                         _verbose.value());
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   672
  VMThread::execute(&dumper);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   673
}
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   674
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   675
int SymboltableDCmd::num_arguments() {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   676
  ResourceMark rm;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   677
  SymboltableDCmd* dcmd = new SymboltableDCmd(NULL, false);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   678
  if (dcmd != NULL) {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   679
    DCmdMark mark(dcmd);
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   680
    return dcmd->_dcmdparser.num_arguments();
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   681
  } else {
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   682
    return 0;
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   683
  }
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27677
diff changeset
   684
}
35497
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   685
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   686
#ifndef PRODUCT
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   687
// Internal test of TempNewSymbol
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   688
void Test_TempNewSymbol() {
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   689
  // Assert messages assume these symbols are unique, and the refcounts start at
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   690
  // one, but code does not rely on this.
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   691
  Thread* THREAD = Thread::current();
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   692
  Symbol* abc = SymbolTable::new_symbol("abc", CATCH);
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   693
  int abccount = abc->refcount();
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   694
  TempNewSymbol ss = abc;
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   695
  assert(ss->refcount() == abccount, "only one abc");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   696
  assert(ss->refcount() == abc->refcount(), "should match TempNewSymbol");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   697
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   698
  Symbol* efg = SymbolTable::new_symbol("efg", CATCH);
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   699
  Symbol* hij = SymbolTable::new_symbol("hij", CATCH);
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   700
  int efgcount = efg->refcount();
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   701
  int hijcount = hij->refcount();
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   702
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   703
  TempNewSymbol s1 = efg;
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   704
  TempNewSymbol s2 = hij;
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   705
  assert(s1->refcount() == efgcount, "one efg");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   706
  assert(s2->refcount() == hijcount, "one hij");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   707
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   708
  // Assignment operator
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   709
  s1 = s2;
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   710
  assert(hij->refcount() == hijcount + 1, "should be two hij");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   711
  assert(efg->refcount() == efgcount - 1, "should be no efg");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   712
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   713
  s1 = ss;  // s1 is abc
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   714
  assert(s1->refcount() == abccount + 1, "should be two abc (s1 and ss)");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   715
  assert(hij->refcount() == hijcount, "should only have one hij now (s2)");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   716
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   717
  s1 = s1; // self assignment
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   718
  assert(s1->refcount() == abccount + 1, "should still be two abc (s1 and ss)");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   719
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   720
  TempNewSymbol s3;
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   721
  Symbol* klm = SymbolTable::new_symbol("klm", CATCH);
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   722
  int klmcount = klm->refcount();
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   723
  s3 = klm;   // assignment
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   724
  assert(s3->refcount() == klmcount, "only one klm now");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   725
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   726
  Symbol* xyz = SymbolTable::new_symbol("xyz", CATCH);
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   727
  int xyzcount = xyz->refcount();
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   728
  { // inner scope
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   729
     TempNewSymbol s_inner = xyz;
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   730
  }
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   731
  assert(xyz->refcount() == (xyzcount - 1),
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   732
         "Should have been decremented by dtor in inner scope");
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   733
}
94c7c07d0161 8145940: TempNewSymbol should have correct copy and assignment functions
coleenp
parents: 35492
diff changeset
   734
#endif // PRODUCT