src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/ObjectHeap.java
author coleenp
Tue, 28 Aug 2018 18:17:01 -0400
changeset 51554 5b0d86499960
parent 50523 7b7c75d87f9b
child 51741 ed9b1200dd81
permissions -rw-r--r--
8209958: Clean up duplicate basic array type statics in Universe Reviewed-by: lfoltan, zgu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
51554
5b0d86499960 8209958: Clean up duplicate basic array type statics in Universe
coleenp
parents: 50523
diff changeset
     2
 * Copyright (c) 2000, 2018, 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: 781
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 781
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: 781
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// The ObjectHeap is an abstraction over all generations in the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// It gives access to all present objects and classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
package sun.jvm.hotspot.oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import java.util.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
import sun.jvm.hotspot.debugger.*;
30769
df60209aac9d 8080581: Align SA with new GC directory structure
pliden
parents: 30764
diff changeset
    35
import sun.jvm.hotspot.gc.cms.*;
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22234
diff changeset
    36
import sun.jvm.hotspot.gc.shared.*;
50523
7b7c75d87f9b 8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents: 47216
diff changeset
    37
import sun.jvm.hotspot.gc.epsilon.*;
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22234
diff changeset
    38
import sun.jvm.hotspot.gc.g1.*;
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22234
diff changeset
    39
import sun.jvm.hotspot.gc.parallel.*;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
import sun.jvm.hotspot.memory.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
import sun.jvm.hotspot.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
import sun.jvm.hotspot.types.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
import sun.jvm.hotspot.utilities.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
public class ObjectHeap {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    47
  private static final boolean DEBUG;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    48
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    49
  static {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    50
    DEBUG = System.getProperty("sun.jvm.hotspot.oops.ObjectHeap.DEBUG") != null;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    51
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    52
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  public ObjectHeap(TypeDataBase db) throws WrongTypeException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    // Get commonly used sizes of basic types
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    55
    oopSize     = VM.getVM().getOopSize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    byteSize    = db.getJByteType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    charSize    = db.getJCharType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    booleanSize = db.getJBooleanType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    intSize     = db.getJIntType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    shortSize   = db.getJShortType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    longSize    = db.getJLongType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    floatSize   = db.getJFloatType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    doubleSize  = db.getJDoubleType().getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  /** Comparison operation for oops, either or both of which may be null */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  public boolean equal(Oop o1, Oop o2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    if (o1 != null) return o1.equals(o2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    return (o2 == null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Cached sizes of basic types
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  private long oopSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  private long byteSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  private long charSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  private long booleanSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  private long intSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  private long shortSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  private long longSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  private long floatSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  private long doubleSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  public long getOopSize()     { return oopSize;     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  public long getByteSize()    { return byteSize;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  public long getCharSize()    { return charSize;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  public long getBooleanSize() { return booleanSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  public long getIntSize()     { return intSize;     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  public long getShortSize()   { return shortSize;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  public long getLongSize()    { return longSize;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  public long getFloatSize()   { return floatSize;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  public long getDoubleSize()  { return doubleSize;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  /** an interface to filter objects while walking heap */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  public static interface ObjectFilter {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    public boolean canInclude(Oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  /** The base heap iteration mechanism */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  public void iterate(HeapVisitor visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    iterateLiveRegions(collectLiveRegions(), visitor, null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  /** iterate objects satisfying a specified ObjectFilter */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  public void iterate(HeapVisitor visitor, ObjectFilter of) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    iterateLiveRegions(collectLiveRegions(), visitor, of);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  /** iterate objects of given Klass. param 'includeSubtypes' tells whether to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
   *  include objects of subtypes or not */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  public void iterateObjectsOfKlass(HeapVisitor visitor, final Klass k, boolean includeSubtypes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    if (includeSubtypes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      if (k.isFinal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
        // do the simpler "exact" klass loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
        iterateExact(visitor, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
        iterateSubtypes(visitor, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      // there can no object of abstract classes and interfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      if (!k.isAbstract() && !k.isInterface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
        iterateExact(visitor, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  /** iterate objects of given Klass (objects of subtypes included) */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  public void iterateObjectsOfKlass(HeapVisitor visitor, final Klass k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    iterateObjectsOfKlass(visitor, k, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  /** This routine can be used to iterate through the heap at an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      extremely low level (stepping word-by-word) to provide the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      ability to do very low-level debugging */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  public void iterateRaw(RawHeapVisitor visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    List liveRegions = collectLiveRegions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    // Summarize size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    long totalSize = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    for (int i = 0; i < liveRegions.size(); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      Address bottom = (Address) liveRegions.get(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      Address top    = (Address) liveRegions.get(i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      totalSize += top.minus(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    visitor.prologue(totalSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    for (int i = 0; i < liveRegions.size(); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      Address bottom = (Address) liveRegions.get(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      Address top    = (Address) liveRegions.get(i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      // Traverses the space from bottom to top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      while (bottom.lessThan(top)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
        visitor.visitAddress(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
        bottom = bottom.addOffsetTo(VM.getVM().getAddressSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    visitor.epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   160
  public boolean isValidMethod(Address handle) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   161
    try {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   162
      Method m = (Method)Metadata.instantiateWrapperFor(handle);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   163
      return true;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   164
    } catch (Exception e) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   165
      return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
764
67578bc37423 6620329: jstack prints double native methods on Solaris/sparc
swamyv
parents: 360
diff changeset
   167
  }
67578bc37423 6620329: jstack prints double native methods on Solaris/sparc
swamyv
parents: 360
diff changeset
   168
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Creates an instance from the Oop hierarchy based based on the handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  public Oop newOop(OopHandle handle) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // The only known way to detect the right type of an oop is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // traversing the class chain until a well-known klass is recognized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // A more direct solution would require the klasses to expose
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // the C++ vtbl structure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    // Handle the null reference
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    if (handle == null) return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    // Then check if obj.klass() is one of the root objects
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   180
    Klass klass = Oop.getKlassForOopHandle(handle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    if (klass != null) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   182
      if (klass instanceof TypeArrayKlass) return new TypeArray(handle, this);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   183
      if (klass instanceof ObjArrayKlass) return new ObjArray(handle, this);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   184
      if (klass instanceof InstanceKlass) return new Instance(handle, this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
764
67578bc37423 6620329: jstack prints double native methods on Solaris/sparc
swamyv
parents: 360
diff changeset
   187
    if (DEBUG) {
67578bc37423 6620329: jstack prints double native methods on Solaris/sparc
swamyv
parents: 360
diff changeset
   188
      System.err.println("Unknown oop at " + handle);
67578bc37423 6620329: jstack prints double native methods on Solaris/sparc
swamyv
parents: 360
diff changeset
   189
      System.err.println("Oop's klass is " + klass);
67578bc37423 6620329: jstack prints double native methods on Solaris/sparc
swamyv
parents: 360
diff changeset
   190
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    throw new UnknownOopException();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Print all objects in the object heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  public void print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    HeapPrinter printer = new HeapPrinter(System.out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    iterate(printer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  //---------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // Internals only below this point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  private void iterateExact(HeapVisitor visitor, final Klass k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    iterateLiveRegions(collectLiveRegions(), visitor, new ObjectFilter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
          public boolean canInclude(Oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
            Klass tk = obj.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
            // null Klass is seen sometimes!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
            return (tk != null && tk.equals(k));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  private void iterateSubtypes(HeapVisitor visitor, final Klass k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    iterateLiveRegions(collectLiveRegions(), visitor, new ObjectFilter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
          public boolean canInclude(Oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
            Klass tk = obj.getKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
            // null Klass is seen sometimes!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
            return (tk != null && tk.isSubtypeOf(k));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
        });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  private void iterateLiveRegions(List liveRegions, HeapVisitor visitor, ObjectFilter of) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // Summarize size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    long totalSize = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    for (int i = 0; i < liveRegions.size(); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
      Address bottom = (Address) liveRegions.get(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      Address top    = (Address) liveRegions.get(i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      totalSize += top.minus(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    visitor.prologue(totalSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    CompactibleFreeListSpace cmsSpaceOld = null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    CollectedHeap heap = VM.getVM().getUniverse().heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    if (heap instanceof GenCollectedHeap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      GenCollectedHeap genHeap = (GenCollectedHeap) heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      Generation genOld = genHeap.getGen(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      if (genOld instanceof ConcurrentMarkSweepGeneration) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
          ConcurrentMarkSweepGeneration concGen = (ConcurrentMarkSweepGeneration)genOld;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
          cmsSpaceOld = concGen.cmsSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    for (int i = 0; i < liveRegions.size(); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      Address bottom = (Address) liveRegions.get(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      Address top    = (Address) liveRegions.get(i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        // Traverses the space from bottom to top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
        OopHandle handle = bottom.addOffsetToAsOopHandle(0);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   254
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
        while (handle.lessThan(top)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
        Oop obj = null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
          try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
            obj = newOop(handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
          } catch (UnknownOopException exp) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   261
            if (DEBUG) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   262
              throw new RuntimeException(" UnknownOopException  " + exp);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   263
            }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
          if (obj == null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
             //Find the object size using Printezis bits and skip over
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
             long size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
             if ( (cmsSpaceOld != null) && cmsSpaceOld.contains(handle) ){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
                 size = cmsSpaceOld.collector().blockSizeUsingPrintezisBits(handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
             }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
             if (size <= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
                //Either Printezis bits not set or handle is not in cms space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                throw new UnknownOopException();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
             }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
             handle = handle.addOffsetToAsOopHandle(CompactibleFreeListSpace.adjustObjectSizeInBytes(size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
             continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
          if (of == null || of.canInclude(obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
                  if (visitor.doObj(obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
                         // doObj() returns true to abort this loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
          }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10663
diff changeset
   287
          if ( (cmsSpaceOld != null) && cmsSpaceOld.contains(handle)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
              handle = handle.addOffsetToAsOopHandle(CompactibleFreeListSpace.adjustObjectSizeInBytes(obj.getObjectSize()) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
              handle = handle.addOffsetToAsOopHandle(obj.getObjectSize());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      catch (AddressException e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        // This is okay at the top of these regions
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   296
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      catch (UnknownOopException e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
        // This is okay at the top of these regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    visitor.epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   305
  private void addLiveRegions(String name, List input, List output) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
     for (Iterator itr = input.iterator(); itr.hasNext();) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
        MemRegion reg = (MemRegion) itr.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
        Address top = reg.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
        Address bottom = reg.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
        if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
           Assert.that(top != null, "top address in a live region should not be null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
        if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
           Assert.that(bottom != null, "bottom address in a live region should not be null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
        output.add(top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
        output.add(bottom);
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   318
        if (DEBUG) {
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   319
          System.err.println("Live region: " + name + ": " + bottom + ", " + top);
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   320
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  private class LiveRegionsCollector implements SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
     LiveRegionsCollector(List l) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
        liveRegions = l;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
     public void doSpace(Space s) {
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   330
        addLiveRegions(s.toString(), s.getLiveRegions(), liveRegions);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
     private List liveRegions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // Returns a List<Address> where the addresses come in pairs. These
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // designate the live regions of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  private List collectLiveRegions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    // We want to iterate through all live portions of the heap, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    // do not want to abort the heap traversal prematurely if we find
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    // a problem (like an allocated but uninitialized object at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    // top of a generation). To do this we enumerate all generations'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    // bottom and top regions, and factor in TLABs if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    // List<Address>. Addresses come in pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    List liveRegions = new ArrayList();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    LiveRegionsCollector lrc = new LiveRegionsCollector(liveRegions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    CollectedHeap heap = VM.getVM().getUniverse().heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    if (heap instanceof GenCollectedHeap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
       GenCollectedHeap genHeap = (GenCollectedHeap) heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
       // Run through all generations, obtaining bottom-top pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
       for (int i = 0; i < genHeap.nGens(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
         Generation gen = genHeap.getGen(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
         gen.spaceIterate(lrc, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    } else if (heap instanceof ParallelScavengeHeap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
       ParallelScavengeHeap psh = (ParallelScavengeHeap) heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
       PSYoungGen youngGen = psh.youngGen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
       // Add eden space
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   361
       addLiveRegions("eden", youngGen.edenSpace().getLiveRegions(), liveRegions);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
       // Add from-space but not to-space
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   363
       addLiveRegions("from", youngGen.fromSpace().getLiveRegions(), liveRegions);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
       PSOldGen oldGen = psh.oldGen();
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   365
       addLiveRegions("old ", oldGen.objectSpace().getLiveRegions(), liveRegions);
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents: 8878
diff changeset
   366
    } else if (heap instanceof G1CollectedHeap) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents: 8878
diff changeset
   367
        G1CollectedHeap g1h = (G1CollectedHeap) heap;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents: 8878
diff changeset
   368
        g1h.heapRegionIterate(lrc);
50523
7b7c75d87f9b 8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents: 47216
diff changeset
   369
    } else if (heap instanceof EpsilonHeap) {
7b7c75d87f9b 8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents: 47216
diff changeset
   370
       EpsilonHeap eh = (EpsilonHeap) heap;
7b7c75d87f9b 8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents: 47216
diff changeset
   371
       liveRegions.add(eh.space().top());
7b7c75d87f9b 8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents: 47216
diff changeset
   372
       liveRegions.add(eh.space().bottom());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
       if (Assert.ASSERTS_ENABLED) {
50523
7b7c75d87f9b 8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents: 47216
diff changeset
   375
          Assert.that(false, "Unexpected CollectedHeap type: " + heap.getClass().getName());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    // If UseTLAB is enabled, snip out regions associated with TLABs'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    // dead regions. Note that TLABs can be present in any generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    // FIXME: consider adding fewer boundaries to live region list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    // Theoretically only need to stop at TLAB's top and resume at its
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    // end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    if (VM.getVM().getUseTLAB()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
      for (JavaThread thread = VM.getVM().getThreads().first(); thread != null; thread = thread.next()) {
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   388
        ThreadLocalAllocBuffer tlab = thread.tlab();
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   389
        if (tlab.start() != null) {
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   390
          if ((tlab.top() == null) || (tlab.end() == null)) {
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   391
            System.err.print("Warning: skipping invalid TLAB for thread ");
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   392
            thread.printThreadIDOn(System.err);
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   393
            System.err.println();
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   394
          } else {
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   395
            if (DEBUG) {
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   396
              System.err.print("TLAB for " + thread.getThreadName() + ", #");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
              thread.printThreadIDOn(System.err);
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   398
              System.err.print(": ");
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   399
              tlab.printOn(System.err);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
            }
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   401
            // Go from:
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   402
            //  - below start() to start()
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   403
            //  - start() to top()
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   404
            //  - end() and above
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   405
            liveRegions.add(tlab.start());
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   406
            liveRegions.add(tlab.start());
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   407
            liveRegions.add(tlab.top());
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   408
            liveRegions.add(tlab.hardEnd());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    // Now sort live regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    sortLiveRegions(liveRegions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
      Assert.that(liveRegions.size() % 2 == 0, "Must have even number of region boundaries");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
22216
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   421
    if (DEBUG) {
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   422
      System.err.println("liveRegions:");
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   423
      for (int i = 0; i < liveRegions.size(); i += 2) {
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   424
          Address bottom = (Address) liveRegions.get(i);
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   425
          Address top    = (Address) liveRegions.get(i+1);
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   426
          System.err.println(" " + bottom + " - " + top);
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   427
      }
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   428
    }
888245fbd0a5 8029395: SA: jstack throws WrongTypeException
sla
parents: 15735
diff changeset
   429
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    return liveRegions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  private void sortLiveRegions(List liveRegions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    Collections.sort(liveRegions, new Comparator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
        public int compare(Object o1, Object o2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
          Address a1 = (Address) o1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
          Address a2 = (Address) o2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
          if (AddressOps.lt(a1, a2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
            return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
          } else if (AddressOps.gt(a1, a2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
            return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
          return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
}