RFR: 8263377: Store method handle linkers in the 'non-nmethods' heap

Jorn Vernee jvernee at openjdk.java.net
Wed Jun 1 16:32:14 UTC 2022


On Tue, 17 May 2022 23:19:54 GMT, Yi-Fan Tsai <duke at openjdk.java.net> wrote:

> 8263377: Store method handle linkers in the 'non-nmethods' heap

src/hotspot/share/code/codeBlob.hpp line 468:

> 466:   MethodHandleIntrinsicBlob(Method* method, int mhi_size, CodeBuffer *code_buffer);
> 467: 
> 468:   Method*   _method;

Sorry, I know that this is still a draft (I was taking a sneak peak), but note that `BufferBlob` subclasses have a fixed header size `sizeof(BufferBlob)` (see the `BufferBlob` constructor in codeBlob.cpp).

Adding a field here can lead to the the start of the code section being overwritten. Just FYI, in case you were encountering any weird bugs.

I think the right move, if you want to add a field here, is to extend `RuntimeBlob` directly, and pass the right header size to the super constructor (or pass the right header size from all `BufferBlob` subclasses).

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

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


More information about the hotspot-dev mailing list