author | stefank |
Fri, 24 Nov 2017 15:48:01 +0100 | |
changeset 48116 | 8a5e8cd321d9 |
parent 47216 | 71c04702a3d5 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29794 | 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_SHARED_GENERATIONSPEC_HPP |
26 |
#define SHARE_VM_GC_SHARED_GENERATIONSPEC_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/generation.hpp" |
46625 | 29 |
#include "utilities/align.hpp" |
7397 | 30 |
|
1 | 31 |
// The specification of a generation. This class also encapsulates |
32 |
// some generation-specific behavior. This is done here rather than as a |
|
33 |
// virtual function of Generation because these methods are needed in |
|
34 |
// initialization of the Generations. |
|
13195 | 35 |
class GenerationSpec : public CHeapObj<mtGC> { |
1 | 36 |
friend class VMStructs; |
37 |
private: |
|
38 |
Generation::Name _name; |
|
39 |
size_t _init_size; |
|
40 |
size_t _max_size; |
|
41 |
||
42 |
public: |
|
29794 | 43 |
GenerationSpec(Generation::Name name, size_t init_size, size_t max_size, size_t alignment) : |
44 |
_name(name), |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
33212
diff
changeset
|
45 |
_init_size(align_up(init_size, alignment)), |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
33212
diff
changeset
|
46 |
_max_size(align_up(max_size, alignment)) |
29794 | 47 |
{ } |
1 | 48 |
|
33212 | 49 |
Generation* init(ReservedSpace rs, CardTableRS* remset); |
1 | 50 |
|
51 |
// Accessors |
|
52 |
Generation::Name name() const { return _name; } |
|
53 |
size_t init_size() const { return _init_size; } |
|
54 |
void set_init_size(size_t size) { _init_size = size; } |
|
55 |
size_t max_size() const { return _max_size; } |
|
56 |
void set_max_size(size_t size) { _max_size = size; } |
|
57 |
}; |
|
58 |
||
59 |
typedef GenerationSpec* GenerationSpecPtr; |
|
60 |
||
30764 | 61 |
#endif // SHARE_VM_GC_SHARED_GENERATIONSPEC_HPP |