mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
Merge
This commit is contained in:
commit
024bb79ec8
46 changed files with 576 additions and 406 deletions
|
@ -684,6 +684,8 @@ class Method : public Metadata {
|
|||
void set_is_old() { _access_flags.set_is_old(); }
|
||||
bool is_obsolete() const { return access_flags().is_obsolete(); }
|
||||
void set_is_obsolete() { _access_flags.set_is_obsolete(); }
|
||||
bool is_deleted() const { return access_flags().is_deleted(); }
|
||||
void set_is_deleted() { _access_flags.set_is_deleted(); }
|
||||
bool on_stack() const { return access_flags().on_stack(); }
|
||||
void set_on_stack(const bool value);
|
||||
|
||||
|
@ -876,6 +878,7 @@ class Method : public Metadata {
|
|||
const char* internal_name() const { return "{method}"; }
|
||||
|
||||
// Check for valid method pointer
|
||||
static bool has_method_vptr(const void* ptr);
|
||||
bool is_valid_method() const;
|
||||
|
||||
// Verify
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue