hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/OopMapValue.java
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
permissions -rw-r--r--
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2006 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
package sun.jvm.hotspot.compiler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
import java.util.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
import sun.jvm.hotspot.code.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.types.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import sun.jvm.hotspot.utilities.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
public class OopMapValue {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  private short value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  private short contentReg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  /** Read from target VM; located in compiler/oopMap.hpp */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // How bits are organized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static int TYPE_BITS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  static int REGISTER_BITS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  static int TYPE_SHIFT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  static int REGISTER_SHIFT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  static int TYPE_MASK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static int TYPE_MASK_IN_PLACE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static int REGISTER_MASK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static int REGISTER_MASK_IN_PLACE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Types of OopValues
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static int UNUSED_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static int OOP_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static int VALUE_VALUE;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    53
  static int NARROWOOP_VALUE;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static int CALLEE_SAVED_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  static int DERIVED_OOP_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    VM.registerVMInitializedObserver(new Observer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
        public void update(Observable o, Object data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
          initialize(VM.getVM().getTypeDataBase());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      });
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  private static void initialize(TypeDataBase db) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    TYPE_BITS              = db.lookupIntConstant("OopMapValue::type_bits").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    REGISTER_BITS          = db.lookupIntConstant("OopMapValue::register_bits").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    TYPE_SHIFT             = db.lookupIntConstant("OopMapValue::type_shift").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    REGISTER_SHIFT         = db.lookupIntConstant("OopMapValue::register_shift").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    TYPE_MASK              = db.lookupIntConstant("OopMapValue::type_mask").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    TYPE_MASK_IN_PLACE     = db.lookupIntConstant("OopMapValue::type_mask_in_place").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    REGISTER_MASK          = db.lookupIntConstant("OopMapValue::register_mask").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    REGISTER_MASK_IN_PLACE = db.lookupIntConstant("OopMapValue::register_mask_in_place").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    UNUSED_VALUE           = db.lookupIntConstant("OopMapValue::unused_value").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    OOP_VALUE              = db.lookupIntConstant("OopMapValue::oop_value").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    VALUE_VALUE            = db.lookupIntConstant("OopMapValue::value_value").intValue();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    77
    NARROWOOP_VALUE        = db.lookupIntConstant("OopMapValue::narrowoop_value").intValue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    CALLEE_SAVED_VALUE     = db.lookupIntConstant("OopMapValue::callee_saved_value").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    DERIVED_OOP_VALUE      = db.lookupIntConstant("OopMapValue::derived_oop_value").intValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  public static abstract class OopTypes {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    public static final OopTypes UNUSED_VALUE       = new OopTypes() { int getValue() { return OopMapValue.UNUSED_VALUE;       }};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    public static final OopTypes OOP_VALUE          = new OopTypes() { int getValue() { return OopMapValue.OOP_VALUE;          }};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    public static final OopTypes VALUE_VALUE        = new OopTypes() { int getValue() { return OopMapValue.VALUE_VALUE;        }};
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    86
    public static final OopTypes NARROWOOP_VALUE    = new OopTypes() { int getValue() { return OopMapValue.NARROWOOP_VALUE;         }};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    public static final OopTypes CALLEE_SAVED_VALUE = new OopTypes() { int getValue() { return OopMapValue.CALLEE_SAVED_VALUE; }};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    public static final OopTypes DERIVED_OOP_VALUE  = new OopTypes() { int getValue() { return OopMapValue.DERIVED_OOP_VALUE;  }};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    abstract int getValue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    protected OopTypes() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  public OopMapValue()                                  { setValue((short) 0); setContentReg(new VMReg(0)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  public OopMapValue(VMReg reg, OopTypes t)             { setReg(reg); setType(t);                      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  public OopMapValue(VMReg reg, OopTypes t, VMReg reg2) { setReg(reg); setType(t); setContentReg(reg2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  public OopMapValue(CompressedReadStream stream)       { readFrom(stream);                             }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  public void readFrom(CompressedReadStream stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    setValue((short) stream.readInt());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    if (isCalleeSaved() || isDerivedOop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
      setContentReg(new VMReg(stream.readInt()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Querying
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  public boolean isOop()         { return (getValue() & TYPE_MASK_IN_PLACE) == OOP_VALUE;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  public boolean isValue()       { return (getValue() & TYPE_MASK_IN_PLACE) == VALUE_VALUE;        }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   109
  public boolean isNarrowOop()   { return (getValue() & TYPE_MASK_IN_PLACE) == NARROWOOP_VALUE;    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  public boolean isCalleeSaved() { return (getValue() & TYPE_MASK_IN_PLACE) == CALLEE_SAVED_VALUE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  public boolean isDerivedOop()  { return (getValue() & TYPE_MASK_IN_PLACE) == DERIVED_OOP_VALUE;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  public VMReg getReg() { return new VMReg((getValue() & REGISTER_MASK_IN_PLACE) >> REGISTER_SHIFT); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  public void  setReg(VMReg r) { setValue((short) (r.getValue() << REGISTER_SHIFT | (getValue() & TYPE_MASK_IN_PLACE))); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  public OopTypes getType() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    int which = (getValue() & TYPE_MASK_IN_PLACE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
         if (which == UNUSED_VALUE) return OopTypes.UNUSED_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    else if (which == OOP_VALUE)    return OopTypes.OOP_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    else if (which == VALUE_VALUE)  return OopTypes.VALUE_VALUE;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   121
    else if (which == NARROWOOP_VALUE)   return OopTypes.NARROWOOP_VALUE;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    else if (which == CALLEE_SAVED_VALUE) return OopTypes.CALLEE_SAVED_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    else if (which == DERIVED_OOP_VALUE)  return OopTypes.DERIVED_OOP_VALUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    else throw new InternalError("unknown which " + which + " (TYPE_MASK_IN_PLACE = " + TYPE_MASK_IN_PLACE + ")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  public void setType(OopTypes t) { setValue((short) ((getValue() & REGISTER_MASK_IN_PLACE) | t.getValue())); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  public VMReg getContentReg()        { return new VMReg(contentReg); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  public void  setContentReg(VMReg r) { contentReg = (short) r.getValue(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  /** Physical location queries */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  public boolean isRegisterLoc()      { return (getReg().lessThan(VM.getVM().getVMRegImplInfo().getStack0())); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  public boolean isStackLoc()         { return (getReg().greaterThanOrEqual(VM.getVM().getVMRegImplInfo().getStack0())); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  /** Returns offset from sp. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  public int getStackOffset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
      Assert.that(isStackLoc(), "must be stack location");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    return getReg().minus(VM.getVM().getVMRegImplInfo().getStack0());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  //--------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Internals only below this point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  private void setValue(short value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    this.value = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  private int getValue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    return value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}