src/share/vm/memory/compactingPermGenGen.hpp

Thu, 02 Oct 2008 19:58:19 -0700

author
xdono
date
Thu, 02 Oct 2008 19:58:19 -0700
changeset 772
9ee9cf798b59
parent 726
5251a9cd8eb8
child 844
218f0fd3ca88
permissions
-rw-r--r--

6754988: Update copyright year
Summary: Update for files that have been modified starting July 2008
Reviewed-by: ohair, tbell

     1 /*
     2  * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
     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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  *
    23  */
    25 // All heaps contains a "permanent generation," containing permanent
    26 // (reflective) objects.  This is like a regular generation in some ways,
    27 // but unlike one in others, and so is split apart.
    29 class PermanentGenerationSpec;
    31 // This is the "generation" view of a CompactingPermGen.
    32 class CompactingPermGenGen: public OneContigSpaceCardGeneration {
    33   friend class VMStructs;
    34   // Abstractly, this is a subtype that gets access to protected fields.
    35   friend class CompactingPermGen;
    37 private:
    38   // Shared spaces
    39   PermanentGenerationSpec* _spec;
    40   size_t _shared_space_size;
    41   VirtualSpace _ro_vs;
    42   VirtualSpace _rw_vs;
    43   VirtualSpace _md_vs;
    44   VirtualSpace _mc_vs;
    45   BlockOffsetSharedArray* _ro_bts;
    46   BlockOffsetSharedArray* _rw_bts;
    47   OffsetTableContigSpace* _ro_space;
    48   OffsetTableContigSpace* _rw_space;
    50   // With shared spaces there is a dicotomy in the use of the
    51   // _virtual_space of the generation.  There is a portion of the
    52   // _virtual_space that is used for the unshared part of the
    53   // permanent generation and a portion that is reserved for the shared part.
    54   // The _reserved field in the generation represents both the
    55   // unshared and shared parts of the generation.  The _reserved
    56   // variable is initialized for only the unshared part but is
    57   // later extended to include the shared part during initialization
    58   // if shared spaces are being used.
    59   // The reserved size for the _virtual_space for CompactingPermGenGen
    60   // is the size of the space for the permanent generation including the
    61   // the shared spaces.  This can be seen by the use of MaxPermSize
    62   // in the allocation of PermanentGenerationSpec.  The space for the
    63   // shared spaces is committed separately (???).
    64   // In general at initialization only a part of the
    65   // space for the unshared part of the permanent generation is
    66   // committed and more is committed as the permanent generation is
    67   // grown.  In growing the permanent generation the capacity() and
    68   // max_capacity() of the generation are used.  For the permanent
    69   // generation (implemented with a CompactingPermGenGen) the capacity()
    70   // is taken from the capacity of the space (_the_space variable used for the
    71   // unshared part of the generation) and the max_capacity() is based
    72   // on the size of the _reserved variable (which includes the size of the
    73   // shared spaces) minus the size of the shared spaces.
    75   // These values are redundant, but are called out separately to avoid
    76   // going through heap/space/gen pointers for performance.
    77   static HeapWord* unshared_bottom;
    78   static HeapWord* unshared_end;
    79   static HeapWord* shared_bottom;
    80   static HeapWord* readonly_bottom;
    81   static HeapWord* readonly_end;
    82   static HeapWord* readwrite_bottom;
    83   static HeapWord* readwrite_end;
    84   static HeapWord* miscdata_bottom;
    85   static HeapWord* miscdata_end;
    86   static HeapWord* misccode_bottom;
    87   static HeapWord* misccode_end;
    88   static HeapWord* shared_end;
    90   // List of klassOops whose vtbl entries are used to patch others.
    91   static void**        _vtbl_list;
    93   // Performance Counters
    94   GenerationCounters*  _gen_counters;
    95   CSpaceCounters*      _space_counters;
    97   void initialize_performance_counters();
    99 public:
   101   enum {
   102     vtbl_list_size = 16, // number of entries in the shared space vtable list.
   103     num_virtuals = 100   // number of virtual methods in Klass (or
   104                          // subclass) objects, or greater.
   105   };
   107   enum {
   108     ro = 0,  // read-only shared space in the heap
   109     rw = 1,  // read-write shared space in the heap
   110     md = 2,  // miscellaneous data for initializing tables, etc.
   111     mc = 3,  // miscellaneous code - vtable replacement.
   112     n_regions = 4
   113   };
   115   CompactingPermGenGen(ReservedSpace rs, ReservedSpace shared_rs,
   116                        size_t initial_byte_size, int level, GenRemSet* remset,
   117                        ContiguousSpace* space,
   118                        PermanentGenerationSpec* perm_spec);
   120   const char* name() const {
   121     return "compacting perm gen";
   122   }
   124   const char* short_name() const {
   125     return "Perm";
   126   }
   128   // Return the maximum capacity for the object space.  This
   129   // explicitly does not include the shared spaces.
   130   size_t max_capacity() const;
   132   void update_counters();
   134   void compute_new_size() {
   135     assert(false, "Should not call this -- handled at PermGen level.");
   136   }
   138   bool must_be_youngest() const { return false; }
   139   bool must_be_oldest() const { return false; }
   141   OffsetTableContigSpace* ro_space() const { return _ro_space; }
   142   OffsetTableContigSpace* rw_space() const { return _rw_space; }
   143   VirtualSpace*           md_space()       { return &_md_vs; }
   144   VirtualSpace*           mc_space()       { return &_mc_vs; }
   145   ContiguousSpace* unshared_space() const { return _the_space; }
   147   static bool inline is_shared(const oopDesc* p) {
   148     return (HeapWord*)p >= shared_bottom && (HeapWord*)p < shared_end;
   149   }
   150   // RedefineClasses note: this tester is used to check residence of
   151   // the specified oop in the shared readonly space and not whether
   152   // the oop is readonly.
   153   static bool inline is_shared_readonly(const oopDesc* p) {
   154     return (HeapWord*)p >= readonly_bottom && (HeapWord*)p < readonly_end;
   155   }
   156   // RedefineClasses note: this tester is used to check residence of
   157   // the specified oop in the shared readwrite space and not whether
   158   // the oop is readwrite.
   159   static bool inline is_shared_readwrite(const oopDesc* p) {
   160     return (HeapWord*)p >= readwrite_bottom && (HeapWord*)p < readwrite_end;
   161   }
   163   bool is_in_unshared(const void* p) const {
   164     return OneContigSpaceCardGeneration::is_in(p);
   165   }
   167   bool is_in_shared(const void* p) const {
   168    return p >= shared_bottom && p < shared_end;
   169    }
   171   inline bool is_in(const void* p) const {
   172     return is_in_unshared(p) || is_in_shared(p);
   173   }
   175   inline PermanentGenerationSpec* spec() const { return _spec; }
   176   inline void set_spec(PermanentGenerationSpec* spec) { _spec = spec; }
   178   void pre_adjust_pointers();
   179   void adjust_pointers();
   180   void space_iterate(SpaceClosure* blk, bool usedOnly = false);
   181   void print_on(outputStream* st) const;
   182   void younger_refs_iterate(OopsInGenClosure* blk);
   183   void compact();
   184   void post_compact();
   185   size_t contiguous_available() const;
   187   void clear_remembered_set();
   188   void invalidate_remembered_set();
   190   inline bool block_is_obj(const HeapWord* addr) const {
   191     if      (addr < the_space()->top()) return true;
   192     else if (addr < the_space()->end()) return false;
   193     else if (addr < ro_space()->top())  return true;
   194     else if (addr < ro_space()->end())  return false;
   195     else if (addr < rw_space()->top())  return true;
   196     else                                return false;
   197   }
   200   inline size_t block_size(const HeapWord* addr) const {
   201     if (addr < the_space()->top()) {
   202       return oop(addr)->size();
   203     }
   204     else if (addr < the_space()->end()) {
   205       assert(addr == the_space()->top(), "non-block head arg to block_size");
   206       return the_space()->end() - the_space()->top();
   207     }
   209     else if (addr < ro_space()->top()) {
   210       return oop(addr)->size();
   211     }
   212     else if (addr < ro_space()->end()) {
   213       assert(addr == ro_space()->top(), "non-block head arg to block_size");
   214       return ro_space()->end() - ro_space()->top();
   215     }
   217     else if (addr < rw_space()->top()) {
   218       return oop(addr)->size();
   219     }
   220     else {
   221       assert(addr == rw_space()->top(), "non-block head arg to block_size");
   222       return rw_space()->end() - rw_space()->top();
   223     }
   224   }
   226   static void generate_vtable_methods(void** vtbl_list,
   227                                       void** vtable,
   228                                       char** md_top, char* md_end,
   229                                       char** mc_top, char* mc_end);
   231   void verify(bool allow_dirty);
   233   // Serialization
   234   static void initialize_oops() KERNEL_RETURN;
   235   static void serialize_oops(SerializeOopClosure* soc);
   236   void serialize_bts(SerializeOopClosure* soc);
   238   // Initiate dumping of shared file.
   239   static jint dump_shared(GrowableArray<oop>* class_promote_order, TRAPS);
   241   // JVM/TI RedefineClasses() support:
   242   // Remap the shared readonly space to shared readwrite, private if
   243   // sharing is enabled. Simply returns true if sharing is not enabled
   244   // or if the remapping has already been done by a prior call.
   245   static bool remap_shared_readonly_as_readwrite();
   246 };

mercurial