hotspot/src/share/vm/gc_implementation/shared/mutableSpace.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 616 4f2dfc0168e2
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2001-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// A MutableSpace is a subtype of ImmutableSpace that supports the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// concept of allocation. This includes the concepts that a space may
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// be only partially full, and the querry methods that go with such
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// an assumption.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Invariant: (ImmutableSpace +) bottom() <= top() <= end()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// top() is inclusive and end() is exclusive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class MutableSpace: public ImmutableSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  HeapWord* _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  virtual ~MutableSpace()                  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  MutableSpace()                           { _top = NULL;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  HeapWord* top() const                    { return _top;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  virtual void set_top(HeapWord* value)    { _top = value;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  HeapWord** top_addr()                    { return &_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  HeapWord** end_addr()                    { return &_end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  virtual void set_bottom(HeapWord* value) { _bottom = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  virtual void set_end(HeapWord* value)    { _end = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Returns a subregion containing all objects in this space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  MemRegion used_region() { return MemRegion(bottom(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  virtual void initialize(MemRegion mr, bool clear_space);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  virtual void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  virtual void update() { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual void accumulate_statistics() { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // Overwrites the unused portion of this space. Note that some collectors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // may use this "scratch" space during collections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual void mangle_unused_area() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    mangle_region(MemRegion(_top, _end));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual void ensure_parsability() { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  void mangle_region(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    debug_only(Copy::fill_to_words(mr.start(), mr.word_size(), badHeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Boolean querries.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  bool is_empty() const              { return used_in_words() == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  bool not_empty() const             { return used_in_words() > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  bool contains(const void* p) const { return _bottom <= p && p < _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Size computations.  Sizes are in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  size_t used_in_bytes() const                { return used_in_words() * HeapWordSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  size_t free_in_bytes() const                { return free_in_words() * HeapWordSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Size computations.  Sizes are in heapwords.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  virtual size_t used_in_words() const                    { return pointer_delta(top(), bottom()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  virtual size_t free_in_words() const                    { return pointer_delta(end(),    top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  virtual size_t tlab_capacity(Thread* thr) const         { return capacity_in_bytes();            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  virtual size_t unsafe_max_tlab_alloc(Thread* thr) const { return free_in_bytes();                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Allocation (return NULL if full)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  virtual HeapWord* allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  virtual HeapWord* cas_allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Optional deallocation. Used in NUMA-allocator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  bool cas_deallocate(HeapWord *obj, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void object_iterate(ObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  virtual void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  virtual void print_short() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  virtual void print_short_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  virtual void verify(bool allow_dirty) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
};