hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/ImmutableOopMapPair.java
changeset 30630 0c9eb2d41b48
parent 30590 14f7f48c1377
child 30774 6745424a720f
equal deleted inserted replaced
30629:b6e5ad2f18d5 30630:0c9eb2d41b48
    63   public int getOffset() {
    63   public int getOffset() {
    64     return (int) offsetField.getValue(address);
    64     return (int) offsetField.getValue(address);
    65   }
    65   }
    66 
    66 
    67   private static void initialize(TypeDataBase db) {
    67   private static void initialize(TypeDataBase db) {
    68     Type type = db.lookupType("ImmutableOopMapSet");
    68     Type type = db.lookupType("ImmutableOopMapPair");
    69 
    69 
    70     pcField = type.getCIntegerField("_pc_offset");
    70     pcField = type.getCIntegerField("_pc_offset");
    71     offsetField = type.getCIntegerField("_oopmap_offset");
    71     offsetField = type.getCIntegerField("_oopmap_offset");
    72     classSize = type.getSize();
    72     classSize = type.getSize();
    73   }
    73   }