author | stefank |
Tue, 11 Apr 2017 23:45:37 +0200 | |
changeset 46565 | 8dcbf532ea00 |
parent 30764 | fec48bf5a827 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29701
f638fc81a3d0
8075803: Fix GC includes and forward declarations
stefank
parents:
28178
diff
changeset
|
2 |
* Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_PARALLEL_PSMARKSWEEP_HPP |
26 |
#define SHARE_VM_GC_PARALLEL_PSMARKSWEEP_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/serial/markSweep.hpp" |
29 |
#include "gc/shared/collectorCounters.hpp" |
|
7397 | 30 |
#include "utilities/stack.hpp" |
31 |
||
1 | 32 |
class PSAdaptiveSizePolicy; |
33 |
class PSYoungGen; |
|
34 |
class PSOldGen; |
|
35 |
||
36 |
class PSMarkSweep : public MarkSweep { |
|
37 |
private: |
|
38 |
static elapsedTimer _accumulated_time; |
|
39 |
static jlong _time_of_last_gc; // ms |
|
40 |
static CollectorCounters* _counters; |
|
41 |
||
42 |
// Closure accessors |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
43 |
static OopClosure* mark_and_push_closure() { return &MarkSweep::mark_and_push_closure; } |
28178
1e72ace206d0
8066822: Remove PSMarkSweep::set_reference_processor
kbarrett
parents:
25492
diff
changeset
|
44 |
static VoidClosure* follow_stack_closure() { return &MarkSweep::follow_stack_closure; } |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
45 |
static CLDClosure* follow_cld_closure() { return &MarkSweep::follow_cld_closure; } |
28178
1e72ace206d0
8066822: Remove PSMarkSweep::set_reference_processor
kbarrett
parents:
25492
diff
changeset
|
46 |
static OopClosure* adjust_pointer_closure() { return &MarkSweep::adjust_pointer_closure; } |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
47 |
static CLDClosure* adjust_cld_closure() { return &MarkSweep::adjust_cld_closure; } |
28178
1e72ace206d0
8066822: Remove PSMarkSweep::set_reference_processor
kbarrett
parents:
25492
diff
changeset
|
48 |
static BoolObjectClosure* is_alive_closure() { return &MarkSweep::is_alive; } |
1 | 49 |
|
50 |
// Mark live objects |
|
51 |
static void mark_sweep_phase1(bool clear_all_softrefs); |
|
52 |
// Calculate new addresses |
|
53 |
static void mark_sweep_phase2(); |
|
54 |
// Update pointers |
|
55 |
static void mark_sweep_phase3(); |
|
56 |
// Move objects to new positions |
|
57 |
static void mark_sweep_phase4(); |
|
58 |
||
59 |
// Temporary data structures for traversal and storing/restoring marks |
|
60 |
static void allocate_stacks(); |
|
61 |
static void deallocate_stacks(); |
|
62 |
||
63 |
// If objects are left in eden after a collection, try to move the boundary |
|
64 |
// and absorb them into the old gen. Returns true if eden was emptied. |
|
65 |
static bool absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy, |
|
66 |
PSYoungGen* young_gen, |
|
67 |
PSOldGen* old_gen); |
|
68 |
||
69 |
// Reset time since last full gc |
|
70 |
static void reset_millis_since_last_gc(); |
|
71 |
||
72 |
public: |
|
73 |
static void invoke(bool clear_all_softrefs); |
|
11757
cdf6204b114a
7146343: PS invoke methods should indicate the type of gc done
jcoomes
parents:
7397
diff
changeset
|
74 |
static bool invoke_no_policy(bool clear_all_softrefs); |
1 | 75 |
|
76 |
static void initialize(); |
|
77 |
||
78 |
// Public accessors |
|
79 |
static elapsedTimer* accumulated_time() { return &_accumulated_time; } |
|
80 |
static CollectorCounters* counters() { return _counters; } |
|
81 |
||
82 |
// Time since last full gc (in milliseconds) |
|
83 |
static jlong millis_since_last_gc(); |
|
84 |
}; |
|
7397 | 85 |
|
30764 | 86 |
#endif // SHARE_VM_GC_PARALLEL_PSMARKSWEEP_HPP |