comparison src/share/vm/graal/graalCodeInstaller.cpp @ 4223:e0a4668c57a2

Renaming of VMExits and VMEntries part 4.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 04 Jan 2012 22:08:17 +0100
parents bcbb918f5ac6
children 8074251d1e05
comparison
equal deleted inserted replaced
4222:8e2985cdaaa5 4223:e0a4668c57a2
461 oop caller_pos = CiCodePos::caller(code_pos); 461 oop caller_pos = CiCodePos::caller(code_pos);
462 if (caller_pos != NULL) { 462 if (caller_pos != NULL) {
463 record_scope(pc_offset, caller_pos, objects); 463 record_scope(pc_offset, caller_pos, objects);
464 } 464 }
465 oop frame = NULL; 465 oop frame = NULL;
466 if (code_pos->klass()->klass_part()->name() == vmSymbols::com_sun_cri_ci_CiFrame()) { 466 if (code_pos->klass()->klass_part()->name() == vmSymbols::com_oracle_max_cri_ci_CiFrame()) {
467 frame = code_pos; 467 frame = code_pos;
468 } 468 }
469 469
470 oop hotspot_method = CiCodePos::method(code_pos); 470 oop hotspot_method = CiCodePos::method(code_pos);
471 methodOop method = getMethodFromHotSpotMethod(hotspot_method); 471 methodOop method = getMethodFromHotSpotMethod(hotspot_method);
620 oop hotspot_method = NULL; // RiMethod 620 oop hotspot_method = NULL; // RiMethod
621 oop global_stub = NULL; 621 oop global_stub = NULL;
622 622
623 if (target_klass->is_subclass_of(SystemDictionary::Long_klass())) { 623 if (target_klass->is_subclass_of(SystemDictionary::Long_klass())) {
624 global_stub = target; 624 global_stub = target;
625 } else if (target_klass->name() == vmSymbols::com_sun_cri_ci_CiRuntimeCall()) { 625 } else if (target_klass->name() == vmSymbols::com_oracle_max_cri_ci_CiRuntimeCall()) {
626 runtime_call = target; 626 runtime_call = target;
627 } else { 627 } else {
628 hotspot_method = target; 628 hotspot_method = target;
629 } 629 }
630 630