RFR: 8255489: Unify the parsing of @lambda-proxy and @lambda-form-invokers tags in a classlist

Calvin Cheung ccheung at openjdk.java.net
Fri Oct 30 00:40:42 UTC 2020


On Thu, 29 Oct 2020 21:43:16 GMT, Yumin Qi <minqi at openjdk.org> wrote:

> 
> Maybe we don't need change name for _indy_items. First in parse_at_tag:
> if (strcmp(_line, LAMBDA_FORM_TAG, strlen(LAMBDA_FORM_TAG)) ==0) {
> // this is lambda_form_invoker line
> //
> }
> 
> Then check if it is indy index format.

The above is similar to the original code which doesn't do an exact match. For example, it will match `@lambda-form-invokers-xxx` which is incorrect.

I've uploaded another webrev (v. 01) which implements the idea I mentioned in my previous comment.

Thanks,
Calvin

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

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


More information about the hotspot-runtime-dev mailing list