Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/memory/generationSpec.hpp
32285 views
/*1* Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_MEMORY_GENERATIONSPEC_HPP25#define SHARE_VM_MEMORY_GENERATIONSPEC_HPP2627#include "memory/generation.hpp"2829// The specification of a generation. This class also encapsulates30// some generation-specific behavior. This is done here rather than as a31// virtual function of Generation because these methods are needed in32// initialization of the Generations.33class GenerationSpec : public CHeapObj<mtGC> {34friend class VMStructs;35private:36Generation::Name _name;37size_t _init_size;38size_t _max_size;3940public:41GenerationSpec(Generation::Name name, size_t init_size, size_t max_size) {42_name = name;43_init_size = init_size;44_max_size = max_size;45}4647Generation* init(ReservedSpace rs, int level, GenRemSet* remset);4849// Accessors50Generation::Name name() const { return _name; }51size_t init_size() const { return _init_size; }52void set_init_size(size_t size) { _init_size = size; }53size_t max_size() const { return _max_size; }54void set_max_size(size_t size) { _max_size = size; }5556// Alignment57void align(size_t alignment) {58set_init_size(align_size_up(init_size(), alignment));59set_max_size(align_size_up(max_size(), alignment));60}6162// Return the number of regions contained in the generation which63// might need to be independently covered by a remembered set.64virtual int n_covered_regions() const { return 1; }65};6667typedef GenerationSpec* GenerationSpecPtr;6869#endif // SHARE_VM_MEMORY_GENERATIONSPEC_HPP707172