hotspot/src/share/vm/gc/g1/g1OopClosures.cpp
author david
Fri, 05 Jun 2015 09:50:09 +0200
changeset 31330 77061bb01b18
parent 30876 44a71334fd94
child 32187 0891f3fa84fc
permissions -rw-r--r--
8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint Reviewed-by: drwhite, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
     2
 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     4
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     8
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    14
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    18
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    21
 * questions.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    22
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    23
 */
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    24
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    25
#include "precompiled.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    26
#include "gc/g1/g1CollectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    27
#include "gc/g1/g1OopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    28
#include "gc/g1/g1ParScanThreadState.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    29
#include "gc/g1/g1_specialized_oop_closures.hpp"
30150
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    30
#include "memory/iterator.inline.hpp"
30175
543725014c9d 8076457: Fix includes of inline.hpp in GC code
stefank
parents: 30150
diff changeset
    31
#include "utilities/stack.inline.hpp"
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    32
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    33
G1ParCopyHelper::G1ParCopyHelper(G1CollectedHeap* g1,  G1ParScanThreadState* par_scan_state) :
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    34
  G1ParClosureSuper(g1, par_scan_state), _scanned_klass(NULL),
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    35
  _cm(_g1->concurrent_mark()) {}
25482
b69656f26643 8035400: Move G1ParScanThreadState into its own files
tschatzl
parents: 22901
diff changeset
    36
25484
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    37
G1ParClosureSuper::G1ParClosureSuper(G1CollectedHeap* g1) :
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    38
  _g1(g1), _par_scan_state(NULL), _worker_id(UINT_MAX) { }
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    39
25482
b69656f26643 8035400: Move G1ParScanThreadState into its own files
tschatzl
parents: 22901
diff changeset
    40
G1ParClosureSuper::G1ParClosureSuper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) :
25484
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    41
  _g1(g1), _par_scan_state(NULL),
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    42
  _worker_id(UINT_MAX) {
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    43
  set_par_scan_thread_state(par_scan_state);
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    44
}
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    45
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    46
void G1ParClosureSuper::set_par_scan_thread_state(G1ParScanThreadState* par_scan_state) {
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    47
  assert(_par_scan_state == NULL, "_par_scan_state must only be set once");
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    48
  assert(par_scan_state != NULL, "Must set par_scan_state to non-NULL.");
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    49
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    50
  _par_scan_state = par_scan_state;
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    51
  _worker_id = par_scan_state->queue_num();
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    52
30876
44a71334fd94 8080876: Replace unnecessary MAX2(ParallelGCThreads, 1) calls with ParallelGCThreads
stefank
parents: 30764
diff changeset
    53
  assert(_worker_id < ParallelGCThreads,
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30876
diff changeset
    54
         err_msg("The given worker id %u must be less than the number of threads %u", _worker_id, ParallelGCThreads));
25484
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    55
}
30150
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    56
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    57
// Generate G1 specialized oop_oop_iterate functions.
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    58
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(ALL_KLASS_OOP_OOP_ITERATE_DEFN)