7078382: JSR 292: don't count method handle adapters against inlining budgets

Reviewed-by: kvn, never
This commit is contained in:
Christian Thalinger 2011-08-31 01:40:45 -07:00
parent 5903a384b4
commit 05b60b3662
6 changed files with 41 additions and 7 deletions

View file

@ -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();