mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
7089790: integrate bsd-port changes
Co-authored-by: Greg Lewis <glewis@eyesbeyond.com> Co-authored-by: Jung-uk Kim <jkim@freebsd.org> Co-authored-by: Christos Zoulas <christos@zoulas.com> Co-authored-by: Landon Fuller <landonf@plausible.coop> Co-authored-by: The FreeBSD Foundation <board@freebsdfoundation.org> Co-authored-by: Michael Franz <mvfranz@gmail.com> Co-authored-by: Roger Hoover <rhoover@apple.com> Co-authored-by: Alexander Strange <astrange@apple.com> Reviewed-by: kvn, twisti, jrose
This commit is contained in:
parent
52f0eccb24
commit
95c56a472b
291 changed files with 26162 additions and 145 deletions
|
@ -92,7 +92,7 @@ class BytecodePrinter: public BytecodeClosure {
|
|||
// the incoming method. We could lose a line of trace output.
|
||||
// This is acceptable in a debug-only feature.
|
||||
st->cr();
|
||||
st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
|
||||
st->print("[%ld] ", (long) Thread::current()->osthread()->thread_id());
|
||||
method->print_name(st);
|
||||
st->cr();
|
||||
_current_method = method();
|
||||
|
@ -106,7 +106,7 @@ class BytecodePrinter: public BytecodeClosure {
|
|||
}
|
||||
_code = code;
|
||||
int bci = bcp - method->code_base();
|
||||
st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
|
||||
st->print("[%ld] ", (long) Thread::current()->osthread()->thread_id());
|
||||
if (Verbose) {
|
||||
st->print("%8d %4d " INTPTR_FORMAT " " INTPTR_FORMAT " %s",
|
||||
BytecodeCounter::counter_value(), bci, tos, tos2, Bytecodes::name(code));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue