comparison src/share/vm/interpreter/interpreterRuntime.cpp @ 21559:be896a1983c0

recast all Graal native code as JVMCI code (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Thu, 28 May 2015 15:36:48 +0200
parents 7848fc12602b
children
comparison
equal deleted inserted replaced
21558:d563baeca9df 21559:be896a1983c0
473 should_repeat = true; 473 should_repeat = true;
474 } 474 }
475 } 475 }
476 } while (should_repeat == true); 476 } while (should_repeat == true);
477 477
478 #ifdef GRAAL 478 #ifdef JVMCI
479 if (h_method->method_data() != NULL) { 479 if (h_method->method_data() != NULL) {
480 ResourceMark rm(thread); 480 ResourceMark rm(thread);
481 ProfileData* pdata = h_method->method_data()->allocate_bci_to_data(current_bci, NULL); 481 ProfileData* pdata = h_method->method_data()->allocate_bci_to_data(current_bci, NULL);
482 if (pdata != NULL && pdata->is_BitData()) { 482 if (pdata != NULL && pdata->is_BitData()) {
483 BitData* bit_data = (BitData*) pdata; 483 BitData* bit_data = (BitData*) pdata;