comparison 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
comparison
equal deleted inserted replaced
5552:69a8969dbf40 5553:511612d1b5c1
527 527
528 // address instruction = _instructions->start() + pc_offset; 528 // address instruction = _instructions->start() + pc_offset;
529 // jint next_pc_offset = Assembler::locate_next_instruction(instruction) - _instructions->start(); 529 // jint next_pc_offset = Assembler::locate_next_instruction(instruction) - _instructions->start();
530 _debug_recorder->add_safepoint(pc_offset, -1, create_oop_map(_total_frame_size, _parameter_count, debug_info)); 530 _debug_recorder->add_safepoint(pc_offset, -1, create_oop_map(_total_frame_size, _parameter_count, debug_info));
531 531
532 oop code_pos = CiDebugInfo::codePos(debug_info); 532 oop code_pos = CiDebugInfo::bytecodePosition(debug_info);
533 record_scope(pc_offset, code_pos, new GrowableArray<ScopeValue*>()); 533 record_scope(pc_offset, code_pos, new GrowableArray<ScopeValue*>());
534 534
535 _debug_recorder->end_safepoint(pc_offset); 535 _debug_recorder->end_safepoint(pc_offset);
536 } 536 }
537 537
639 639
640 return; 640 return;
641 } 641 }
642 642
643 if (debug_info != NULL) { 643 if (debug_info != NULL) {
644 oop frame = CiDebugInfo::codePos(debug_info); 644 oop frame = CiDebugInfo::bytecodePosition(debug_info);
645 _debug_recorder->add_safepoint(next_pc_offset, CiFrame::leafGraphId(frame), create_oop_map(_total_frame_size, _parameter_count, debug_info)); 645 _debug_recorder->add_safepoint(next_pc_offset, CiFrame::leafGraphId(frame), create_oop_map(_total_frame_size, _parameter_count, debug_info));
646 record_scope(next_pc_offset, frame, new GrowableArray<ScopeValue*>()); 646 record_scope(next_pc_offset, frame, new GrowableArray<ScopeValue*>());
647 } 647 }
648 648
649 if (runtime_call != NULL) { 649 if (runtime_call != NULL) {