diff src/share/vm/graal/graalCodeInstaller.cpp @ 5553:511612d1b5c1

Fix renamings in C++ part.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 09 Jun 2012 22:50:50 +0200
parents e318468952f5
children 70f715dfbb41
line wrap: on
line diff
--- a/src/share/vm/graal/graalCodeInstaller.cpp	Sat Jun 09 21:50:02 2012 +0200
+++ b/src/share/vm/graal/graalCodeInstaller.cpp	Sat Jun 09 22:50:50 2012 +0200
@@ -529,7 +529,7 @@
   // jint next_pc_offset = Assembler::locate_next_instruction(instruction) - _instructions->start();
   _debug_recorder->add_safepoint(pc_offset, -1, create_oop_map(_total_frame_size, _parameter_count, debug_info));
 
-  oop code_pos = CiDebugInfo::codePos(debug_info);
+  oop code_pos = CiDebugInfo::bytecodePosition(debug_info);
   record_scope(pc_offset, code_pos, new GrowableArray<ScopeValue*>());
 
   _debug_recorder->end_safepoint(pc_offset);
@@ -641,7 +641,7 @@
   }
 
   if (debug_info != NULL) {
-    oop frame = CiDebugInfo::codePos(debug_info);
+    oop frame = CiDebugInfo::bytecodePosition(debug_info);
     _debug_recorder->add_safepoint(next_pc_offset, CiFrame::leafGraphId(frame), create_oop_map(_total_frame_size, _parameter_count, debug_info));
     record_scope(next_pc_offset, frame, new GrowableArray<ScopeValue*>());
   }