src/hotspot/share/gc/g1/g1HeapVerifier.cpp
author tschatzl
Mon, 23 Oct 2017 11:46:12 +0200
changeset 47678 c84eeb55c55e
parent 47580 96392e113a0a
child 47885 5caa1d5f74c1
permissions -rw-r--r--
8184667: Clean up G1ConcurrentMark files Summary: Fix naming, formatting, access control, remove unused code. Reviewed-by: sjohanss, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     1
/*
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 39698
diff changeset
     2
 * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     4
 *
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     8
 *
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    13
 * accompanied this code).
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    14
 *
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    18
 *
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    21
 * questions.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    22
 *
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    23
 */
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    24
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    25
#include "precompiled.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    26
#include "gc/g1/concurrentMarkThread.hpp"
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 39698
diff changeset
    27
#include "gc/g1/g1Allocator.inline.hpp"
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    28
#include "gc/g1/g1CollectedHeap.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    29
#include "gc/g1/g1CollectedHeap.inline.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    30
#include "gc/g1/g1HeapVerifier.hpp"
37985
539c597ee0fa 8154154: Separate G1 specific policy code from the CollectorPolicy class hierarchy
mgerdin
parents: 37242
diff changeset
    31
#include "gc/g1/g1Policy.hpp"
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    32
#include "gc/g1/g1RemSet.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    33
#include "gc/g1/g1RootProcessor.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    34
#include "gc/g1/heapRegion.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    35
#include "gc/g1/heapRegion.inline.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    36
#include "gc/g1/heapRegionRemSet.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    37
#include "gc/g1/g1StringDedup.hpp"
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46611
diff changeset
    38
#include "logging/log.hpp"
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46611
diff changeset
    39
#include "logging/logStream.hpp"
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    40
#include "memory/resourceArea.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    41
#include "oops/oop.inline.hpp"
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    42
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    43
class VerifyRootsClosure: public OopClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    44
private:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    45
  G1CollectedHeap* _g1h;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    46
  VerifyOption     _vo;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    47
  bool             _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    48
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    49
  // _vo == UsePrevMarking -> use "prev" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    50
  // _vo == UseNextMarking -> use "next" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    51
  // _vo == UseMarkWord    -> use mark word from object header.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    52
  VerifyRootsClosure(VerifyOption vo) :
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    53
    _g1h(G1CollectedHeap::heap()),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    54
    _vo(vo),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    55
    _failures(false) { }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    56
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    57
  bool failures() { return _failures; }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    58
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    59
  template <class T> void do_oop_nv(T* p) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    60
    T heap_oop = oopDesc::load_heap_oop(p);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    61
    if (!oopDesc::is_null(heap_oop)) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    62
      oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    63
      if (_g1h->is_obj_dead_cond(obj, _vo)) {
37242
91e5f98fff6f 8152632: Rename LogHandle(...) to Log(...)
stefank
parents: 36090
diff changeset
    64
        Log(gc, verify) log;
47088
03cfedd40b53 8185624: G1HeapVerifier's VerifyRootsClosure prints important information on info log level
dbuck
parents: 46810
diff changeset
    65
        log.error("Root location " PTR_FORMAT " points to dead obj " PTR_FORMAT, p2i(p), p2i(obj));
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    66
        if (_vo == VerifyOption_G1UseMarkWord) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
    67
          log.error("  Mark word: " PTR_FORMAT, p2i(obj->mark()));
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    68
        }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    69
        ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46611
diff changeset
    70
        LogStream ls(log.error());
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46611
diff changeset
    71
        obj->print_on(&ls);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    72
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    73
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    74
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    75
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    76
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    77
  void do_oop(oop* p)       { do_oop_nv(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    78
  void do_oop(narrowOop* p) { do_oop_nv(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    79
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    80
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    81
class G1VerifyCodeRootOopClosure: public OopClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    82
  G1CollectedHeap* _g1h;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    83
  OopClosure* _root_cl;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    84
  nmethod* _nm;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    85
  VerifyOption _vo;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    86
  bool _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    87
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    88
  template <class T> void do_oop_work(T* p) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    89
    // First verify that this root is live
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    90
    _root_cl->do_oop(p);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    91
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    92
    if (!G1VerifyHeapRegionCodeRoots) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    93
      // We're not verifying the code roots attached to heap region.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    94
      return;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    95
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    96
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    97
    // Don't check the code roots during marking verification in a full GC
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    98
    if (_vo == VerifyOption_G1UseMarkWord) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
    99
      return;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   100
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   101
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   102
    // Now verify that the current nmethod (which contains p) is
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   103
    // in the code root list of the heap region containing the
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   104
    // object referenced by p.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   105
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   106
    T heap_oop = oopDesc::load_heap_oop(p);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   107
    if (!oopDesc::is_null(heap_oop)) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   108
      oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   109
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   110
      // Now fetch the region containing the object
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   111
      HeapRegion* hr = _g1h->heap_region_containing(obj);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   112
      HeapRegionRemSet* hrrs = hr->rem_set();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   113
      // Verify that the strong code root list for this region
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   114
      // contains the nmethod
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   115
      if (!hrrs->strong_code_roots_list_contains(_nm)) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   116
        log_error(gc, verify)("Code root location " PTR_FORMAT " "
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   117
                              "from nmethod " PTR_FORMAT " not in strong "
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   118
                              "code roots for region [" PTR_FORMAT "," PTR_FORMAT ")",
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   119
                              p2i(p), p2i(_nm), p2i(hr->bottom()), p2i(hr->end()));
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   120
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   121
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   122
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   123
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   124
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   125
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   126
  G1VerifyCodeRootOopClosure(G1CollectedHeap* g1h, OopClosure* root_cl, VerifyOption vo):
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   127
    _g1h(g1h), _root_cl(root_cl), _vo(vo), _nm(NULL), _failures(false) {}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   128
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   129
  void do_oop(oop* p) { do_oop_work(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   130
  void do_oop(narrowOop* p) { do_oop_work(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   131
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   132
  void set_nmethod(nmethod* nm) { _nm = nm; }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   133
  bool failures() { return _failures; }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   134
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   135
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   136
class G1VerifyCodeRootBlobClosure: public CodeBlobClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   137
  G1VerifyCodeRootOopClosure* _oop_cl;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   138
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   139
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   140
  G1VerifyCodeRootBlobClosure(G1VerifyCodeRootOopClosure* oop_cl):
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   141
    _oop_cl(oop_cl) {}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   142
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   143
  void do_code_blob(CodeBlob* cb) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   144
    nmethod* nm = cb->as_nmethod_or_null();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   145
    if (nm != NULL) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   146
      _oop_cl->set_nmethod(nm);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   147
      nm->oops_do(_oop_cl);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   148
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   149
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   150
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   151
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   152
class YoungRefCounterClosure : public OopClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   153
  G1CollectedHeap* _g1h;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   154
  int              _count;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   155
 public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   156
  YoungRefCounterClosure(G1CollectedHeap* g1h) : _g1h(g1h), _count(0) {}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   157
  void do_oop(oop* p)       { if (_g1h->is_in_young(*p)) { _count++; } }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   158
  void do_oop(narrowOop* p) { ShouldNotReachHere(); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   159
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   160
  int count() { return _count; }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   161
  void reset_count() { _count = 0; };
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   162
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   163
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   164
class VerifyCLDClosure: public CLDClosure {
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   165
  YoungRefCounterClosure _young_ref_counter_closure;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   166
  OopClosure *_oop_closure;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   167
 public:
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   168
  VerifyCLDClosure(G1CollectedHeap* g1h, OopClosure* cl) : _young_ref_counter_closure(g1h), _oop_closure(cl) {}
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   169
  void do_cld(ClassLoaderData* cld) {
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   170
    cld->oops_do(_oop_closure, false);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   171
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   172
    _young_ref_counter_closure.reset_count();
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   173
    cld->oops_do(&_young_ref_counter_closure, false);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   174
    if (_young_ref_counter_closure.count() > 0) {
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   175
      guarantee(cld->has_modified_oops(), "CLD " PTR_FORMAT ", has young %d refs but is not dirty.", p2i(cld), _young_ref_counter_closure.count());
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   176
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   177
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   178
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   179
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   180
class VerifyLivenessOopClosure: public OopClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   181
  G1CollectedHeap* _g1h;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   182
  VerifyOption _vo;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   183
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   184
  VerifyLivenessOopClosure(G1CollectedHeap* g1h, VerifyOption vo):
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   185
    _g1h(g1h), _vo(vo)
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   186
  { }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   187
  void do_oop(narrowOop *p) { do_oop_work(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   188
  void do_oop(      oop *p) { do_oop_work(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   189
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   190
  template <class T> void do_oop_work(T *p) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   191
    oop obj = oopDesc::load_decode_heap_oop(p);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   192
    guarantee(obj == NULL || !_g1h->is_obj_dead_cond(obj, _vo),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   193
              "Dead object referenced by a not dead object");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   194
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   195
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   196
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   197
class VerifyObjsInRegionClosure: public ObjectClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   198
private:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   199
  G1CollectedHeap* _g1h;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   200
  size_t _live_bytes;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   201
  HeapRegion *_hr;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   202
  VerifyOption _vo;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   203
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   204
  // _vo == UsePrevMarking -> use "prev" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   205
  // _vo == UseNextMarking -> use "next" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   206
  // _vo == UseMarkWord    -> use mark word from object header.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   207
  VerifyObjsInRegionClosure(HeapRegion *hr, VerifyOption vo)
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   208
    : _live_bytes(0), _hr(hr), _vo(vo) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   209
    _g1h = G1CollectedHeap::heap();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   210
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   211
  void do_object(oop o) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   212
    VerifyLivenessOopClosure isLive(_g1h, _vo);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   213
    assert(o != NULL, "Huh?");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   214
    if (!_g1h->is_obj_dead_cond(o, _vo)) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   215
      // If the object is alive according to the mark word,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   216
      // then verify that the marking information agrees.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   217
      // Note we can't verify the contra-positive of the
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   218
      // above: if the object is dead (according to the mark
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   219
      // word), it may not be marked, or may have been marked
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   220
      // but has since became dead, or may have been allocated
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   221
      // since the last marking.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   222
      if (_vo == VerifyOption_G1UseMarkWord) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   223
        guarantee(!_g1h->is_obj_dead(o), "mark word and concurrent mark mismatch");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   224
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   225
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   226
      o->oop_iterate_no_header(&isLive);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   227
      if (!_hr->obj_allocated_since_prev_marking(o)) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   228
        size_t obj_size = o->size();    // Make sure we don't overflow
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   229
        _live_bytes += (obj_size * HeapWordSize);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   230
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   231
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   232
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   233
  size_t live_bytes() { return _live_bytes; }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   234
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   235
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   236
class VerifyArchiveOopClosure: public OopClosure {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   237
  HeapRegion* _hr;
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   238
public:
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   239
  VerifyArchiveOopClosure(HeapRegion *hr)
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   240
    : _hr(hr) { }
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   241
  void do_oop(narrowOop *p) { do_oop_work(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   242
  void do_oop(      oop *p) { do_oop_work(p); }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   243
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   244
  template <class T> void do_oop_work(T *p) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   245
    oop obj = oopDesc::load_decode_heap_oop(p);
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   246
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   247
    if (_hr->is_open_archive()) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   248
      guarantee(obj == NULL || G1ArchiveAllocator::is_archive_object(obj),
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   249
                "Archive object at " PTR_FORMAT " references a non-archive object at " PTR_FORMAT,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   250
                p2i(p), p2i(obj));
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   251
    } else {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   252
      assert(_hr->is_closed_archive(), "should be closed archive region");
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   253
      guarantee(obj == NULL || G1ArchiveAllocator::is_closed_archive_object(obj),
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   254
                "Archive object at " PTR_FORMAT " references a non-archive object at " PTR_FORMAT,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   255
                p2i(p), p2i(obj));
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   256
    }
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   257
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   258
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   259
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   260
class VerifyObjectInArchiveRegionClosure: public ObjectClosure {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   261
  HeapRegion* _hr;
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   262
public:
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   263
  VerifyObjectInArchiveRegionClosure(HeapRegion *hr, bool verbose)
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   264
    : _hr(hr) { }
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   265
  // Verify that all object pointers are to archive regions.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   266
  void do_object(oop o) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   267
    VerifyArchiveOopClosure checkOop(_hr);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   268
    assert(o != NULL, "Should not be here for NULL oops");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   269
    o->oop_iterate_no_header(&checkOop);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   270
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   271
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   272
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   273
// Should be only used at CDS dump time
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   274
class VerifyArchivePointerRegionClosure: public HeapRegionClosure {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   275
private:
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   276
  G1CollectedHeap* _g1h;
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   277
public:
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   278
  VerifyArchivePointerRegionClosure(G1CollectedHeap* g1h) { }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   279
  virtual bool doHeapRegion(HeapRegion* r) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   280
   if (r->is_archive()) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   281
      VerifyObjectInArchiveRegionClosure verify_oop_pointers(r, false);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   282
      r->object_iterate(&verify_oop_pointers);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   283
    }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   284
    return false;
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   285
  }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   286
};
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   287
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   288
void G1HeapVerifier::verify_archive_regions() {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   289
  G1CollectedHeap*  g1h = G1CollectedHeap::heap();
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   290
  VerifyArchivePointerRegionClosure cl(NULL);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   291
  g1h->heap_region_iterate(&cl);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   292
}
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   293
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   294
class VerifyRegionClosure: public HeapRegionClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   295
private:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   296
  bool             _par;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   297
  VerifyOption     _vo;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   298
  bool             _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   299
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   300
  // _vo == UsePrevMarking -> use "prev" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   301
  // _vo == UseNextMarking -> use "next" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   302
  // _vo == UseMarkWord    -> use mark word from object header.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   303
  VerifyRegionClosure(bool par, VerifyOption vo)
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   304
    : _par(par),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   305
      _vo(vo),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   306
      _failures(false) {}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   307
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   308
  bool failures() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   309
    return _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   310
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   311
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   312
  bool doHeapRegion(HeapRegion* r) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   313
    // For archive regions, verify there are no heap pointers to
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   314
    // non-pinned regions. For all others, verify liveness info.
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   315
    if (r->is_closed_archive()) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   316
      VerifyObjectInArchiveRegionClosure verify_oop_pointers(r, false);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   317
      r->object_iterate(&verify_oop_pointers);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   318
      return true;
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   319
    } else if (r->is_open_archive()) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   320
      VerifyObjsInRegionClosure verify_open_archive_oop(r, _vo);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   321
      r->object_iterate(&verify_open_archive_oop);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   322
      return true;
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46750
diff changeset
   323
    } else if (!r->is_continues_humongous()) {
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   324
      bool failures = false;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   325
      r->verify(_vo, &failures);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   326
      if (failures) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   327
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   328
      } else if (!r->is_starts_humongous()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   329
        VerifyObjsInRegionClosure not_dead_yet_cl(r, _vo);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   330
        r->object_iterate(&not_dead_yet_cl);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   331
        if (_vo != VerifyOption_G1UseNextMarking) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   332
          if (r->max_live_bytes() < not_dead_yet_cl.live_bytes()) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   333
            log_error(gc, verify)("[" PTR_FORMAT "," PTR_FORMAT "] max_live_bytes " SIZE_FORMAT " < calculated " SIZE_FORMAT,
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   334
                                  p2i(r->bottom()), p2i(r->end()), r->max_live_bytes(), not_dead_yet_cl.live_bytes());
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   335
            _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   336
          }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   337
        } else {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   338
          // When vo == UseNextMarking we cannot currently do a sanity
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   339
          // check on the live bytes as the calculation has not been
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   340
          // finalized yet.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   341
        }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   342
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   343
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   344
    return false; // stop the region iteration if we hit a failure
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   345
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   346
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   347
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   348
// This is the task used for parallel verification of the heap regions
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   349
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   350
class G1ParVerifyTask: public AbstractGangTask {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   351
private:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   352
  G1CollectedHeap*  _g1h;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   353
  VerifyOption      _vo;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   354
  bool              _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   355
  HeapRegionClaimer _hrclaimer;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   356
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   357
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   358
  // _vo == UsePrevMarking -> use "prev" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   359
  // _vo == UseNextMarking -> use "next" marking information,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   360
  // _vo == UseMarkWord    -> use mark word from object header.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   361
  G1ParVerifyTask(G1CollectedHeap* g1h, VerifyOption vo) :
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   362
      AbstractGangTask("Parallel verify task"),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   363
      _g1h(g1h),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   364
      _vo(vo),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   365
      _failures(false),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   366
      _hrclaimer(g1h->workers()->active_workers()) {}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   367
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   368
  bool failures() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   369
    return _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   370
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   371
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   372
  void work(uint worker_id) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   373
    HandleMark hm;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   374
    VerifyRegionClosure blk(true, _vo);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   375
    _g1h->heap_region_par_iterate(&blk, worker_id, &_hrclaimer);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   376
    if (blk.failures()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   377
      _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   378
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   379
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   380
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   381
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   382
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   383
void G1HeapVerifier::verify(VerifyOption vo) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   384
  if (!SafepointSynchronize::is_at_safepoint()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   385
    log_info(gc, verify)("Skipping verification. Not at safepoint.");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   386
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   387
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   388
  assert(Thread::current()->is_VM_thread(),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   389
         "Expected to be executed serially by the VM thread at this point");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   390
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   391
  log_debug(gc, verify)("Roots");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   392
  VerifyRootsClosure rootsCl(vo);
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   393
  VerifyCLDClosure cldCl(_g1h, &rootsCl);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   394
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   395
  // We apply the relevant closures to all the oops in the
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   396
  // system dictionary, class loader data graph, the string table
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   397
  // and the nmethods in the code cache.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   398
  G1VerifyCodeRootOopClosure codeRootsCl(_g1h, &rootsCl, vo);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   399
  G1VerifyCodeRootBlobClosure blobsCl(&codeRootsCl);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   400
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   401
  {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   402
    G1RootProcessor root_processor(_g1h, 1);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   403
    root_processor.process_all_roots(&rootsCl,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   404
                                     &cldCl,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   405
                                     &blobsCl);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   406
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   407
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   408
  bool failures = rootsCl.failures() || codeRootsCl.failures();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   409
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   410
  if (vo != VerifyOption_G1UseMarkWord) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   411
    // If we're verifying during a full GC then the region sets
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   412
    // will have been torn down at the start of the GC. Therefore
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   413
    // verifying the region sets will fail. So we only verify
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   414
    // the region sets when not in a full GC.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   415
    log_debug(gc, verify)("HeapRegionSets");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   416
    verify_region_sets();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   417
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   418
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   419
  log_debug(gc, verify)("HeapRegions");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   420
  if (GCParallelVerificationEnabled && ParallelGCThreads > 1) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   421
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   422
    G1ParVerifyTask task(_g1h, vo);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   423
    _g1h->workers()->run_task(&task);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   424
    if (task.failures()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   425
      failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   426
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   427
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   428
  } else {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   429
    VerifyRegionClosure blk(false, vo);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   430
    _g1h->heap_region_iterate(&blk);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   431
    if (blk.failures()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   432
      failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   433
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   434
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   435
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   436
  if (G1StringDedup::is_enabled()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   437
    log_debug(gc, verify)("StrDedup");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   438
    G1StringDedup::verify();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   439
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   440
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   441
  if (failures) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   442
    log_error(gc, verify)("Heap after failed verification:");
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   443
    // It helps to have the per-region information in the output to
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   444
    // help us track down what went wrong. This is why we call
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   445
    // print_extended_on() instead of print_on().
37242
91e5f98fff6f 8152632: Rename LogHandle(...) to Log(...)
stefank
parents: 36090
diff changeset
   446
    Log(gc, verify) log;
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   447
    ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46611
diff changeset
   448
    LogStream ls(log.error());
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46611
diff changeset
   449
    _g1h->print_extended_on(&ls);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   450
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   451
  guarantee(!failures, "there should not have been any failures");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   452
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   453
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   454
// Heap region set verification
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   455
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   456
class VerifyRegionListsClosure : public HeapRegionClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   457
private:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   458
  HeapRegionSet*   _old_set;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   459
  HeapRegionSet*   _humongous_set;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   460
  HeapRegionManager*   _hrm;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   461
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   462
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   463
  uint _old_count;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   464
  uint _humongous_count;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   465
  uint _free_count;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   466
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   467
  VerifyRegionListsClosure(HeapRegionSet* old_set,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   468
                           HeapRegionSet* humongous_set,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   469
                           HeapRegionManager* hrm) :
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   470
    _old_set(old_set), _humongous_set(humongous_set), _hrm(hrm),
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   471
    _old_count(), _humongous_count(), _free_count(){ }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   472
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   473
  bool doHeapRegion(HeapRegion* hr) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   474
    if (hr->is_young()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   475
      // TODO
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   476
    } else if (hr->is_humongous()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   477
      assert(hr->containing_set() == _humongous_set, "Heap region %u is humongous but not in humongous set.", hr->hrm_index());
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   478
      _humongous_count++;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   479
    } else if (hr->is_empty()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   480
      assert(_hrm->is_free(hr), "Heap region %u is empty but not on the free list.", hr->hrm_index());
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   481
      _free_count++;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   482
    } else if (hr->is_old()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   483
      assert(hr->containing_set() == _old_set, "Heap region %u is old but not in the old set.", hr->hrm_index());
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   484
      _old_count++;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   485
    } else {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   486
      // There are no other valid region types. Check for one invalid
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   487
      // one we can identify: pinned without old or humongous set.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   488
      assert(!hr->is_pinned(), "Heap region %u is pinned but not old (archive) or humongous.", hr->hrm_index());
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   489
      ShouldNotReachHere();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   490
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   491
    return false;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   492
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   493
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   494
  void verify_counts(HeapRegionSet* old_set, HeapRegionSet* humongous_set, HeapRegionManager* free_list) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   495
    guarantee(old_set->length() == _old_count, "Old set count mismatch. Expected %u, actual %u.", old_set->length(), _old_count);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   496
    guarantee(humongous_set->length() == _humongous_count, "Hum set count mismatch. Expected %u, actual %u.", humongous_set->length(), _humongous_count);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   497
    guarantee(free_list->num_free_regions() == _free_count, "Free list count mismatch. Expected %u, actual %u.", free_list->num_free_regions(), _free_count);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   498
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   499
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   500
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   501
void G1HeapVerifier::verify_region_sets() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   502
  assert_heap_locked_or_at_safepoint(true /* should_be_vm_thread */);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   503
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   504
  // First, check the explicit lists.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   505
  _g1h->_hrm.verify();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   506
  {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   507
    // Given that a concurrent operation might be adding regions to
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   508
    // the secondary free list we have to take the lock before
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   509
    // verifying it.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   510
    MutexLockerEx x(SecondaryFreeList_lock, Mutex::_no_safepoint_check_flag);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   511
    _g1h->_secondary_free_list.verify_list();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   512
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   513
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   514
  // If a concurrent region freeing operation is in progress it will
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   515
  // be difficult to correctly attributed any free regions we come
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   516
  // across to the correct free list given that they might belong to
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   517
  // one of several (free_list, secondary_free_list, any local lists,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   518
  // etc.). So, if that's the case we will skip the rest of the
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   519
  // verification operation. Alternatively, waiting for the concurrent
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   520
  // operation to complete will have a non-trivial effect on the GC's
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   521
  // operation (no concurrent operation will last longer than the
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   522
  // interval between two calls to verification) and it might hide
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   523
  // any issues that we would like to catch during testing.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   524
  if (_g1h->free_regions_coming()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   525
    return;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   526
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   527
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   528
  // Make sure we append the secondary_free_list on the free_list so
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   529
  // that all free regions we will come across can be safely
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   530
  // attributed to the free_list.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   531
  _g1h->append_secondary_free_list_if_not_empty_with_lock();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   532
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   533
  // Finally, make sure that the region accounting in the lists is
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   534
  // consistent with what we see in the heap.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   535
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   536
  VerifyRegionListsClosure cl(&_g1h->_old_set, &_g1h->_humongous_set, &_g1h->_hrm);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   537
  _g1h->heap_region_iterate(&cl);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   538
  cl.verify_counts(&_g1h->_old_set, &_g1h->_humongous_set, &_g1h->_hrm);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   539
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   540
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   541
void G1HeapVerifier::prepare_for_verify() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   542
  if (SafepointSynchronize::is_at_safepoint() || ! UseTLAB) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   543
    _g1h->ensure_parsability(false);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   544
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   545
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   546
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   547
double G1HeapVerifier::verify(bool guard, const char* msg) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   548
  double verify_time_ms = 0.0;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   549
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   550
  if (guard && _g1h->total_collections() >= VerifyGCStartAt) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   551
    double verify_start = os::elapsedTime();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   552
    HandleMark hm;  // Discard invalid handles created during verification
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   553
    prepare_for_verify();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   554
    Universe::verify(VerifyOption_G1UsePrevMarking, msg);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   555
    verify_time_ms = (os::elapsedTime() - verify_start) * 1000;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   556
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   557
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   558
  return verify_time_ms;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   559
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   560
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   561
void G1HeapVerifier::verify_before_gc() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   562
  double verify_time_ms = verify(VerifyBeforeGC, "Before GC");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   563
  _g1h->g1_policy()->phase_times()->record_verify_before_time_ms(verify_time_ms);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   564
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   565
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   566
void G1HeapVerifier::verify_after_gc() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   567
  double verify_time_ms = verify(VerifyAfterGC, "After GC");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   568
  _g1h->g1_policy()->phase_times()->record_verify_after_time_ms(verify_time_ms);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   569
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   570
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   571
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   572
#ifndef PRODUCT
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   573
class G1VerifyCardTableCleanup: public HeapRegionClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   574
  G1HeapVerifier* _verifier;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   575
  G1SATBCardTableModRefBS* _ct_bs;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   576
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   577
  G1VerifyCardTableCleanup(G1HeapVerifier* verifier, G1SATBCardTableModRefBS* ct_bs)
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   578
    : _verifier(verifier), _ct_bs(ct_bs) { }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   579
  virtual bool doHeapRegion(HeapRegion* r) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   580
    if (r->is_survivor()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   581
      _verifier->verify_dirty_region(r);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   582
    } else {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   583
      _verifier->verify_not_dirty_region(r);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   584
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   585
    return false;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   586
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   587
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   588
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   589
void G1HeapVerifier::verify_card_table_cleanup() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   590
  if (G1VerifyCTCleanup || VerifyAfterGC) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   591
    G1VerifyCardTableCleanup cleanup_verifier(this, _g1h->g1_barrier_set());
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   592
    _g1h->heap_region_iterate(&cleanup_verifier);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   593
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   594
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   595
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   596
void G1HeapVerifier::verify_not_dirty_region(HeapRegion* hr) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   597
  // All of the region should be clean.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   598
  G1SATBCardTableModRefBS* ct_bs = _g1h->g1_barrier_set();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   599
  MemRegion mr(hr->bottom(), hr->end());
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   600
  ct_bs->verify_not_dirty_region(mr);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   601
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   602
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   603
void G1HeapVerifier::verify_dirty_region(HeapRegion* hr) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   604
  // We cannot guarantee that [bottom(),end()] is dirty.  Threads
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   605
  // dirty allocated blocks as they allocate them. The thread that
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   606
  // retires each region and replaces it with a new one will do a
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   607
  // maximal allocation to fill in [pre_dummy_top(),end()] but will
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   608
  // not dirty that area (one less thing to have to do while holding
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   609
  // a lock). So we can only verify that [bottom(),pre_dummy_top()]
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   610
  // is dirty.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   611
  G1SATBCardTableModRefBS* ct_bs = _g1h->g1_barrier_set();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   612
  MemRegion mr(hr->bottom(), hr->pre_dummy_top());
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   613
  if (hr->is_young()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   614
    ct_bs->verify_g1_young_region(mr);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   615
  } else {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   616
    ct_bs->verify_dirty_region(mr);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   617
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   618
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   619
39698
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   620
class G1VerifyDirtyYoungListClosure : public HeapRegionClosure {
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   621
private:
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   622
  G1HeapVerifier* _verifier;
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   623
public:
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   624
  G1VerifyDirtyYoungListClosure(G1HeapVerifier* verifier) : HeapRegionClosure(), _verifier(verifier) { }
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   625
  virtual bool doHeapRegion(HeapRegion* r) {
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   626
    _verifier->verify_dirty_region(r);
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   627
    return false;
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   628
  }
39698
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   629
};
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   630
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   631
void G1HeapVerifier::verify_dirty_young_regions() {
39698
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   632
  G1VerifyDirtyYoungListClosure cl(this);
4016de4e596b 8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents: 38186
diff changeset
   633
  _g1h->collection_set()->iterate(&cl);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   634
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   635
46750
bcab0128a16f 8184346: Clean up G1CMBitmap
tschatzl
parents: 46701
diff changeset
   636
bool G1HeapVerifier::verify_no_bits_over_tams(const char* bitmap_name, const G1CMBitMap* const bitmap,
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   637
                                               HeapWord* tams, HeapWord* end) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   638
  guarantee(tams <= end,
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   639
            "tams: " PTR_FORMAT " end: " PTR_FORMAT, p2i(tams), p2i(end));
46750
bcab0128a16f 8184346: Clean up G1CMBitmap
tschatzl
parents: 46701
diff changeset
   640
  HeapWord* result = bitmap->get_next_marked_addr(tams, end);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   641
  if (result < end) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   642
    log_error(gc, verify)("## wrong marked address on %s bitmap: " PTR_FORMAT, bitmap_name, p2i(result));
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   643
    log_error(gc, verify)("## %s tams: " PTR_FORMAT " end: " PTR_FORMAT, bitmap_name, p2i(tams), p2i(end));
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   644
    return false;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   645
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   646
  return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   647
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   648
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   649
bool G1HeapVerifier::verify_bitmaps(const char* caller, HeapRegion* hr) {
47678
c84eeb55c55e 8184667: Clean up G1ConcurrentMark files
tschatzl
parents: 47580
diff changeset
   650
  const G1CMBitMap* const prev_bitmap = _g1h->concurrent_mark()->prev_mark_bitmap();
c84eeb55c55e 8184667: Clean up G1ConcurrentMark files
tschatzl
parents: 47580
diff changeset
   651
  const G1CMBitMap* const next_bitmap = _g1h->concurrent_mark()->next_mark_bitmap();
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   652
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   653
  HeapWord* ptams  = hr->prev_top_at_mark_start();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   654
  HeapWord* ntams  = hr->next_top_at_mark_start();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   655
  HeapWord* end    = hr->end();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   656
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   657
  bool res_p = verify_no_bits_over_tams("prev", prev_bitmap, ptams, end);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   658
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   659
  bool res_n = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   660
  // We reset mark_in_progress() before we reset _cmThread->in_progress() and in this window
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   661
  // we do the clearing of the next bitmap concurrently. Thus, we can not verify the bitmap
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   662
  // if we happen to be in that state.
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   663
  if (_g1h->collector_state()->mark_in_progress() || !_g1h->_cmThread->in_progress()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   664
    res_n = verify_no_bits_over_tams("next", next_bitmap, ntams, end);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   665
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   666
  if (!res_p || !res_n) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   667
    log_error(gc, verify)("#### Bitmap verification failed for " HR_FORMAT, HR_FORMAT_PARAMS(hr));
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   668
    log_error(gc, verify)("#### Caller: %s", caller);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   669
    return false;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   670
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   671
  return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   672
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   673
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   674
void G1HeapVerifier::check_bitmaps(const char* caller, HeapRegion* hr) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   675
  if (!G1VerifyBitmaps) return;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   676
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   677
  guarantee(verify_bitmaps(caller, hr), "bitmap verification");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   678
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   679
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   680
class G1VerifyBitmapClosure : public HeapRegionClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   681
private:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   682
  const char* _caller;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   683
  G1HeapVerifier* _verifier;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   684
  bool _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   685
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   686
public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   687
  G1VerifyBitmapClosure(const char* caller, G1HeapVerifier* verifier) :
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   688
    _caller(caller), _verifier(verifier), _failures(false) { }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   689
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   690
  bool failures() { return _failures; }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   691
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   692
  virtual bool doHeapRegion(HeapRegion* hr) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   693
    bool result = _verifier->verify_bitmaps(_caller, hr);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   694
    if (!result) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   695
      _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   696
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   697
    return false;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   698
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   699
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   700
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   701
void G1HeapVerifier::check_bitmaps(const char* caller) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   702
  if (!G1VerifyBitmaps) return;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   703
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   704
  G1VerifyBitmapClosure cl(caller, this);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   705
  _g1h->heap_region_iterate(&cl);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   706
  guarantee(!cl.failures(), "bitmap verification");
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   707
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   708
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   709
class G1CheckCSetFastTableClosure : public HeapRegionClosure {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   710
 private:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   711
  bool _failures;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   712
 public:
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   713
  G1CheckCSetFastTableClosure() : HeapRegionClosure(), _failures(false) { }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   714
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   715
  virtual bool doHeapRegion(HeapRegion* hr) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   716
    uint i = hr->hrm_index();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   717
    InCSetState cset_state = (InCSetState) G1CollectedHeap::heap()->_in_cset_fast_test.get_by_index(i);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   718
    if (hr->is_humongous()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   719
      if (hr->in_collection_set()) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   720
        log_error(gc, verify)("## humongous region %u in CSet", i);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   721
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   722
        return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   723
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   724
      if (cset_state.is_in_cset()) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   725
        log_error(gc, verify)("## inconsistent cset state " CSETSTATE_FORMAT " for humongous region %u", cset_state.value(), i);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   726
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   727
        return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   728
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   729
      if (hr->is_continues_humongous() && cset_state.is_humongous()) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   730
        log_error(gc, verify)("## inconsistent cset state " CSETSTATE_FORMAT " for continues humongous region %u", cset_state.value(), i);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   731
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   732
        return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   733
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   734
    } else {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   735
      if (cset_state.is_humongous()) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   736
        log_error(gc, verify)("## inconsistent cset state " CSETSTATE_FORMAT " for non-humongous region %u", cset_state.value(), i);
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   737
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   738
        return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   739
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   740
      if (hr->in_collection_set() != cset_state.is_in_cset()) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   741
        log_error(gc, verify)("## in CSet %d / cset state " CSETSTATE_FORMAT " inconsistency for region %u",
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   742
                             hr->in_collection_set(), cset_state.value(), i);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   743
        _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   744
        return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   745
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   746
      if (cset_state.is_in_cset()) {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   747
        if (hr->is_young() != (cset_state.is_young())) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   748
          log_error(gc, verify)("## is_young %d / cset state " CSETSTATE_FORMAT " inconsistency for region %u",
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   749
                               hr->is_young(), cset_state.value(), i);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   750
          _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   751
          return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   752
        }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   753
        if (hr->is_old() != (cset_state.is_old())) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35943
diff changeset
   754
          log_error(gc, verify)("## is_old %d / cset state " CSETSTATE_FORMAT " inconsistency for region %u",
35851
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   755
                               hr->is_old(), cset_state.value(), i);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   756
          _failures = true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   757
          return true;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   758
        }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   759
      }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   760
    }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   761
    return false;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   762
  }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   763
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   764
  bool failures() const { return _failures; }
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   765
};
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   766
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   767
bool G1HeapVerifier::check_cset_fast_test() {
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   768
  G1CheckCSetFastTableClosure cl;
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   769
  _g1h->_hrm.iterate(&cl);
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   770
  return !cl.failures();
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   771
}
5451ff646f8e 8147814: Move verification code out of g1collectedheap
david
parents:
diff changeset
   772
#endif // PRODUCT