src/hotspot/share/gc/shared/generationSpec.cpp
author stuefe
Tue, 26 Nov 2019 16:21:29 +0100
branchstuefe-new-metaspace-branch
changeset 59272 54750b448264
parent 54678 93f09ca4a7f8
child 59053 ba6c248cae19
permissions -rw-r--r--
Metadatatype back to metaspace.hpp to reduce patch size
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 25485
diff changeset
     2
 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
33212
906b3d079b13 8139434: Unify GenRemSet and CardTableRS
david
parents: 31358
diff changeset
    26
#include "gc/shared/cardTableRS.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 25485
diff changeset
    27
#include "gc/shared/generationSpec.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12507
diff changeset
    28
#include "memory/binaryTreeDictionary.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/filemap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/java.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    31
#include "utilities/macros.hpp"
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    32
#if INCLUDE_CMSGC
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 25485
diff changeset
    33
#include "gc/cms/concurrentMarkSweepGeneration.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 25485
diff changeset
    34
#include "gc/cms/parNewGeneration.hpp"
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    35
#endif
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    36
#if INCLUDE_SERIALGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    37
#include "gc/serial/defNewGeneration.hpp"
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    38
#include "gc/serial/tenuredGeneration.hpp"
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    39
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
33212
906b3d079b13 8139434: Unify GenRemSet and CardTableRS
david
parents: 31358
diff changeset
    41
Generation* GenerationSpec::init(ReservedSpace rs, CardTableRS* remset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  switch (name()) {
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    43
#if INCLUDE_SERIALGC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    case Generation::DefNew:
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 49982
diff changeset
    45
      return new DefNewGeneration(rs, _init_size, _min_size, _max_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    case Generation::MarkSweepCompact:
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 49982
diff changeset
    48
      return new TenuredGeneration(rs, _init_size, _min_size, _max_size, remset);
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    49
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    51
#if INCLUDE_CMSGC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    case Generation::ParNew:
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 49982
diff changeset
    53
      return new ParNewGeneration(rs, _init_size, _min_size, _max_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    case Generation::ConcurrentMarkSweep: {
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 49982
diff changeset
    56
      return new ConcurrentMarkSweepGeneration(rs, _init_size, _min_size, _max_size, remset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    }
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 47216
diff changeset
    58
#endif // INCLUDE_CMSGC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      guarantee(false, "unrecognized GenerationName");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}