Re: RFR: 8341924: Improve error message with structurally malformed Code array

2024-10-12 Thread Abdelhak Zaaim
On Fri, 11 Oct 2024 05:39:20 GMT, Chen Liang wrote: > Patch a tableswitch instruction's low value to be greater than a high value, > previously, javap will not print any previous instruction and report > problematic address/bci to be 0. This is because the iteration of bound > models require f

Re: RFR: 8341924: Improve error message with structurally malformed Code array

2024-10-11 Thread Adam Sotona
On Fri, 11 Oct 2024 05:39:20 GMT, Chen Liang wrote: > Patch a tableswitch instruction's low value to be greater than a high value, > previously, javap will not print any previous instruction and report > problematic address/bci to be 0. This is because the iteration of bound > models require f

RFR: 8341924: Improve error message with structurally malformed Code array

2024-10-10 Thread Chen Liang
Patch a tableswitch instruction's low value to be greater than a high value, previously, javap will not print any previous instruction and report problematic address/bci to be 0. This is because the iteration of bound models require first collecting all data into a buffer list. We call the eager