Re: RFR: 8295537: Debug tracing for resolved java.lang.invoke.CallSite [v3]

2022-10-26 Thread Claes Redestad
On Wed, 26 Oct 2022 05:18:45 GMT, Ioi Lam wrote: >> I've added a `java.lang.invoke.MethodHandle.TRACE_CALLSITE` property to show >> how invokedynamic call sites are resolved. >> >> For example: >> >> >> public class StrConcat { >> static String hello = "Hello"; >> static String world

Re: RFR: 8295537: Debug tracing for resolved java.lang.invoke.CallSite [v3]

2022-10-26 Thread Jorn Vernee
On Wed, 26 Oct 2022 05:18:45 GMT, Ioi Lam wrote: >> I've added a `java.lang.invoke.MethodHandle.TRACE_CALLSITE` property to show >> how invokedynamic call sites are resolved. >> >> For example: >> >> >> public class StrConcat { >> static String hello = "Hello"; >> static String world

Re: RFR: 8295537: Debug tracing for resolved java.lang.invoke.CallSite [v3]

2022-10-25 Thread Ioi Lam
> I've added a `java.lang.invoke.MethodHandle.TRACE_CALLSITE` property to show > how invokedynamic call sites are resolved. > > For example: > > > public class StrConcat { > static String hello = "Hello"; > static String world = "World"; > public static void main(String args[]) { >