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