RFR: 8350642: Interpreter: Upgrade CountBytecodes to 64 bit on 64 bit platforms [v2]

Aleksey Shipilev shade at openjdk.org
Tue Mar 11 16:37:58 UTC 2025


On Tue, 11 Mar 2025 16:31:20 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:

>> I thought about this, too, but I don't think it's a problem because the width is specified like this: "Minimum number of characters to be printed. If the value to be printed is shorter than this number, the result is padded with blank spaces. The value is not truncated even if the result is larger." [https://cplusplus.com/reference/cstdio/printf/].
>> Do we want a larger fixed number of digits?
>
> Yeah, it is not about the correctness. It is more about readability: if we expect more than 8 digits, then the "table" we are printing here would be a bit ragged. UINT64_MAX is about 20 digits. In practice we would probably never do this for longer than 1 hour, and with (ballparking) 100M/sec bytecodes, this gives us a practical upper limit of 12 digits or so? My math might be off a digit or two.

Actually, nevermind. I don't think this is useful to adjust. The bytecode counter is global, so it is not a per-bytecode printout like I initially thought.

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

PR Review Comment: https://git.openjdk.org/jdk/pull/23766#discussion_r1989704704


More information about the hotspot-dev mailing list