mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8141564: Convert TraceItables and PrintVtables to Unified Logging
The former -XX:+TraceItables and +PrintVtables flags have been converted to UL options -Xlog:itables=trace and vtables=trace Reviewed-by: acorn, coleenp, dholmes
This commit is contained in:
parent
98193d202b
commit
6dac872d4d
15 changed files with 556 additions and 188 deletions
|
@ -2207,6 +2207,15 @@ void Method::print_on(outputStream* st) const {
|
|||
}
|
||||
}
|
||||
|
||||
void Method::print_linkage_flags(outputStream* st) {
|
||||
access_flags().print_on(st);
|
||||
if (is_default_method()) {
|
||||
st->print("default ");
|
||||
}
|
||||
if (is_overpass()) {
|
||||
st->print("overpass ");
|
||||
}
|
||||
}
|
||||
#endif //PRODUCT
|
||||
|
||||
void Method::print_value_on(outputStream* st) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue