# HG changeset patch # User twisti # Date 1376698954 25200 # Node ID 87cab8081da4503613c92b1492c5856f0e0e302d # Parent 39e83065426eda7cc04a04ea8d298683f1d65322 removed dead code for HotSpotInstalledCode in CodeInstaller::site_Call diff -r 39e83065426e -r 87cab8081da4 src/share/vm/graal/graalCodeInstaller.cpp --- a/src/share/vm/graal/graalCodeInstaller.cpp Sat Aug 17 00:54:06 2013 +0200 +++ b/src/share/vm/graal/graalCodeInstaller.cpp Fri Aug 16 17:22:34 2013 -0700 @@ -732,14 +732,6 @@ NativeInstruction* inst = nativeInstruction_at(_instructions->start() + pc_offset); jint next_pc_offset = CodeInstaller::pd_next_offset(inst, pc_offset, hotspot_method); - if (target->is_a(SystemDictionary::HotSpotInstalledCode_klass())) { - assert(inst->is_jump(), "jump expected"); - CodeBlob* cb = (CodeBlob*) (address) HotSpotInstalledCode::codeBlob(target); - assert(cb != NULL, "npe"); - CodeInstaller::pd_relocate_CodeBlob(cb, inst); - return; - } - if (debug_info != NULL) { oop frame = DebugInfo::bytecodePosition(debug_info); _debug_recorder->add_safepoint(next_pc_offset, create_oop_map(_total_frame_size, _parameter_count, debug_info));