Re: RFR: 8339876: Move constant symbol caches to Utf8EntryImpl

2024-09-12 Thread Chen Liang
On Thu, 12 Sep 2024 07:13:08 GMT, ExE Boss wrote: >> Some type descriptors are validated against generic utf8 entries, such as >> field or method types; we can cache a type descriptor wrapping the content >> of the utf8 entry if this entry is ever used as a type descriptor. >> >> This patch is

Re: RFR: 8339876: Move constant symbol caches to Utf8EntryImpl

2024-09-12 Thread Claes Redestad
On Wed, 11 Sep 2024 23:31:33 GMT, Chen Liang wrote: > Some type descriptors are validated against generic utf8 entries, such as > field or method types; we can cache a type descriptor wrapping the content of > the utf8 entry if this entry is ever used as a type descriptor. > > This patch is mo

Re: RFR: 8339876: Move constant symbol caches to Utf8EntryImpl

2024-09-12 Thread ExE Boss
On Wed, 11 Sep 2024 23:31:33 GMT, Chen Liang wrote: > Some type descriptors are validated against generic utf8 entries, such as > field or method types; we can cache a type descriptor wrapping the content of > the utf8 entry if this entry is ever used as a type descriptor. > > This patch is mo

RFR: 8339876: Move constant symbol caches to Utf8EntryImpl

2024-09-11 Thread Chen Liang
Some type descriptors are validated against generic utf8 entries, such as field or method types; we can cache a type descriptor wrapping the content of the utf8 entry if this entry is ever used as a type descriptor. This patch is more of a code cleanup; it is performance neutral. -