hotspot/src/share/vm/gc_implementation/g1/g1OopClosures.cpp
author stefank
Thu, 02 Apr 2015 10:04:27 +0200
changeset 30150 d9c940aa42ef
parent 25484 2cd3aff61672
child 30175 543725014c9d
permissions -rw-r--r--
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution Reviewed-by: brutisso, coleenp, kbarrett, sjohanss
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
/*
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
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"
30150
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    26
#include "gc_implementation/g1/g1_specialized_oop_closures.hpp"
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    27
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    28
#include "gc_implementation/g1/g1OopClosures.inline.hpp"
25484
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    29
#include "gc_implementation/g1/g1ParScanThreadState.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"
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    31
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    32
G1ParCopyHelper::G1ParCopyHelper(G1CollectedHeap* g1,  G1ParScanThreadState* par_scan_state) :
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    33
  G1ParClosureSuper(g1, par_scan_state), _scanned_klass(NULL),
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    34
  _cm(_g1->concurrent_mark()) {}
25482
b69656f26643 8035400: Move G1ParScanThreadState into its own files
tschatzl
parents: 22901
diff changeset
    35
25484
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    36
G1ParClosureSuper::G1ParClosureSuper(G1CollectedHeap* g1) :
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    37
  _g1(g1), _par_scan_state(NULL), _worker_id(UINT_MAX) { }
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    38
25482
b69656f26643 8035400: Move G1ParScanThreadState into its own files
tschatzl
parents: 22901
diff changeset
    39
G1ParClosureSuper::G1ParClosureSuper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) :
25484
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    40
  _g1(g1), _par_scan_state(NULL),
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    41
  _worker_id(UINT_MAX) {
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    42
  set_par_scan_thread_state(par_scan_state);
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    43
}
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
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
    46
  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
    47
  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
    48
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    49
  _par_scan_state = par_scan_state;
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    50
  _worker_id = par_scan_state->queue_num();
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    51
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    52
  assert(_worker_id < MAX2((uint)ParallelGCThreads, 1u),
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    53
         err_msg("The given worker id %u must be less than the number of threads %u", _worker_id, MAX2((uint)ParallelGCThreads, 1u)));
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    54
}
30150
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    55
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    56
// 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
    57
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(ALL_KLASS_OOP_OOP_ITERATE_DEFN)