src/share/vm/oops/methodData.cpp

Print this page
rev 5190 : 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
Summary: Implement profiling for c2 jit compilation. Also enable new cppInterpreter features.

*** 242,251 **** --- 242,256 ---- } } return mdp; } + #ifdef CC_INTERP + DataLayout* RetData::advance(MethodData *md, int bci) { + return (DataLayout*) md->bci_to_dp(bci); + } + #endif // CC_INTERP #ifndef PRODUCT void RetData::print_data_on(outputStream* st) { print_shared(st, "RetData"); uint row;