comparison src/share/vm/oops/methodData.cpp @ 14420:abe03600372a

8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling Summary: Implement profiling for c2 jit compilation. Also enable new cppInterpreter features. Reviewed-by: kvn
author goetz
date Sun, 15 Sep 2013 15:28:58 +0200
parents a1ebd310d5c1
children 2b8e28fdf503
comparison
equal deleted inserted replaced
14419:7373e44fa207 14420:abe03600372a
242 } 242 }
243 } 243 }
244 return mdp; 244 return mdp;
245 } 245 }
246 246
247 #ifdef CC_INTERP
248 DataLayout* RetData::advance(MethodData *md, int bci) {
249 return (DataLayout*) md->bci_to_dp(bci);
250 }
251 #endif // CC_INTERP
247 252
248 #ifndef PRODUCT 253 #ifndef PRODUCT
249 void RetData::print_data_on(outputStream* st) { 254 void RetData::print_data_on(outputStream* st) {
250 print_shared(st, "RetData"); 255 print_shared(st, "RetData");
251 uint row; 256 uint row;