mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
Implement profiling for c2 jit compilation. Also enable new cppInterpreter features. Reviewed-by: kvn
This commit is contained in:
parent
34c8023949
commit
0732a739b3
11 changed files with 790 additions and 103 deletions
|
@ -244,6 +244,11 @@ address RetData::fixup_ret(int return_bci, MethodData* h_mdo) {
|
|||
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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue