# HG changeset patch # User anoll # Date 1378792297 -7200 # Node ID 72a567cce06fc70c752fed5bbe7e04928323bc90 # Parent cd16d587b0fac4d4d0f756126e2a3e36b0a2fa83 8024473: Remove unused macro: IRT_ENTRY_FOR_NMETHOD Summary: Removed unused macro Reviewed-by: kvn, adlertz diff -r cd16d587b0fa -r 72a567cce06f src/share/vm/runtime/interfaceSupport.hpp --- a/src/share/vm/runtime/interfaceSupport.hpp Mon Sep 09 19:53:28 2013 +0200 +++ b/src/share/vm/runtime/interfaceSupport.hpp Tue Sep 10 07:51:37 2013 +0200 @@ -471,16 +471,6 @@ VM_ENTRY_BASE(result_type, header, thread) \ debug_only(VMEntryWrapper __vew;) -// Another special case for nmethod_entry_point so the nmethod that the -// interpreter is about to branch to doesn't get flushed before as we -// branch to it's interpreter_entry_point. Skip stress testing here too. -// Also we don't allow async exceptions because it is just too painful. -#define IRT_ENTRY_FOR_NMETHOD(result_type, header) \ - result_type header { \ - nmethodLocker _nmlock(nm); \ - ThreadInVMfromJavaNoAsyncException __tiv(thread); \ - VM_ENTRY_BASE(result_type, header, thread) - #define IRT_END }