author | tschatzl |
Wed, 17 Jul 2019 16:33:19 +0200 | |
changeset 55722 | 5ee183a90e65 |
parent 53244 | 9807daeb47c4 |
child 58002 | 01d31583f25c |
permissions | -rw-r--r-- |
46828 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52876
diff
changeset
|
2 |
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. |
46828 | 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 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52876
diff
changeset
|
25 |
#ifndef SHARE_GC_G1_G1FULLGCSCOPE_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52876
diff
changeset
|
26 |
#define SHARE_GC_G1_G1FULLGCSCOPE_HPP |
46828 | 27 |
|
28 |
#include "gc/g1/g1CollectedHeap.hpp" |
|
29 |
#include "gc/g1/g1HeapTransition.hpp" |
|
30 |
#include "gc/shared/gcId.hpp" |
|
31 |
#include "gc/shared/gcTrace.hpp" |
|
32 |
#include "gc/shared/gcTraceTime.hpp" |
|
33 |
#include "gc/shared/gcTimer.hpp" |
|
52876
2d17750d41e7
8214791: Consistently name gc files containing VM operations
tschatzl
parents:
51497
diff
changeset
|
34 |
#include "gc/shared/gcVMOperations.hpp" |
46828 | 35 |
#include "gc/shared/isGCActiveMark.hpp" |
36 |
#include "memory/allocation.hpp" |
|
37 |
#include "services/memoryService.hpp" |
|
38 |
||
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47885
diff
changeset
|
39 |
class GCMemoryManager; |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47885
diff
changeset
|
40 |
|
46828 | 41 |
// Class used to group scoped objects used in the Full GC together. |
42 |
class G1FullGCScope : public StackObj { |
|
43 |
ResourceMark _rm; |
|
44 |
bool _explicit_gc; |
|
45 |
G1CollectedHeap* _g1h; |
|
46 |
GCIdMark _gc_id; |
|
47 |
SvcGCMarker _svc_marker; |
|
48 |
STWGCTimer _timer; |
|
47885
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
49 |
G1FullGCTracer _tracer; |
46828 | 50 |
IsGCActiveMark _active; |
51 |
GCTraceCPUTime _cpu_time; |
|
52 |
ClearedAllSoftRefs _soft_refs; |
|
51497
ec014e5694ec
8209061: Move G1 serviceability functionality to G1MonitoringSupport
tschatzl
parents:
48168
diff
changeset
|
53 |
G1MonitoringScope _monitoring_scope; |
46828 | 54 |
G1HeapTransition _heap_transition; |
55 |
||
56 |
public: |
|
51497
ec014e5694ec
8209061: Move G1 serviceability functionality to G1MonitoringSupport
tschatzl
parents:
48168
diff
changeset
|
57 |
G1FullGCScope(G1MonitoringSupport* monitoring_support, bool explicit_gc, bool clear_soft); |
46828 | 58 |
~G1FullGCScope(); |
59 |
||
60 |
bool is_explicit_gc(); |
|
61 |
bool should_clear_soft_refs(); |
|
62 |
||
63 |
STWGCTimer* timer(); |
|
47885
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
64 |
G1FullGCTracer* tracer(); |
46828 | 65 |
G1HeapTransition* heap_transition(); |
66 |
}; |
|
67 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52876
diff
changeset
|
68 |
#endif // SHARE_GC_G1_G1FULLGCSCOPE_HPP |