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:
Rachel Protacio 2016-01-07 13:53:20 -05:00
parent 98193d202b
commit 6dac872d4d
15 changed files with 556 additions and 188 deletions

View file

@ -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 {