< prev index next > src/hotspot/share/gc/shenandoah/shenandoahHeapRegionCounters.hpp
Print this page
/*
* Copyright (c) 2016, 2019, Red Hat, Inc. All rights reserved.
+ * Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
#ifndef SHARE_GC_SHENANDOAH_SHENANDOAHHEAPREGIONCOUNTERS_HPP
#define SHARE_GC_SHENANDOAH_SHENANDOAHHEAPREGIONCOUNTERS_HPP
#include "memory/allocation.hpp"
+ #include "logging/logFileStreamOutput.hpp"
/**
* This provides the following in JVMStat:
*
* constants:
* - sun.gc.shenandoah.regions.max_regions maximum number of regions
* - sun.gc.shenandoah.regions.region_size size per region, in kilobytes
*
* variables:
* - sun.gc.shenandoah.regions.status current GC status:
- * - bit 0 set when marking in progress
- * - bit 1 set when evacuation in progress
- * - bit 2 set when update refs in progress
+ * | global | old | young | mode |
+ * | 0..1 | 2..3 | 4..5 | 6..7 |
+ *
+ * For each generation:
+ * 0 = idle, 1 = marking, 2 = evacuating, 3 = updating refs
+ *
+ * For mode:
+ * 0 = concurrent, 1 = degenerated, 2 = full
*
* two variable counters per region, with $max_regions (see above) counters:
* - sun.gc.shenandoah.regions.region.$i.data
* where $ is the region number from 0 <= i < $max_regions
*
* - bits 0-6 used memory in percent
* - bits 7-13 live memory in percent
* - bits 14-20 tlab allocated memory in percent
* - bits 21-27 gclab allocated memory in percent
* - bits 28-34 shared allocated memory in percent
- * - bits 35-41 <reserved>
+ * - bits 35-41 plab allocated memory in percent
* - bits 42-50 <reserved>
- * - bits 51-57 <reserved>
+ * - bits 51-55 age
+ * - bits 56-57 affiliation: 0 = free, young = 1, old = 2
* - bits 58-63 status
* - bits describe the state as recorded in ShenandoahHeapRegion
*/
class ShenandoahHeapRegionCounters : public CHeapObj<mtGC> {
private:
- static const jlong PERCENT_MASK = 0x7f;
- static const jlong STATUS_MASK = 0x3f;
+ static const jlong PERCENT_MASK = 0x7f;
+ static const jlong AGE_MASK = 0x1f;
+ static const jlong AFFILIATION_MASK = 0x03;
+ static const jlong STATUS_MASK = 0x3f;
- static const jlong USED_SHIFT = 0;
- static const jlong LIVE_SHIFT = 7;
- static const jlong TLAB_SHIFT = 14;
- static const jlong GCLAB_SHIFT = 21;
- static const jlong SHARED_SHIFT = 28;
+ static const jlong USED_SHIFT = 0;
+ static const jlong LIVE_SHIFT = 7;
+ static const jlong TLAB_SHIFT = 14;
+ static const jlong GCLAB_SHIFT = 21;
+ static const jlong SHARED_SHIFT = 28;
+ static const jlong PLAB_SHIFT = 35;
+ static const jlong AGE_SHIFT = 51;
+ static const jlong AFFILIATION_SHIFT = 56;
+ static const jlong STATUS_SHIFT = 58;
- static const jlong STATUS_SHIFT = 58;
+ static const jlong VERSION_NUMBER = 2;
char* _name_space;
PerfLongVariable** _regions_data;
PerfLongVariable* _timestamp;
PerfLongVariable* _status;
volatile jlong _last_sample_millis;
+ void write_snapshot(PerfLongVariable** regions,
+ PerfLongVariable* ts,
+ PerfLongVariable* status,
+ size_t num_regions,
+ size_t region_size, size_t protocolVersion);
+
public:
ShenandoahHeapRegionCounters();
~ShenandoahHeapRegionCounters();
void update();
+
+ private:
+ static jlong encode_heap_status(ShenandoahHeap* heap) ;
};
#endif // SHARE_GC_SHENANDOAH_SHENANDOAHHEAPREGIONCOUNTERS_HPP
< prev index next >