mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
6978355: renaming for 6961697
This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
This commit is contained in:
parent
3756a7daa9
commit
a4b2fe3b1c
66 changed files with 613 additions and 658 deletions
|
@ -439,7 +439,7 @@ const char* StackWalkCompPolicy::shouldNotInline(methodHandle m) {
|
|||
if (!instanceKlass::cast(m->method_holder())->is_initialized()) return (_msg = "method holder not initialized");
|
||||
if (m->is_native()) return (_msg = "native method");
|
||||
nmethod* m_code = m->code();
|
||||
if( m_code != NULL && m_code->instructions_size() > InlineSmallCode )
|
||||
if (m_code != NULL && m_code->code_size() > InlineSmallCode)
|
||||
return (_msg = "already compiled into a big method");
|
||||
|
||||
// use frequency-based objections only for non-trivial methods
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue