hotspot/src/share/vm/gc_implementation/g1/g1StringDedupThread.hpp
author pliden
Fri, 11 Apr 2014 11:00:12 +0200
changeset 24093 095cc0a63ed9
parent 23472 35e93890ed88
child 24331 c0bc7e5653fb
permissions -rw-r--r--
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV Reviewed-by: brutisso, mgerdin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     1
/*
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     4
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     7
 * published by the Free Software Foundation.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     8
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    13
 * accompanied this code).
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    14
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    18
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    21
 * questions.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    22
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    23
 */
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    24
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    25
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1STRINGDEDUPTHREAD_HPP
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    26
#define SHARE_VM_GC_IMPLEMENTATION_G1_G1STRINGDEDUPTHREAD_HPP
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    27
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    28
#include "gc_implementation/g1/g1StringDedupStat.hpp"
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    29
#include "gc_implementation/shared/concurrentGCThread.hpp"
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    30
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    31
//
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    32
// The deduplication thread is where the actual deduplication occurs. It waits for
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    33
// deduplication candidates to appear on the deduplication queue, removes them from
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    34
// the queue and tries to deduplicate them. It uses the deduplication hashtable to
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    35
// find identical, already existing, character arrays on the heap. The thread runs
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    36
// concurrently with the Java application but participates in safepoints to allow
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    37
// the GC to adjust and unlink oops from the deduplication queue and table.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    38
//
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    39
class G1StringDedupThread: public ConcurrentGCThread {
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    40
private:
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    41
  static G1StringDedupThread* _thread;
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    42
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    43
  G1StringDedupThread();
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    44
  ~G1StringDedupThread();
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    45
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    46
  void print(outputStream* st, const G1StringDedupStat& last_stat, const G1StringDedupStat& total_stat);
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    47
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    48
public:
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    49
  static void create();
24093
095cc0a63ed9 8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents: 23472
diff changeset
    50
  static void stop();
095cc0a63ed9 8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents: 23472
diff changeset
    51
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    52
  static G1StringDedupThread* thread();
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    53
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    54
  virtual void run();
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    55
  virtual void print_on(outputStream* st) const;
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    56
};
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    57
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    58
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1STRINGDEDUPTHREAD_HPP