hotspot/src/share/vm/c1/c1_Runtime1.cpp
changeset 30590 14f7f48c1377
parent 29474 81a5c5330d08
child 30764 fec48bf5a827
equal deleted inserted replaced
30589:4722e25bfd6d 30590:14f7f48c1377
  1016           assert(caller_code != NULL, "nmethod not found");
  1016           assert(caller_code != NULL, "nmethod not found");
  1017 
  1017 
  1018           // NOTE we use pc() not original_pc() because we already know they are
  1018           // NOTE we use pc() not original_pc() because we already know they are
  1019           // identical otherwise we'd have never entered this block of code
  1019           // identical otherwise we'd have never entered this block of code
  1020 
  1020 
  1021           OopMap* map = caller_code->oop_map_for_return_address(caller_frame.pc());
  1021           const ImmutableOopMap* map = caller_code->oop_map_for_return_address(caller_frame.pc());
  1022           assert(map != NULL, "null check");
  1022           assert(map != NULL, "null check");
  1023           map->print();
  1023           map->print();
  1024           tty->cr();
  1024           tty->cr();
  1025 
  1025 
  1026           Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
  1026           Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);