Skip to content

Commit e82a12e

Browse files
committedFeb 24, 2022
Add debug print
1 parent 999ada1 commit e82a12e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/hotspot/share/compiler/oopMap.inline.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ void OopMapDo<OopFnT, DerivedOopFnT, ValueFilterT>::iterate_oops_do(const frame
111111
fr->print_on(tty);
112112
}
113113
#endif
114+
if (loc == NULL) {
115+
tty->print("oops reg: "); omv.reg()->print_on(tty); tty->cr();
116+
fr->print_on(tty);
117+
}
114118
guarantee(loc != NULL, "missing saved register");
115119
if ( omv.type() == OopMapValue::oop_value ) {
116120
oop val = *loc;

0 commit comments

Comments
 (0)
Please sign in to comment.