mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
7078382: JSR 292: don't count method handle adapters against inlining budgets
Reviewed-by: kvn, never
This commit is contained in:
parent
5903a384b4
commit
05b60b3662
6 changed files with 41 additions and 7 deletions
|
@ -157,6 +157,9 @@ class ciMethod : public ciObject {
|
|||
int interpreter_invocation_count() const { check_is_loaded(); return _interpreter_invocation_count; }
|
||||
int interpreter_throwout_count() const { check_is_loaded(); return _interpreter_throwout_count; }
|
||||
|
||||
// Code size for inlining decisions.
|
||||
int code_size_for_inlining();
|
||||
|
||||
int comp_level();
|
||||
int highest_osr_comp_level();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue