author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 47216 | 71c04702a3d5 |
child 51494 | 1906adbef2dc |
permissions | -rw-r--r-- |
35909
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
1 |
/* |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
2 |
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
4 |
* |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
8 |
* |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
13 |
* accompanied this code). |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
14 |
* |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
18 |
* |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
21 |
* questions. |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
22 |
* |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
23 |
*/ |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
24 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
25 |
#ifndef SHARE_VM_GC_G1_G1HEAPTRANSITION_HPP |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
26 |
#define SHARE_VM_GC_G1_G1HEAPTRANSITION_HPP |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
27 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
28 |
#include "gc/shared/plab.hpp" |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
29 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
30 |
class G1CollectedHeap; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
31 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
32 |
class G1HeapTransition { |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
33 |
struct Data { |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
34 |
size_t _eden_length; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
35 |
size_t _survivor_length; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
36 |
size_t _old_length; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
37 |
size_t _humongous_length; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
38 |
size_t _metaspace_used_bytes; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
39 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
40 |
Data(G1CollectedHeap* g1_heap); |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
41 |
}; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
42 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
43 |
G1CollectedHeap* _g1_heap; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
44 |
Data _before; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
45 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
46 |
public: |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
47 |
G1HeapTransition(G1CollectedHeap* g1_heap); |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
48 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
49 |
void print(); |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
50 |
}; |
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
51 |
|
cf5f3c85e179
8148736: Let the G1 heap transition log regions instead of bytes
brutisso
parents:
diff
changeset
|
52 |
#endif // SHARE_VM_GC_G1_G1HEAPTRANSITION_HPP |