RFR: 8256516: Simplify clearing References

Aleksey Shipilev shade at openjdk.java.net
Thu Nov 19 08:04:04 UTC 2020


On Wed, 18 Nov 2020 23:48:46 GMT, Kim Barrett <kbarrett at openjdk.org> wrote:

>> src/hotspot/share/gc/shared/referenceProcessor.hpp line 123:
>> 
>>> 121: 
>>> 122:   // Apply the keep_alive function to the referent address.
>>> 123:   void make_referent_alive();
>> 
>> I wonder if moving this from the `.hpp` to `.cpp` has performance implications for callers. Maybe move to `.inline.hpp`?
>
> The reason for moving it out of the .hpp was of course that the
> change to call java_lang_ref_Reference::referent_addr_raw needs to #include
> javaClasses.inline.hpp.
> 
> I don't see this move having any measureable performance difference, and not
> even sure what the sign of any change might be.  A better refactoring might
> be to package up the common remove/make_referent_alive/move_to_next sequence.

Yeah, it is probably only affects the path that is infrequently taken, i.e. marking through the resurrected referents during weak reference processing, that is probably only finalizers. It is fine to have it in `.cpp`.

-------------

PR: https://git.openjdk.java.net/jdk/pull/1286


More information about the hotspot-dev mailing list