< prev index next >

src/hotspot/share/memory/dynamicArchive.cpp

Print this page

*** 135,149 **** // a_name points to a Symbol in the top archive. // When this method is called, a_name is still pointing to the output space. // Translate it to point to the output space, so that it can be compared with // Symbols in the base archive. a_name = (Symbol*)(address(a_name) + _method_comparator_name_delta); - //tty->print_cr("%p", a_name); } if (!MetaspaceShared::is_in_shared_metaspace(b_name)) { b_name = (Symbol*)(address(b_name) + _method_comparator_name_delta); - //tty->print_cr("%p", b_name); } return a_name->fast_compare(b_name); } --- 135,147 ----
< prev index next >