RFR: 8287647: VM debug support: find node by pattern in name or dump [v2]

Emanuel Peter epeter at openjdk.java.net
Mon Jun 13 11:29:17 UTC 2022


On Mon, 13 Jun 2022 08:37:59 GMT, Christian Hagedorn <chagedorn at openjdk.org> wrote:

>> Emanuel Peter has updated the pull request incrementally with one additional commit since the last revision:
>> 
>>   changes responding to review by Christian and Roberto
>
> src/hotspot/share/opto/node.cpp line 1712:
> 
>> 1710:       strncpy(buf, r, r_part_len);
>> 1711:       buf[r_part_len] = '\0'; // end of string
>> 1712:       r_part = &buf[0]; // cast array to char*
> 
> Suggestion:
> 
>       r_part = buf;

checking if I can do that, remember I had some issues with a platform.

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

PR: https://git.openjdk.org/jdk/pull/8988


More information about the hotspot-compiler-dev mailing list