mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
7083786: dead various dead chunks of code
Reviewed-by: iveresov, kvn
This commit is contained in:
parent
9c87ea9062
commit
fa7c124af1
24 changed files with 2 additions and 180 deletions
|
@ -191,8 +191,6 @@ class nmethod : public CodeBlob {
|
|||
|
||||
jbyte _scavenge_root_state;
|
||||
|
||||
NOT_PRODUCT(bool _has_debug_info; )
|
||||
|
||||
// Nmethod Flushing lock. If non-zero, then the nmethod is not removed
|
||||
// and is not made into a zombie. However, once the nmethod is made into
|
||||
// a zombie, it will be locked one final time if CompiledMethodUnload
|
||||
|
@ -329,11 +327,6 @@ class nmethod : public CodeBlob {
|
|||
methodOop method() const { return _method; }
|
||||
AbstractCompiler* compiler() const { return _compiler; }
|
||||
|
||||
#ifndef PRODUCT
|
||||
bool has_debug_info() const { return _has_debug_info; }
|
||||
void set_has_debug_info(bool f) { _has_debug_info = false; }
|
||||
#endif // NOT PRODUCT
|
||||
|
||||
// type info
|
||||
bool is_nmethod() const { return true; }
|
||||
bool is_java_method() const { return !method()->is_native(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue