hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/VFrame.java
changeset 10517 f92c9ff3a15f
parent 5547 f4b087cbb361
child 28369 a62a208f18de
equal deleted inserted replaced
10516:2797e487c09f 10517:f92c9ff3a15f
    75             scope = nm.getScopeDescAt(f.getPC());
    75             scope = nm.getScopeDescAt(f.getPC());
    76           }
    76           }
    77           return new CompiledVFrame(f, regMap, thread, scope, mayBeImprecise);
    77           return new CompiledVFrame(f, regMap, thread, scope, mayBeImprecise);
    78         }
    78         }
    79 
    79 
    80         if (f.isGlueFrame()) {
    80         if (f.isRuntimeFrame()) {
    81           // This is a conversion frame. Skip this frame and try again.
    81           // This is a conversion frame. Skip this frame and try again.
    82           RegisterMap tempMap = regMap.copy();
    82           RegisterMap tempMap = regMap.copy();
    83           Frame s = f.sender(tempMap);
    83           Frame s = f.sender(tempMap);
    84           return newVFrame(s, tempMap, thread, unsafe, false);
    84           return newVFrame(s, tempMap, thread, unsafe, false);
    85         }
    85         }