comparison src/share/vm/graal/graalCodeInstaller.cpp @ 3091:bee93b329be2

merge
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 28 Jun 2011 19:22:42 +0200
parents 536528f48708 46fe56f202a4
children 5aeb62416609
comparison
equal deleted inserted replaced
3090:536528f48708 3091:bee93b329be2
565 565
566 void CodeInstaller::site_Call(CodeBuffer& buffer, jint pc_offset, oop site) { 566 void CodeInstaller::site_Call(CodeBuffer& buffer, jint pc_offset, oop site) {
567 oop runtime_call = CiTargetMethod_Call::runtimeCall(site); 567 oop runtime_call = CiTargetMethod_Call::runtimeCall(site);
568 oop hotspot_method = CiTargetMethod_Call::method(site); 568 oop hotspot_method = CiTargetMethod_Call::method(site);
569 oop symbol = CiTargetMethod_Call::symbol(site); 569 oop symbol = CiTargetMethod_Call::symbol(site);
570 oop global_stub = CiTargetMethod_Call::globalStubID(site); 570 oop global_stub = CiTargetMethod_Call::stubID(site);
571 571
572 oop debug_info = CiTargetMethod_Call::debugInfo(site); 572 oop debug_info = CiTargetMethod_Call::debugInfo(site);
573 573
574 assert((runtime_call ? 1 : 0) + (hotspot_method ? 1 : 0) + (symbol ? 1 : 0) + (global_stub ? 1 : 0) == 1, "Call site needs exactly one type"); 574 assert((runtime_call ? 1 : 0) + (hotspot_method ? 1 : 0) + (symbol ? 1 : 0) + (global_stub ? 1 : 0) == 1, "Call site needs exactly one type");
575 575