comparison src/share/vm/graal/graalCodeInstaller.cpp @ 3080:46fe56f202a4

Sync with maxine changes.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 28 Jun 2011 14:17:06 +0200
parents b7f45b37dd43
children bee93b329be2
comparison
equal deleted inserted replaced
3079:fb38d0a18ba7 3080:46fe56f202a4
523 523
524 void CodeInstaller::site_Call(CodeBuffer& buffer, jint pc_offset, oop site) { 524 void CodeInstaller::site_Call(CodeBuffer& buffer, jint pc_offset, oop site) {
525 oop runtime_call = CiTargetMethod_Call::runtimeCall(site); 525 oop runtime_call = CiTargetMethod_Call::runtimeCall(site);
526 oop hotspot_method = CiTargetMethod_Call::method(site); 526 oop hotspot_method = CiTargetMethod_Call::method(site);
527 oop symbol = CiTargetMethod_Call::symbol(site); 527 oop symbol = CiTargetMethod_Call::symbol(site);
528 oop global_stub = CiTargetMethod_Call::globalStubID(site); 528 oop global_stub = CiTargetMethod_Call::stubID(site);
529 529
530 oop debug_info = CiTargetMethod_Call::debugInfo(site); 530 oop debug_info = CiTargetMethod_Call::debugInfo(site);
531 531
532 assert((runtime_call ? 1 : 0) + (hotspot_method ? 1 : 0) + (symbol ? 1 : 0) + (global_stub ? 1 : 0) == 1, "Call site needs exactly one type"); 532 assert((runtime_call ? 1 : 0) + (hotspot_method ? 1 : 0) + (symbol ? 1 : 0) + (global_stub ? 1 : 0) == 1, "Call site needs exactly one type");
533 533