src/share/vm/opto/parseHelper.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/opto/parseHelper.cpp

src/share/vm/opto/parseHelper.cpp

Print this page
rev 5464 : 8024070: C2 needs some form of type speculation
Summary: record unused type profile information with type system, propagate and use it.
Reviewed-by:

*** 126,136 **** } return; } // Push the bool result back on stack ! Node* res = gen_instanceof(peek(), makecon(TypeKlassPtr::make(klass))); // Pop from stack AFTER gen_instanceof because it can uncommon trap. pop(); push(res); } --- 126,136 ---- } return; } // Push the bool result back on stack ! Node* res = gen_instanceof(peek(), makecon(TypeKlassPtr::make(klass)), true); // Pop from stack AFTER gen_instanceof because it can uncommon trap. pop(); push(res); }
src/share/vm/opto/parseHelper.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File