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

Aleksey Shipilev shade at openjdk.org
Tue Mar 11 16:34:01 UTC 2025


On Tue, 11 Mar 2025 16:22:19 GMT, Martin Doerr <mdoerr at openjdk.org> wrote:

>> src/hotspot/share/interpreter/bytecodeTracer.cpp line 132:
>> 
>>> 130:       st->print("[%zu] ", Thread::current()->osthread()->thread_id_for_printing());
>>> 131:       if (Verbose) {
>>> 132:         st->print("%8zu  %4d  " INTPTR_FORMAT " " INTPTR_FORMAT " %s",
>> 
>> Sounds like there are more than 8 digits now?
>
> 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.

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

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


More information about the hotspot-dev mailing list