author | lkorinth |
Wed, 13 Nov 2019 11:37:29 +0100 | |
changeset 59053 | ba6c248cae19 |
parent 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
18025 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52925
diff
changeset
|
2 |
* Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved. |
18025 | 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:
52925
diff
changeset
|
25 |
#ifndef SHARE_GC_SHARED_GCNAME_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52925
diff
changeset
|
26 |
#define SHARE_GC_SHARED_GCNAME_HPP |
18025 | 27 |
|
28 |
#include "utilities/debug.hpp" |
|
29 |
||
30 |
enum GCName { |
|
31 |
ParallelOld, |
|
32 |
SerialOld, |
|
33 |
PSMarkSweep, |
|
34 |
ParallelScavenge, |
|
35 |
DefNew, |
|
36 |
G1New, |
|
37 |
G1Old, |
|
47885
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
38 |
G1Full, |
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
47885
diff
changeset
|
39 |
Z, |
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
50525
diff
changeset
|
40 |
Shenandoah, |
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
47885
diff
changeset
|
41 |
NA, |
18025 | 42 |
GCNameEndSentinel |
43 |
}; |
|
44 |
||
45 |
class GCNameHelper { |
|
46 |
public: |
|
47 |
static const char* to_string(GCName name) { |
|
48 |
switch(name) { |
|
49 |
case ParallelOld: return "ParallelOld"; |
|
50 |
case SerialOld: return "SerialOld"; |
|
51 |
case PSMarkSweep: return "PSMarkSweep"; |
|
52 |
case ParallelScavenge: return "ParallelScavenge"; |
|
53 |
case DefNew: return "DefNew"; |
|
54 |
case G1New: return "G1New"; |
|
55 |
case G1Old: return "G1Old"; |
|
47885
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
56 |
case G1Full: return "G1Full"; |
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
47885
diff
changeset
|
57 |
case Z: return "Z"; |
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
50525
diff
changeset
|
58 |
case Shenandoah: return "Shenandoah"; |
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
47885
diff
changeset
|
59 |
case NA: return "N/A"; |
18025 | 60 |
default: ShouldNotReachHere(); return NULL; |
61 |
} |
|
62 |
} |
|
63 |
}; |
|
64 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52925
diff
changeset
|
65 |
#endif // SHARE_GC_SHARED_GCNAME_HPP |