Skip to content

Commit

Permalink
Remove unused field from Method
Browse files Browse the repository at this point in the history
Reviewed-by: hseigel, lfoltan
  • Loading branch information
fparain committed Jan 26, 2021
1 parent 6d8a8cc commit 2f35fb7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/hotspot/share/oops/method.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ class Method : public Metadata {
// NULL only at safepoints (because of a de-opt).
CompiledMethod* volatile _code; // Points to the corresponding piece of native code
volatile address _from_interpreted_entry; // Cache of _code ? _adapter->i2c_entry() : _i2i_entry
int _max_vt_buffer; // max number of VT buffer chunk to use before recycling

#if INCLUDE_AOT && defined(TIERED)
CompiledMethod* _aot_code;
Expand Down Expand Up @@ -765,8 +764,6 @@ class Method : public Metadata {
static int intrinsic_id_offset_in_bytes() { return offset_of(Method, _intrinsic_id); }
static int intrinsic_id_size_in_bytes() { return sizeof(u2); }

static ByteSize max_vt_buffer_offset() { return byte_offset_of(Method, _max_vt_buffer); }

// Static methods that are used to implement member methods where an exposed this pointer
// is needed due to possible GCs
static objArrayHandle resolved_checked_exceptions_impl(Method* method, TRAPS);
Expand Down

0 comments on commit 2f35fb7

Please sign in to comment.