hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ppc64/PPC64Frame.java
changeset 30590 14f7f48c1377
parent 29571 6627b10e05f8
equal deleted inserted replaced
30589:4722e25bfd6d 30590:14f7f48c1377
   356       // For C1, the runtime stub might not have oop maps, so set this flag
   356       // For C1, the runtime stub might not have oop maps, so set this flag
   357       // outside of update_register_map.
   357       // outside of update_register_map.
   358       map.setIncludeArgumentOops(cb.callerMustGCArguments());
   358       map.setIncludeArgumentOops(cb.callerMustGCArguments());
   359 
   359 
   360       if (cb.getOopMaps() != null) {
   360       if (cb.getOopMaps() != null) {
   361         OopMapSet.updateRegisterMap(this, cb, map, true);
   361         ImmutableOopMapSet.updateRegisterMap(this, cb, map, true);
   362       }
   362       }
   363     }
   363     }
   364 
   364 
   365     return new PPC64Frame(senderSP, getLink(), senderPC);
   365     return new PPC64Frame(senderSP, getLink(), senderPC);
   366   }
   366   }