hotspot/src/share/vm/memory/sharedHeap.cpp
author brutisso
Fri, 27 Mar 2015 09:28:47 +0100
changeset 29795 984c5c379c6a
parent 29693 fac175f7a466
child 29800 fa5f7a2bf717
permissions -rw-r--r--
8076076: Move SharedHeap::print_size_transition() into G1 code Reviewed-by: tschatzl, mgerdin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29464
02c245ad3ec9 8073545: Use shorter and more descriptive names for GC worker threads
david
parents: 28217
diff changeset
     2
 * Copyright (c) 2000, 2015, 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: 3908
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3908
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: 3908
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: 6759
diff changeset
    25
#include "precompiled.hpp"
24426
0a69c8cdfca9 8038654: Separate SymbolTable and StringTable code
gziemski
parents: 24092
diff changeset
    26
#include "classfile/stringTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    28
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    29
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    30
#include "memory/sharedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    31
#include "oops/oop.inline.hpp"
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    32
#include "runtime/atomic.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    33
#include "runtime/fprofiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    34
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    35
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    36
#include "utilities/workgroup.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
    38
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
    39
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
SharedHeap* SharedHeap::_sh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
SharedHeap::SharedHeap(CollectorPolicy* policy_) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  CollectedHeap(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _collector_policy(policy_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _strong_roots_parity(0),
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    46
  _workers(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  _sh = this;  // ch is static, should be set only once.
27898
813ad96387b3 8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents: 27251
diff changeset
    49
  if (UseConcMarkSweepGC || UseG1GC) {
29464
02c245ad3ec9 8073545: Use shorter and more descriptive names for GC worker threads
david
parents: 28217
diff changeset
    50
    _workers = new FlexibleWorkGang("GC Thread", ParallelGCThreads,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    51
                            /* are_GC_task_threads */true,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    52
                            /* are_ConcurrentGC_threads */false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    if (_workers == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      vm_exit_during_initialization("Failed necessary allocation.");
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    55
    } else {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    56
      _workers->initialize_workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    61
bool SharedHeap::heap_lock_held_for_gc() {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    62
  Thread* t = Thread::current();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    63
  return    Heap_lock->owned_by_self()
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    64
         || (   (t->is_GC_task_thread() ||  t->is_VM_thread())
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    65
             && _thread_holds_heap_lock_for_gc);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    66
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
    68
void SharedHeap::set_par_threads(uint t) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    69
  assert(t == 0 || !UseSerialGC, "Cannot have parallel threads");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _n_par_threads = t;
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    71
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    72
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
void SharedHeap::change_strong_roots_parity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // Also set the new collection parity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  _strong_roots_parity++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if (_strong_roots_parity == 3) _strong_roots_parity = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    83
SharedHeap::StrongRootsScope::StrongRootsScope(SharedHeap* heap, bool activate)
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29464
diff changeset
    84
  : MarkScope(activate), _sh(heap)
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
    85
{
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
    86
  if (_active) {
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    87
    _sh->change_strong_roots_parity();
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
    88
    // Zero the claimed high water mark in the StringTable
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
    89
    StringTable::clear_parallel_claimed_index();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
    90
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
    91
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
    92
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
void SharedHeap::set_barrier_set(BarrierSet* bs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  _barrier_set = bs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Cached barrier set for fast access in oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  oopDesc::set_bs(bs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
void SharedHeap::post_initialize() {
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 18996
diff changeset
   100
  CollectedHeap::post_initialize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  ref_processing_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11396
diff changeset
   104
void SharedHeap::ref_processing_init() {}