author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 48168 | cb5d2d4453d0 |
child 51497 | ec014e5694ec |
permissions | -rw-r--r-- |
46828 | 1 |
/* |
2 |
* Copyright (c) 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_G1FULLGCSCOPE_HPP |
|
26 |
#define SHARE_VM_GC_G1_G1FULLGCSCOPE_HPP |
|
27 |
||
28 |
#include "gc/g1/g1CollectedHeap.hpp" |
|
29 |
#include "gc/g1/g1HeapTransition.hpp" |
|
30 |
#include "gc/shared/collectorCounters.hpp" |
|
31 |
#include "gc/shared/gcId.hpp" |
|
32 |
#include "gc/shared/gcTrace.hpp" |
|
33 |
#include "gc/shared/gcTraceTime.hpp" |
|
34 |
#include "gc/shared/gcTimer.hpp" |
|
35 |
#include "gc/shared/isGCActiveMark.hpp" |
|
36 |
#include "gc/shared/vmGCOperations.hpp" |
|
37 |
#include "memory/allocation.hpp" |
|
38 |
#include "services/memoryService.hpp" |
|
39 |
||
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47885
diff
changeset
|
40 |
class GCMemoryManager; |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47885
diff
changeset
|
41 |
|
46828 | 42 |
// Class used to group scoped objects used in the Full GC together. |
43 |
class G1FullGCScope : public StackObj { |
|
44 |
ResourceMark _rm; |
|
45 |
bool _explicit_gc; |
|
46 |
G1CollectedHeap* _g1h; |
|
47 |
GCIdMark _gc_id; |
|
48 |
SvcGCMarker _svc_marker; |
|
49 |
STWGCTimer _timer; |
|
47885
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
50 |
G1FullGCTracer _tracer; |
46828 | 51 |
IsGCActiveMark _active; |
52 |
GCTraceCPUTime _cpu_time; |
|
53 |
ClearedAllSoftRefs _soft_refs; |
|
54 |
TraceCollectorStats _collector_stats; |
|
55 |
TraceMemoryManagerStats _memory_stats; |
|
56 |
G1HeapTransition _heap_transition; |
|
57 |
||
58 |
public: |
|
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47885
diff
changeset
|
59 |
G1FullGCScope(GCMemoryManager* memory_manager, bool explicit_gc, bool clear_soft); |
46828 | 60 |
~G1FullGCScope(); |
61 |
||
62 |
bool is_explicit_gc(); |
|
63 |
bool should_clear_soft_refs(); |
|
64 |
||
65 |
STWGCTimer* timer(); |
|
47885
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
66 |
G1FullGCTracer* tracer(); |
46828 | 67 |
G1HeapTransition* heap_transition(); |
68 |
}; |
|
69 |
||
70 |
#endif //SHARE_VM_GC_G1_G1FULLGCSCOPE_HPP |