changeset 11338:87cab8081da4

removed dead code for HotSpotInstalledCode in CodeInstaller::site_Call
author twisti
date Fri, 16 Aug 2013 17:22:34 -0700
parents 39e83065426e
children ca5054bbfcdd
files src/share/vm/graal/graalCodeInstaller.cpp
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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));