hotspot/src/share/vm/classfile/symbolTable.cpp
author drchase
Fri, 09 May 2014 16:50:54 -0400
changeset 24424 2658d7834c6e
parent 23858 dae377f5a7c7
child 24429 4efc66ee325c
permissions -rw-r--r--
8037816: Fix for 8036122 breaks build with Xcode5/clang Summary: Repaired or selectively disabled offending formats; future-proofed with additional checking Reviewed-by: kvn, jrose, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
     2
 * Copyright (c) 1997, 2014, 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"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "gc_interface/collectedHeap.inline.hpp"
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    31
#include "memory/allocation.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "memory/filemap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "memory/gcLocker.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "oops/oop.inline2.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "utilities/hashtable.inline.hpp"
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
    38
#if INCLUDE_ALL_GCS
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
    39
#include "gc_implementation/g1/g1StringDedup.hpp"
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
    40
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23858
diff changeset
    42
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23858
diff changeset
    43
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// --------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    46
// the number of buckets a thread claims
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    47
const int ClaimChunkSize = 32;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    48
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
SymbolTable* SymbolTable::_the_table = NULL;
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    50
// 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
    51
Arena* SymbolTable::_arena = NULL;
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
    52
bool SymbolTable::_needs_rehashing = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    54
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
    55
  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
    56
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    57
  Symbol* sym;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
    58
15934
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    59
  if (DumpSharedSpaces) {
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    60
    // Allocate all symbols to CLD shared metaspace
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    61
    sym = new (len, ClassLoaderData::the_null_class_loader_data(), THREAD) Symbol(name, len, -1);
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    62
  } else if (c_heap) {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    63
    // refcount starts as 1
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    64
    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
    65
    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
    66
  } else {
15934
104ff83451f1 8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents: 14742
diff changeset
    67
    // Allocate to global arena
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    68
    sym = new (len, arena(), THREAD) Symbol(name, len, -1);
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    69
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    70
  return sym;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    71
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    72
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    73
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
    74
  // 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
    75
  if (arena_alloc_size == 0) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    76
    _arena = new (mtSymbol) Arena();
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
    77
  } else {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    78
    _arena = new (mtSymbol) Arena(arena_alloc_size);
8076
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
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    82
// 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
    83
void SymbolTable::symbols_do(SymbolClosure *cl) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    84
  const int n = the_table()->table_size();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    85
  for (int i = 0; i < n; i++) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    86
    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
    87
         p != NULL;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    88
         p = p->next()) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    89
      cl->do_symbol(p->literal_addr());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    90
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    91
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    92
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    93
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    94
int SymbolTable::_symbols_removed = 0;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    95
int SymbolTable::_symbols_counted = 0;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    96
volatile int SymbolTable::_parallel_claimed_idx = 0;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    97
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    98
void SymbolTable::buckets_unlink(int start_idx, int end_idx, int* processed, int* removed, size_t* memory_total) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
    99
  for (int i = start_idx; i < end_idx; ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   100
    HashtableEntry<Symbol*, mtSymbol>** p = the_table()->bucket_addr(i);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   101
    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
   102
    while (entry != NULL) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   103
      // 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
   104
      // 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
   105
      // 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
   106
      // end of the bucket.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   107
      if (entry->is_shared() && !use_alternate_hashcode()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   108
        break;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   109
      }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   110
      Symbol* s = entry->literal();
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   111
      (*memory_total) += s->size();
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   112
      (*processed)++;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   113
      assert(s != NULL, "just checking");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   114
      // If reference count is zero, remove.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   115
      if (s->refcount() == 0) {
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   116
        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
   117
        delete s;
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   118
        (*removed)++;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   119
        *p = entry->next();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   120
        the_table()->free_entry(entry);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   121
      } else {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   122
        p = entry->next_addr();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   123
      }
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   124
      // get next entry
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   125
      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
   126
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   127
  }
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   128
}
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   129
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   130
// Remove unreferenced symbols from the symbol table
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   131
// This is done late during GC.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   132
void SymbolTable::unlink(int* processed, int* removed) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   133
  size_t memory_total = 0;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   134
  buckets_unlink(0, the_table()->table_size(), processed, removed, &memory_total);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   135
  _symbols_removed += *removed;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   136
  _symbols_counted += *processed;
8655
fec854507832 7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents: 8076
diff changeset
   137
  // Exclude printing for normal PrintGCDetails because people parse
fec854507832 7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents: 8076
diff changeset
   138
  // this output.
fec854507832 7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents: 8076
diff changeset
   139
  if (PrintGCDetails && Verbose && WizardMode) {
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   140
    gclog_or_tty->print(" [Symbols=%d size=" SIZE_FORMAT "K] ", *processed,
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   141
                        (memory_total*HeapWordSize)/1024);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   142
  }
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
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   145
void SymbolTable::possibly_parallel_unlink(int* processed, int* removed) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   146
  const int limit = the_table()->table_size();
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   147
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   148
  size_t memory_total = 0;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   149
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   150
  for (;;) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   151
    // Grab next set of buckets to scan
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   152
    int start_idx = Atomic::add(ClaimChunkSize, &_parallel_claimed_idx) - ClaimChunkSize;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   153
    if (start_idx >= limit) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   154
      // End of table
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   155
      break;
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
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   158
    int end_idx = MIN2(limit, start_idx + ClaimChunkSize);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   159
    buckets_unlink(start_idx, end_idx, processed, removed, &memory_total);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   160
  }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   161
  Atomic::add(*processed, &_symbols_counted);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   162
  Atomic::add(*removed, &_symbols_removed);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   163
  // Exclude printing for normal PrintGCDetails because people parse
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   164
  // this output.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   165
  if (PrintGCDetails && Verbose && WizardMode) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   166
    gclog_or_tty->print(" [Symbols: scanned=%d removed=%d size=" SIZE_FORMAT "K] ", *processed, *removed,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   167
                        (memory_total*HeapWordSize)/1024);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   168
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   169
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   170
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   171
// 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
   172
// 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
   173
void SymbolTable::rehash_table() {
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   174
  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
   175
  // 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
   176
  if (DumpSharedSpaces) return;
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   177
  // Create a new symbol table
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   178
  SymbolTable* new_table = new SymbolTable();
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   179
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   180
  the_table()->move_to(new_table);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   181
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   182
  // Delete the table and buckets (entries are reused in new table).
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   183
  delete _the_table;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   184
  // 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
   185
  // Then rehash with a new global seed.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   186
  _needs_rehashing = false;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   187
  _the_table = new_table;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   188
}
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   189
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
// Lookup a symbol in a bucket.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   192
Symbol* SymbolTable::lookup(int index, const char* name,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                              int len, unsigned int hash) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   194
  int count = 0;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   195
  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
   196
    count++;  // count all entries in this bucket, not just ones with same hash
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    if (e->hash() == hash) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   198
      Symbol* sym = e->literal();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      if (sym->equals(name, len)) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   200
        // something is referencing this symbol now.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   201
        sym->increment_refcount();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
        return sym;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   206
  // If the bucket size is too deep check if this hash code is insufficient.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   207
  if (count >= BasicHashtable<mtSymbol>::rehash_count && !needs_rehashing()) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   208
    _needs_rehashing = check_rehash_table(count);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   209
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   213
// Pick hashing algorithm.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   214
unsigned int SymbolTable::hash_symbol(const char* s, int len) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   215
  return use_alternate_hashcode() ?
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   216
           AltHashing::murmur3_32(seed(), (const jbyte*)s, len) :
14742
b2a47eb99404 8004661: Comment and function name java_lang_String::toHash is wrong
brutisso
parents: 13728
diff changeset
   217
           java_lang_String::hash_code(s, len);
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   218
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   219
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
// We take care not to be blocking while holding the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// SymbolTable_lock. Otherwise, the system might deadlock, since the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// symboltable is used during compilation (VM_thread) The lock free
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
// synchronization is simplified by the fact that we do not delete
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// entries in the symbol table during normal execution (only during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
// safepoints).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   228
Symbol* SymbolTable::lookup(const char* name, int len, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  unsigned int hashValue = hash_symbol(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  int index = the_table()->hash_to_index(hashValue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   232
  Symbol* s = the_table()->lookup(index, name, len, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  if (s != NULL) return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   237
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   238
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   239
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Otherwise, add to symbol to table
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   241
  return the_table()->basic_add(index, (u1*)name, len, hashValue, true, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   244
Symbol* SymbolTable::lookup(const Symbol* sym, int begin, int end, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  char* buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  int index, len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  unsigned int hashValue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  char* name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    debug_only(No_Safepoint_Verifier nsv;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    name = (char*)sym->base() + begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    len = end - begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    hashValue = hash_symbol(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    index = the_table()->hash_to_index(hashValue);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   256
    Symbol* s = the_table()->lookup(index, name, len, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    // Found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    if (s != NULL) return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // Otherwise, add to symbol to table. Copy to a C string first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  char stack_buf[128];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  if (len <= 128) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    buffer = stack_buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    buffer = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    buffer[i] = name[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // Make sure there is no safepoint in the code above since name can't move.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // We can't include the code in No_Safepoint_Verifier because of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // ResourceMark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   277
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   278
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   279
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   280
  return the_table()->basic_add(index, (u1*)buffer, len, hashValue, true, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   283
Symbol* SymbolTable::lookup_only(const char* name, int len,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                                   unsigned int& hash) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  hash = hash_symbol(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  int index = the_table()->hash_to_index(hash);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
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, hash);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   289
  return s;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   292
// 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
   293
// Do not create any new symbols
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   294
// 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
   295
Symbol** SymbolTable::lookup_symbol_addr(Symbol* sym){
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   296
  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
   297
  int index = the_table()->hash_to_index(hash);
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   298
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   299
  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
   300
    if (e->hash() == hash) {
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   301
      Symbol* literal_sym = e->literal();
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   302
      if (sym == literal_sym) {
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   303
        return e->literal_addr();
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   304
      }
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   305
    }
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   306
  }
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   307
  return NULL;
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   308
}
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8885
diff changeset
   309
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   310
// Suggestion: Push unicode-based lookup all the way into the hashing
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   311
// 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
   312
// an actual new Symbol* is created.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   313
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
   314
  int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   315
  char stack_buf[128];
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   316
  if (utf8_length < (int) sizeof(stack_buf)) {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   317
    char* chars = stack_buf;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   318
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   319
    return lookup(chars, utf8_length, THREAD);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   320
  } else {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   321
    ResourceMark rm(THREAD);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   322
    char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   323
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   324
    return lookup(chars, utf8_length, THREAD);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   325
  }
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   326
}
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   327
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   328
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
   329
                                           unsigned int& hash) {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   330
  int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   331
  char stack_buf[128];
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   332
  if (utf8_length < (int) sizeof(stack_buf)) {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   333
    char* chars = stack_buf;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   334
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   335
    return lookup_only(chars, utf8_length, hash);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   336
  } else {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   337
    ResourceMark rm;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   338
    char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   339
    UNICODE::convert_to_utf8(name, utf16_length, chars);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   340
    return lookup_only(chars, utf8_length, hash);
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   341
  }
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   342
}
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2131
diff changeset
   343
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   344
void SymbolTable::add(ClassLoaderData* loader_data, constantPoolHandle cp,
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   345
                      int names_count,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
                      const char** names, int* lengths, int* cp_indices,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
                      unsigned int* hashValues, TRAPS) {
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   348
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   349
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   350
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  SymbolTable* table = the_table();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   352
  bool added = table->basic_add(loader_data, cp, names_count, names, lengths,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
                                cp_indices, hashValues, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  if (!added) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    // do it the hard way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    for (int i=0; i<names_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      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
   358
      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
   359
      Symbol* sym = table->basic_add(index, (u1*)names[i], lengths[i], hashValues[i], c_heap, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      cp->symbol_at_put(cp_indices[i], sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   365
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
   366
  unsigned int hash;
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   367
  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
   368
  if (result != NULL) {
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   369
    return result;
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   370
  }
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   371
  // Grab SymbolTable_lock first.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   372
  MutexLocker ml(SymbolTable_lock, THREAD);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   373
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   374
  SymbolTable* table = the_table();
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   375
  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
   376
  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
   377
}
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   378
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   379
Symbol* SymbolTable::basic_add(int index_arg, u1 *name, int len,
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   380
                               unsigned int hashValue_arg, bool c_heap, TRAPS) {
20079
edbc2f7b38ef 8024974: Incorrect use of GC_locker::is_active()
stefank
parents: 18091
diff changeset
   381
  assert(!Universe::heap()->is_in_reserved(name),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
         "proposed name of symbol must be stable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   384
  // 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
   385
  if (len > Symbol::max_length()) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   386
    THROW_MSG_0(vmSymbols::java_lang_InternalError(),
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   387
                "name is too long to represent");
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   388
  }
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   389
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   390
  // Cannot hit a safepoint in this function because the "this" pointer can move.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   391
  No_Safepoint_Verifier nsv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   393
  // 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
   394
  // the hash value and index.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   395
  unsigned int hashValue;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   396
  int index;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   397
  if (use_alternate_hashcode()) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   398
    hashValue = hash_symbol((const char*)name, len);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   399
    index = hash_to_index(hashValue);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   400
  } else {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   401
    hashValue = hashValue_arg;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   402
    index = index_arg;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   403
  }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   404
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // Since look-up was done lock-free, we need to check if another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // 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
   407
  Symbol* test = lookup(index, (char*)name, len, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  if (test != NULL) {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   409
    // 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
   410
    assert(test->refcount() != 0, "lookup should have incremented the count");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    return test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   414
  // Create a new symbol.
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   415
  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
   416
  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
   417
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   418
  HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  add_entry(index, entry);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   420
  return sym;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   423
// 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
   424
// parsing.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   425
bool SymbolTable::basic_add(ClassLoaderData* loader_data, constantPoolHandle cp,
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   426
                            int names_count,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
                            const char** names, int* lengths,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
                            int* cp_indices, unsigned int* hashValues,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
                            TRAPS) {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   430
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   431
  // 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
   432
  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
   433
    if (lengths[i] > Symbol::max_length()) {
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   434
      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
   435
                  "name is too long to represent");
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   436
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   439
  // Cannot hit a safepoint in this function because the "this" pointer can move.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   440
  No_Safepoint_Verifier nsv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   442
  for (int i=0; i<names_count; i++) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   443
    // 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
   444
    // the hash value.
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   445
    unsigned int hashValue;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   446
    if (use_alternate_hashcode()) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   447
      hashValue = hash_symbol(names[i], lengths[i]);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   448
    } else {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   449
      hashValue = hashValues[i];
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   450
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    // Since look-up was done lock-free, we need to check if another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    // thread beat us in the race to insert the symbol.
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   453
    int index = hash_to_index(hashValue);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   454
    Symbol* test = lookup(index, names[i], lengths[i], hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    if (test != NULL) {
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
   456
      // A race occurred and another thread introduced the symbol, this one
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      // will be dropped and collected. Use test instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      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
   459
      assert(test->refcount() != 0, "lookup should have incremented the count");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    } else {
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   461
      // 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
   462
      // are allocated specially in a permanent arena.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   463
      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
   464
      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
   465
      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
   466
      HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      add_entry(index, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      cp->symbol_at_put(cp_indices[i], sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
void SymbolTable::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  for (int i = 0; i < the_table()->table_size(); ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   477
    HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    for ( ; p != NULL; p = p->next()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   479
      Symbol* s = (Symbol*)(p->literal());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      guarantee(s != NULL, "symbol is NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      unsigned int h = hash_symbol((char*)s->bytes(), s->utf8_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
      guarantee(p->hash() == h, "broken hash in symbol table entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
      guarantee(the_table()->hash_to_index(h) == i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
                "wrong index in symbol table");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   489
void SymbolTable::dump(outputStream* st) {
17610
c6857feaac47 8014262: PrintStringTableStatistics should include more footprint info
iklam
parents: 17081
diff changeset
   490
  the_table()->dump_table(st, "SymbolTable");
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   491
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   492
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
//---------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
// Non-product code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
void SymbolTable::print_histogram() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  MutexLocker ml(SymbolTable_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  const int results_length = 100;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  int results[results_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  int i,j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // initialize results to zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  for (j = 0; j < results_length; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    results[j] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  int total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  int max_symbols = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  int out_of_range = 0;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   513
  int memory_total = 0;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   514
  int count = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  for (i = 0; i < the_table()->table_size(); i++) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   516
    HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    for ( ; p != NULL; p = p->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   518
      memory_total += p->literal()->size();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   519
      count++;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   520
      int counter = p->literal()->utf8_length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
      total += counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      if (counter < results_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
        results[counter]++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
        out_of_range++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
      max_symbols = MAX2(max_symbols, counter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  tty->print_cr("Symbol Table:");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   531
  tty->print_cr("Total number of symbols  %5d", count);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   532
  tty->print_cr("Total size in memory     %5dK",
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   533
          (memory_total*HeapWordSize)/1024);
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   534
  tty->print_cr("Total counted            %5d", _symbols_counted);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   535
  tty->print_cr("Total removed            %5d", _symbols_removed);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   536
  if (_symbols_counted > 0) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   537
    tty->print_cr("Percent removed          %3.2f",
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   538
          ((float)_symbols_removed/(float)_symbols_counted)* 100);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   539
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   540
  tty->print_cr("Reference counts         %5d", Symbol::_total_count);
12263
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   541
  tty->print_cr("Symbol arena size        %5d used %5d",
d20640f4f8fe 7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents: 11480
diff changeset
   542
                 arena()->size_in_bytes(), arena()->used());
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   543
  tty->print_cr("Histogram of symbol length:");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  tty->print_cr("%8s %5d", "Total  ", total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  tty->print_cr("%8s %5d", "Maximum", max_symbols);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  tty->print_cr("%8s %3.2f", "Average",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
          ((float) total / (float) the_table()->table_size()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  tty->print_cr("%s", "Histogram:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  tty->print_cr(" %s %29s", "Length", "Number chains that length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  for (i = 0; i < results_length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    if (results[i] > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      tty->print_cr("%6d %10d", i, results[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   555
  if (Verbose) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   556
    int line_length = 70;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   557
    tty->print_cr("%s %30s", " Length", "Number chains that length");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   558
    for (i = 0; i < results_length; i++) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   559
      if (results[i] > 0) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   560
        tty->print("%4d", i);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   561
        for (j = 0; (j < results[i]) && (j < line_length);  j++) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   562
          tty->print("%1s", "*");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   563
        }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   564
        if (j == line_length) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   565
          tty->print("%1s", "+");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   566
        }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   567
        tty->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   569
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   570
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   571
  tty->print_cr(" %s %d: %d\n", "Number chains longer than",
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   572
                    results_length, out_of_range);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   573
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   574
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   575
void SymbolTable::print() {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   576
  for (int i = 0; i < the_table()->table_size(); ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   577
    HashtableEntry<Symbol*, mtSymbol>** p = the_table()->bucket_addr(i);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   578
    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
   579
    if (entry != NULL) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   580
      while (entry != NULL) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   581
        tty->print(PTR_FORMAT " ", entry->literal());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   582
        entry->literal()->print();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   583
        tty->print(" %d", entry->literal()->refcount());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   584
        p = entry->next_addr();
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   585
        entry = (HashtableEntry<Symbol*, mtSymbol>*)HashtableEntry<Symbol*, mtSymbol>::make_ptr(*p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
// --------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
class StableMemoryChecker : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  enum { _bufsize = wordSize*4 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  address _region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  jint    _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  u1      _save_buf[_bufsize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  int sample(u1* save_buf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    if (_size <= _bufsize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
      memcpy(save_buf, _region, _size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
      return _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
      // copy head and tail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
      memcpy(&save_buf[0],          _region,                      _bufsize/2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
      memcpy(&save_buf[_bufsize/2], _region + _size - _bufsize/2, _bufsize/2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
      return (_bufsize/2)*2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  StableMemoryChecker(const void* region, jint size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    _region = (address) region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    _size   = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    sample(_save_buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  bool verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    u1 check_buf[sizeof(_save_buf)];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    int check_size = sample(check_buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    return (0 == memcmp(_save_buf, check_buf, check_size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  void set_region(const void* region) { _region = (address) region; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
// --------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
StringTable* StringTable::_the_table = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   636
bool StringTable::_needs_rehashing = false;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   637
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   638
volatile int StringTable::_parallel_claimed_idx = 0;
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   639
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   640
// Pick hashing algorithm
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   641
unsigned int StringTable::hash_string(const jchar* s, int len) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   642
  return use_alternate_hashcode() ? AltHashing::murmur3_32(seed(), s, len) :
14742
b2a47eb99404 8004661: Comment and function name java_lang_String::toHash is wrong
brutisso
parents: 13728
diff changeset
   643
                                    java_lang_String::hash_code(s, len);
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   644
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   645
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
oop StringTable::lookup(int index, jchar* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
                        int len, unsigned int hash) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   648
  int count = 0;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   649
  for (HashtableEntry<oop, mtSymbol>* l = bucket(index); l != NULL; l = l->next()) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   650
    count++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    if (l->hash() == hash) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
      if (java_lang_String::equals(l->literal(), name, len)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
        return l->literal();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   657
  // If the bucket size is too deep check if this hash code is insufficient.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   658
  if (count >= BasicHashtable<mtSymbol>::rehash_count && !needs_rehashing()) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   659
    _needs_rehashing = check_rehash_table(count);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   660
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   665
oop StringTable::basic_add(int index_arg, Handle string, jchar* name,
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   666
                           int len, unsigned int hashValue_arg, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  assert(java_lang_String::equals(string(), name, len),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
         "string must be properly initialized");
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   670
  // Cannot hit a safepoint in this function because the "this" pointer can move.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   671
  No_Safepoint_Verifier nsv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   673
  // 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
   674
  // the hash value and index before second lookup.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   675
  unsigned int hashValue;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   676
  int index;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   677
  if (use_alternate_hashcode()) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   678
    hashValue = hash_string(name, len);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   679
    index = hash_to_index(hashValue);
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   680
  } else {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   681
    hashValue = hashValue_arg;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   682
    index = index_arg;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   683
  }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   684
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  // Since look-up was done lock-free, we need to check if another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  // thread beat us in the race to insert the symbol.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  oop test = lookup(index, name, len, hashValue); // calls lookup(u1*, int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  if (test != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    // Entry already added
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    return test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   694
  HashtableEntry<oop, mtSymbol>* entry = new_entry(hashValue, string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  add_entry(index, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  return string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   700
oop StringTable::lookup(Symbol* symbol) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  int length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  jchar* chars = symbol->as_unicode(length);
16601
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   704
  return lookup(chars, length);
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   705
}
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   706
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   707
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   708
oop StringTable::lookup(jchar* name, int len) {
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   709
  unsigned int hash = hash_string(name, len);
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   710
  int index = the_table()->hash_to_index(hash);
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15934
diff changeset
   711
  return the_table()->lookup(index, name, len, hash);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
oop StringTable::intern(Handle string_or_null, jchar* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
                        int len, TRAPS) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   717
  unsigned int hashValue = hash_string(name, len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  int index = the_table()->hash_to_index(hashValue);
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   719
  oop found_string = the_table()->lookup(index, name, len, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  // Found
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   722
  if (found_string != NULL) return found_string;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   723
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   724
  debug_only(StableMemoryChecker smc(name, len * sizeof(name[0])));
20079
edbc2f7b38ef 8024974: Incorrect use of GC_locker::is_active()
stefank
parents: 18091
diff changeset
   725
  assert(!Universe::heap()->is_in_reserved(name),
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   726
         "proposed name of symbol must be stable");
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   727
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   728
  Handle string;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   729
  // try to reuse the string if possible
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   730
  if (!string_or_null.is_null()) {
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   731
    string = string_or_null;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   732
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13199
diff changeset
   733
    string = java_lang_String::create_from_unicode(name, len, CHECK_NULL);
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   734
  }
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   735
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   736
#if INCLUDE_ALL_GCS
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   737
  if (G1StringDedup::is_enabled()) {
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   738
    // Deduplicate the string before it is interned. Note that we should never
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   739
    // deduplicate a string after it has been interned. Doing so will counteract
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   740
    // compiler optimizations done on e.g. interned string literals.
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   741
    G1StringDedup::deduplicate(string());
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   742
  }
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   743
#endif
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22545
diff changeset
   744
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   745
  // Grab the StringTable_lock before getting the_table() because it could
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   746
  // change at safepoint.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   747
  MutexLocker ml(StringTable_lock, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  // Otherwise, add to symbol to table
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   750
  return the_table()->basic_add(index, string, name, len,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
                                hashValue, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   754
oop StringTable::intern(Symbol* symbol, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  if (symbol == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  int length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  jchar* chars = symbol->as_unicode(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  Handle string;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  oop result = intern(string, chars, length, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
oop StringTable::intern(oop string, TRAPS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  if (string == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  int length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  Handle h_string (THREAD, string);
17081
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 16601
diff changeset
   771
  jchar* chars = java_lang_String::as_unicode_string(string, length, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  oop result = intern(h_string, chars, length, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
oop StringTable::intern(const char* utf8_string, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  if (utf8_string == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  int length = UTF8::unicode_length(utf8_string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  jchar* chars = NEW_RESOURCE_ARRAY(jchar, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  UTF8::convert_to_unicode(utf8_string, chars, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  Handle string;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  oop result = intern(string, chars, length, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   788
void StringTable::unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f, int* processed, int* removed) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   789
  buckets_unlink_or_oops_do(is_alive, f, 0, the_table()->table_size(), processed, removed);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   790
}
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   791
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   792
void StringTable::possibly_parallel_unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f, int* processed, int* removed) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   793
  // Readers of the table are unlocked, so we should only be removing
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   794
  // entries at a safepoint.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   795
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   796
  const int limit = the_table()->table_size();
17845
246c16282ae8 8015428: Remove unused CDS support from StringTable
stefank
parents: 17610
diff changeset
   797
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   798
  for (;;) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   799
    // Grab next set of buckets to scan
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   800
    int start_idx = Atomic::add(ClaimChunkSize, &_parallel_claimed_idx) - ClaimChunkSize;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   801
    if (start_idx >= limit) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   802
      // End of table
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   803
      break;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   804
    }
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   805
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   806
    int end_idx = MIN2(limit, start_idx + ClaimChunkSize);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   807
    buckets_unlink_or_oops_do(is_alive, f, start_idx, end_idx, processed, removed);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   808
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   809
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   810
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   811
void StringTable::buckets_oops_do(OopClosure* f, int start_idx, int end_idx) {
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   812
  const int limit = the_table()->table_size();
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   813
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   814
  assert(0 <= start_idx && start_idx <= limit,
23858
dae377f5a7c7 8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code
stefank
parents: 23472
diff changeset
   815
         err_msg("start_idx (%d) is out of bounds", start_idx));
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   816
  assert(0 <= end_idx && end_idx <= limit,
23858
dae377f5a7c7 8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code
stefank
parents: 23472
diff changeset
   817
         err_msg("end_idx (%d) is out of bounds", end_idx));
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   818
  assert(start_idx <= end_idx,
23858
dae377f5a7c7 8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code
stefank
parents: 23472
diff changeset
   819
         err_msg("Index ordering: start_idx=%d, end_idx=%d",
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   820
                 start_idx, end_idx));
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   821
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   822
  for (int i = start_idx; i < end_idx; i += 1) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   823
    HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   824
    while (entry != NULL) {
17845
246c16282ae8 8015428: Remove unused CDS support from StringTable
stefank
parents: 17610
diff changeset
   825
      assert(!entry->is_shared(), "CDS not used for the StringTable");
246c16282ae8 8015428: Remove unused CDS support from StringTable
stefank
parents: 17610
diff changeset
   826
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   827
      f->do_oop((oop*)entry->literal_addr());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   828
17845
246c16282ae8 8015428: Remove unused CDS support from StringTable
stefank
parents: 17610
diff changeset
   829
      entry = entry->next();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   830
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   831
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   832
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   833
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   834
void StringTable::buckets_unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f, int start_idx, int end_idx, int* processed, int* removed) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   835
  const int limit = the_table()->table_size();
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   836
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   837
  assert(0 <= start_idx && start_idx <= limit,
23858
dae377f5a7c7 8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code
stefank
parents: 23472
diff changeset
   838
         err_msg("start_idx (%d) is out of bounds", start_idx));
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   839
  assert(0 <= end_idx && end_idx <= limit,
23858
dae377f5a7c7 8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code
stefank
parents: 23472
diff changeset
   840
         err_msg("end_idx (%d) is out of bounds", end_idx));
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   841
  assert(start_idx <= end_idx,
23858
dae377f5a7c7 8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code
stefank
parents: 23472
diff changeset
   842
         err_msg("Index ordering: start_idx=%d, end_idx=%d",
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   843
                 start_idx, end_idx));
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   844
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   845
  for (int i = start_idx; i < end_idx; ++i) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   846
    HashtableEntry<oop, mtSymbol>** p = the_table()->bucket_addr(i);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   847
    HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   848
    while (entry != NULL) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   849
      assert(!entry->is_shared(), "CDS not used for the StringTable");
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   850
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   851
      if (is_alive->do_object_b(entry->literal())) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   852
        if (f != NULL) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   853
          f->do_oop((oop*)entry->literal_addr());
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   854
        }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   855
        p = entry->next_addr();
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   856
      } else {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   857
        *p = entry->next();
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   858
        the_table()->free_entry(entry);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   859
        (*removed)++;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   860
      }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   861
      (*processed)++;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   862
      entry = *p;
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   863
    }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   864
  }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   865
}
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   866
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   867
void StringTable::oops_do(OopClosure* f) {
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   868
  buckets_oops_do(f, 0, the_table()->table_size());
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   869
}
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   870
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   871
void StringTable::possibly_parallel_oops_do(OopClosure* f) {
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   872
  const int limit = the_table()->table_size();
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   873
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   874
  for (;;) {
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   875
    // Grab next set of buckets to scan
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   876
    int start_idx = Atomic::add(ClaimChunkSize, &_parallel_claimed_idx) - ClaimChunkSize;
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   877
    if (start_idx >= limit) {
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   878
      // End of table
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   879
      break;
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   880
    }
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   881
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   882
    int end_idx = MIN2(limit, start_idx + ClaimChunkSize);
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents: 20283
diff changeset
   883
    buckets_oops_do(f, start_idx, end_idx);
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   884
  }
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   885
}
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17846
diff changeset
   886
20053
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   887
// This verification is part of Universe::verify() and needs to be quick.
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   888
// See StringTable::verify_and_compare() below for exhaustive verification.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
void StringTable::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  for (int i = 0; i < the_table()->table_size(); ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   891
    HashtableEntry<oop, mtSymbol>* p = the_table()->bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    for ( ; p != NULL; p = p->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
      oop s = p->literal();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
      guarantee(s != NULL, "interned string is NULL");
8885
eed0ba1d011b 7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents: 8728
diff changeset
   895
      unsigned int h = java_lang_String::hash_string(s);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
      guarantee(p->hash() == h, "broken hash in string table entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
      guarantee(the_table()->hash_to_index(h) == i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
                "wrong index in string table");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
}
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   902
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   903
void StringTable::dump(outputStream* st) {
17610
c6857feaac47 8014262: PrintStringTableStatistics should include more footprint info
iklam
parents: 17081
diff changeset
   904
  the_table()->dump_table(st, "StringTable");
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   905
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
   906
20053
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   907
StringTable::VerifyRetTypes StringTable::compare_entries(
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   908
                                      int bkt1, int e_cnt1,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   909
                                      HashtableEntry<oop, mtSymbol>* e_ptr1,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   910
                                      int bkt2, int e_cnt2,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   911
                                      HashtableEntry<oop, mtSymbol>* e_ptr2) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   912
  // These entries are sanity checked by verify_and_compare_entries()
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   913
  // before this function is called.
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   914
  oop str1 = e_ptr1->literal();
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   915
  oop str2 = e_ptr2->literal();
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   916
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   917
  if (str1 == str2) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   918
    tty->print_cr("ERROR: identical oop values (0x" PTR_FORMAT ") "
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   919
                  "in entry @ bucket[%d][%d] and entry @ bucket[%d][%d]",
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 20053
diff changeset
   920
                  (void *)str1, bkt1, e_cnt1, bkt2, e_cnt2);
20053
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   921
    return _verify_fail_continue;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   922
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   923
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   924
  if (java_lang_String::equals(str1, str2)) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   925
    tty->print_cr("ERROR: identical String values in entry @ "
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   926
                  "bucket[%d][%d] and entry @ bucket[%d][%d]",
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   927
                  bkt1, e_cnt1, bkt2, e_cnt2);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   928
    return _verify_fail_continue;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   929
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   930
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   931
  return _verify_pass;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   932
}
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   933
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   934
StringTable::VerifyRetTypes StringTable::verify_entry(int bkt, int e_cnt,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   935
                                      HashtableEntry<oop, mtSymbol>* e_ptr,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   936
                                      StringTable::VerifyMesgModes mesg_mode) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   937
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   938
  VerifyRetTypes ret = _verify_pass;  // be optimistic
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   939
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   940
  oop str = e_ptr->literal();
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   941
  if (str == NULL) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   942
    if (mesg_mode == _verify_with_mesgs) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   943
      tty->print_cr("ERROR: NULL oop value in entry @ bucket[%d][%d]", bkt,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   944
                    e_cnt);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   945
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   946
    // NULL oop means no more verifications are possible
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   947
    return _verify_fail_done;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   948
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   949
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   950
  if (str->klass() != SystemDictionary::String_klass()) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   951
    if (mesg_mode == _verify_with_mesgs) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   952
      tty->print_cr("ERROR: oop is not a String in entry @ bucket[%d][%d]",
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   953
                    bkt, e_cnt);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   954
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   955
    // not a String means no more verifications are possible
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   956
    return _verify_fail_done;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   957
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   958
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   959
  unsigned int h = java_lang_String::hash_string(str);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   960
  if (e_ptr->hash() != h) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   961
    if (mesg_mode == _verify_with_mesgs) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   962
      tty->print_cr("ERROR: broken hash value in entry @ bucket[%d][%d], "
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   963
                    "bkt_hash=%d, str_hash=%d", bkt, e_cnt, e_ptr->hash(), h);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   964
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   965
    ret = _verify_fail_continue;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   966
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   967
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   968
  if (the_table()->hash_to_index(h) != bkt) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   969
    if (mesg_mode == _verify_with_mesgs) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   970
      tty->print_cr("ERROR: wrong index value for entry @ bucket[%d][%d], "
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   971
                    "str_hash=%d, hash_to_index=%d", bkt, e_cnt, h,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   972
                    the_table()->hash_to_index(h));
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   973
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   974
    ret = _verify_fail_continue;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   975
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   976
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   977
  return ret;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   978
}
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   979
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   980
// See StringTable::verify() above for the quick verification that is
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   981
// part of Universe::verify(). This verification is exhaustive and
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   982
// reports on every issue that is found. StringTable::verify() only
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   983
// reports on the first issue that is found.
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   984
//
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   985
// StringTable::verify_entry() checks:
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   986
// - oop value != NULL (same as verify())
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   987
// - oop value is a String
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   988
// - hash(String) == hash in entry (same as verify())
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   989
// - index for hash == index of entry (same as verify())
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   990
//
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   991
// StringTable::compare_entries() checks:
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   992
// - oops are unique across all entries
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   993
// - String values are unique across all entries
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   994
//
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   995
int StringTable::verify_and_compare_entries() {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   996
  assert(StringTable_lock->is_locked(), "sanity check");
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   997
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   998
  int  fail_cnt = 0;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
   999
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1000
  // first, verify all the entries individually:
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1001
  for (int bkt = 0; bkt < the_table()->table_size(); bkt++) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1002
    HashtableEntry<oop, mtSymbol>* e_ptr = the_table()->bucket(bkt);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1003
    for (int e_cnt = 0; e_ptr != NULL; e_ptr = e_ptr->next(), e_cnt++) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1004
      VerifyRetTypes ret = verify_entry(bkt, e_cnt, e_ptr, _verify_with_mesgs);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1005
      if (ret != _verify_pass) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1006
        fail_cnt++;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1007
      }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1008
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1009
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1010
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1011
  // Optimization: if the above check did not find any failures, then
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1012
  // the comparison loop below does not need to call verify_entry()
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1013
  // before calling compare_entries(). If there were failures, then we
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1014
  // have to call verify_entry() to see if the entry can be passed to
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1015
  // compare_entries() safely. When we call verify_entry() in the loop
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1016
  // below, we do so quietly to void duplicate messages and we don't
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1017
  // increment fail_cnt because the failures have already been counted.
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1018
  bool need_entry_verify = (fail_cnt != 0);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1019
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1020
  // second, verify all entries relative to each other:
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1021
  for (int bkt1 = 0; bkt1 < the_table()->table_size(); bkt1++) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1022
    HashtableEntry<oop, mtSymbol>* e_ptr1 = the_table()->bucket(bkt1);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1023
    for (int e_cnt1 = 0; e_ptr1 != NULL; e_ptr1 = e_ptr1->next(), e_cnt1++) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1024
      if (need_entry_verify) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1025
        VerifyRetTypes ret = verify_entry(bkt1, e_cnt1, e_ptr1,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1026
                                          _verify_quietly);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1027
        if (ret == _verify_fail_done) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1028
          // cannot use the current entry to compare against other entries
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1029
          continue;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1030
        }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1031
      }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1032
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1033
      for (int bkt2 = bkt1; bkt2 < the_table()->table_size(); bkt2++) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1034
        HashtableEntry<oop, mtSymbol>* e_ptr2 = the_table()->bucket(bkt2);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1035
        int e_cnt2;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1036
        for (e_cnt2 = 0; e_ptr2 != NULL; e_ptr2 = e_ptr2->next(), e_cnt2++) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1037
          if (bkt1 == bkt2 && e_cnt2 <= e_cnt1) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1038
            // skip the entries up to and including the one that
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1039
            // we're comparing against
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1040
            continue;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1041
          }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1042
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1043
          if (need_entry_verify) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1044
            VerifyRetTypes ret = verify_entry(bkt2, e_cnt2, e_ptr2,
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1045
                                              _verify_quietly);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1046
            if (ret == _verify_fail_done) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1047
              // cannot compare against this entry
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1048
              continue;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1049
            }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1050
          }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1051
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1052
          // compare two entries, report and count any failures:
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1053
          if (compare_entries(bkt1, e_cnt1, e_ptr1, bkt2, e_cnt2, e_ptr2)
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1054
              != _verify_pass) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1055
            fail_cnt++;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1056
          }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1057
        }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1058
      }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1059
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1060
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1061
  return fail_cnt;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18091
diff changeset
  1062
}
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1063
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1064
// 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
  1065
// 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
  1066
void StringTable::rehash_table() {
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1067
  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
  1068
  // 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
  1069
  if (DumpSharedSpaces) return;
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1070
  StringTable* new_table = new StringTable();
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1071
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1072
  // Rehash the table
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1073
  the_table()->move_to(new_table);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1074
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1075
  // Delete the table and buckets (entries are reused in new table).
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1076
  delete _the_table;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1077
  // 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
  1078
  // Then rehash with a new global seed.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1079
  _needs_rehashing = false;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1080
  _the_table = new_table;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12263
diff changeset
  1081
}