src/hotspot/share/gc/shared/markBitMap.cpp
author rkennke
Wed, 29 Aug 2018 20:15:09 +0200
changeset 51578 31b159f30fb2
child 52577 5b87d3fc1093
permissions -rw-r--r--
8180193: Make marking bitmap code available to other GCs Reviewed-by: shade, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
51578
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     1
/*
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     4
 *
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     8
 *
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    13
 * accompanied this code).
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    14
 *
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    18
 *
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    21
 * questions.
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    22
 *
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    23
 */
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    24
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    25
#include "precompiled.hpp"
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    26
#include "gc/shared/markBitMap.inline.hpp"
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    27
#include "memory/virtualspace.hpp"
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    28
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    29
void MarkBitMap::print_on_error(outputStream* st, const char* prefix) const {
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    30
  _bm.print_on_error(st, prefix);
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    31
}
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    32
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    33
size_t MarkBitMap::compute_size(size_t heap_size) {
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    34
  return ReservedSpace::allocation_align_size_up(heap_size / mark_distance());
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    35
}
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    36
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    37
size_t MarkBitMap::mark_distance() {
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    38
  return MinObjAlignmentInBytes * BitsPerByte;
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    39
}
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    40
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    41
void MarkBitMap::initialize(MemRegion heap, MemRegion storage) {
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    42
  _covered = heap;
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    43
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    44
  _bm = BitMapView((BitMap::bm_word_t*) storage.start(), _covered.word_size() >> _shifter);
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    45
}
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    46
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    47
void MarkBitMap::clear_range(MemRegion mr) {
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    48
  MemRegion intersection = mr.intersection(_covered);
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    49
  assert(!intersection.is_empty(),
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    50
         "Given range from " PTR_FORMAT " to " PTR_FORMAT " is completely outside the heap",
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    51
         p2i(mr.start()), p2i(mr.end()));
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    52
  // convert address range into offset range
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    53
  _bm.at_put_range(addr_to_offset(intersection.start()),
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    54
                   addr_to_offset(intersection.end()), false);
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    55
}
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    56
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    57
#ifdef ASSERT
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    58
void MarkBitMap::check_mark(HeapWord* addr) {
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    59
  assert(Universe::heap()->is_in_reserved(addr),
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    60
         "Trying to access bitmap " PTR_FORMAT " for address " PTR_FORMAT " not in the heap.",
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    61
         p2i(this), p2i(addr));
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    62
}
31b159f30fb2 8180193: Make marking bitmap code available to other GCs
rkennke
parents:
diff changeset
    63
#endif