1 /*
   2  * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_G1_G1HEAPVERIFIER_HPP
  26 #define SHARE_VM_GC_G1_G1HEAPVERIFIER_HPP
  27 
  28 #include "gc/g1/heapRegionSet.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "memory/universe.hpp"
  31 
  32 class G1CollectedHeap;
  33 
  34 class G1HeapVerifier : public CHeapObj<mtGC> {
  35 private:
  36   G1CollectedHeap* _g1h;
  37   int _enabled_verification_types;
  38 
  39   // verify_region_sets() performs verification over the region
  40   // lists. It will be compiled in the product code to be used when
  41   // necessary (i.e., during heap verification).
  42   void verify_region_sets();
  43 
  44 public:
  45   enum G1VerifyType {
  46     G1VerifyYoung = 1,
  47     G1VerifyMixed = 2,
  48     G1VerifyRemark = 4,
  49     G1VerifyCleanup = 8,
  50     G1VerifyFull = 16,
  51     G1VerifyAll = -1
  52   };
  53 
  54   G1HeapVerifier(G1CollectedHeap* heap) : _g1h(heap), _enabled_verification_types(G1VerifyAll) { }
  55 
  56   void parse_verification_type(const char* type);
  57   void enable_verification_type(G1VerifyType type);
  58   bool should_verify(G1VerifyType type);
  59 
  60   // Perform verification.
  61 
  62   // vo == UsePrevMarking -> use "prev" marking information,
  63   // vo == UseNextMarking -> use "next" marking information
  64   // vo == UseFullMarking -> use "next" marking bitmap but no TAMS
  65   //
  66   // NOTE: Only the "prev" marking information is guaranteed to be
  67   // consistent most of the time, so most calls to this should use
  68   // vo == UsePrevMarking.
  69   // Currently, there is only one case where this is called with
  70   // vo == UseNextMarking, which is to verify the "next" marking
  71   // information at the end of remark.
  72   // Currently there is only one place where this is called with
  73   // vo == UseFullMarking, which is to verify the marking during a
  74   // full GC.
  75   void verify(VerifyOption vo);
  76 
  77   // verify_region_sets_optional() is planted in the code for
  78   // list verification in non-product builds (and it can be enabled in
  79   // product builds by defining HEAP_REGION_SET_FORCE_VERIFY to be 1).
  80 #if HEAP_REGION_SET_FORCE_VERIFY
  81   void verify_region_sets_optional() {
  82     verify_region_sets();
  83   }
  84 #else // HEAP_REGION_SET_FORCE_VERIFY
  85   void verify_region_sets_optional() { }
  86 #endif // HEAP_REGION_SET_FORCE_VERIFY
  87 
  88   void prepare_for_verify();
  89   double verify(G1VerifyType type, VerifyOption vo, const char* msg);
  90   void verify_before_gc(G1VerifyType type);
  91   void verify_after_gc(G1VerifyType type);
  92 
  93 #ifndef PRODUCT
  94   // Make sure that the given bitmap has no marked objects in the
  95   // range [from,limit). If it does, print an error message and return
  96   // false. Otherwise, just return true. bitmap_name should be "prev"
  97   // or "next".
  98   bool verify_no_bits_over_tams(const char* bitmap_name, const G1CMBitMap* const bitmap,
  99                                 HeapWord* from, HeapWord* limit);
 100 
 101   // Verify that the prev / next bitmap range [tams,end) for the given
 102   // region has no marks. Return true if all is well, false if errors
 103   // are detected.
 104   bool verify_bitmaps(const char* caller, HeapRegion* hr);
 105 #endif // PRODUCT
 106 
 107   // If G1VerifyBitmaps is set, verify that the marking bitmaps for
 108   // the given region do not have any spurious marks. If errors are
 109   // detected, print appropriate error messages and crash.
 110   void check_bitmaps(const char* caller, HeapRegion* hr) PRODUCT_RETURN;
 111 
 112   // If G1VerifyBitmaps is set, verify that the marking bitmaps do not
 113   // have any spurious marks. If errors are detected, print
 114   // appropriate error messages and crash.
 115   void check_bitmaps(const char* caller) PRODUCT_RETURN;
 116 
 117   // Do sanity check on the contents of the in-cset fast test table.
 118   bool check_cset_fast_test() PRODUCT_RETURN_( return true; );
 119 
 120   void verify_card_table_cleanup() PRODUCT_RETURN;
 121 
 122   void verify_not_dirty_region(HeapRegion* hr) PRODUCT_RETURN;
 123   void verify_dirty_region(HeapRegion* hr) PRODUCT_RETURN;
 124   void verify_dirty_young_regions() PRODUCT_RETURN;
 125 
 126   static void verify_archive_regions();
 127 };
 128 
 129 #endif // SHARE_VM_GC_G1_G1HEAPVERIFIER_HPP