author | stefank |
Mon, 07 May 2018 14:42:10 +0200 | |
changeset 50035 | af1923174c9b |
parent 49360 | 886acec3b4c6 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49360 | 2 |
* Copyright (c) 2000, 2018, 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:
1623
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1623
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:
1623
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_REFERENCEPOLICY_HPP |
26 |
#define SHARE_VM_GC_SHARED_REFERENCEPOLICY_HPP |
|
7397 | 27 |
|
49360 | 28 |
#include "oops/oopsHierarchy.hpp" |
29 |
||
1 | 30 |
// referencePolicy is used to determine when soft reference objects |
31 |
// should be cleared. |
|
32 |
||
33 |
||
13195 | 34 |
class ReferencePolicy : public CHeapObj<mtGC> { |
1 | 35 |
public: |
10683
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
36 |
virtual bool should_clear_reference(oop p, jlong timestamp_clock) { |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
37 |
ShouldNotReachHere(); |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
38 |
return true; |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
39 |
} |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
40 |
|
1606
dcf9714addbe
6684579: SoftReference processing can be made more efficient
ysr
parents:
1
diff
changeset
|
41 |
// Capture state (of-the-VM) information needed to evaluate the policy |
1610
5dddd195cc86
6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents:
1606
diff
changeset
|
42 |
virtual void setup() { /* do nothing */ } |
1 | 43 |
}; |
44 |
||
45 |
class NeverClearPolicy : public ReferencePolicy { |
|
46 |
public: |
|
10683
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
47 |
virtual bool should_clear_reference(oop p, jlong timestamp_clock) { |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
48 |
return false; |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
49 |
} |
1 | 50 |
}; |
51 |
||
52 |
class AlwaysClearPolicy : public ReferencePolicy { |
|
53 |
public: |
|
10683
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
54 |
virtual bool should_clear_reference(oop p, jlong timestamp_clock) { |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
55 |
return true; |
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
56 |
} |
1 | 57 |
}; |
58 |
||
59 |
class LRUCurrentHeapPolicy : public ReferencePolicy { |
|
60 |
private: |
|
61 |
jlong _max_interval; |
|
62 |
||
63 |
public: |
|
64 |
LRUCurrentHeapPolicy(); |
|
65 |
||
1606
dcf9714addbe
6684579: SoftReference processing can be made more efficient
ysr
parents:
1
diff
changeset
|
66 |
// Capture state (of-the-VM) information needed to evaluate the policy |
1610
5dddd195cc86
6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents:
1606
diff
changeset
|
67 |
void setup(); |
10683
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
68 |
virtual bool should_clear_reference(oop p, jlong timestamp_clock); |
1 | 69 |
}; |
70 |
||
71 |
class LRUMaxHeapPolicy : public ReferencePolicy { |
|
72 |
private: |
|
73 |
jlong _max_interval; |
|
74 |
||
75 |
public: |
|
76 |
LRUMaxHeapPolicy(); |
|
77 |
||
1606
dcf9714addbe
6684579: SoftReference processing can be made more efficient
ysr
parents:
1
diff
changeset
|
78 |
// Capture state (of-the-VM) information needed to evaluate the policy |
1610
5dddd195cc86
6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents:
1606
diff
changeset
|
79 |
void setup(); |
10683
4b5a5a507864
7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents:
7397
diff
changeset
|
80 |
virtual bool should_clear_reference(oop p, jlong timestamp_clock); |
1 | 81 |
}; |
7397 | 82 |
|
30764 | 83 |
#endif // SHARE_VM_GC_SHARED_REFERENCEPOLICY_HPP |