hotspot/src/share/vm/interpreter/interpreterRuntime.cpp
changeset 37449 1b4042cde136
parent 37296 613278eb2a1e
parent 37435 e7aff5e5eff9
child 37480 291ee208fb72
--- a/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp	Fri Apr 08 12:36:27 2016 -0400
+++ b/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp	Mon Apr 11 20:16:35 2016 +0200
@@ -313,18 +313,7 @@
   THROW_HANDLE(exception);
 IRT_END
 
-IRT_ENTRY(address, InterpreterRuntime::check_ReservedStackAccess_annotated_methods(JavaThread* thread))
-  frame fr = thread->last_frame();
-  assert(fr.is_java_frame(), "Must be a Java frame");
-  frame activation = SharedRuntime::look_for_reserved_stack_annotated_method(thread, fr);
-  if (activation.sp() != NULL) {
-    thread->disable_stack_reserved_zone();
-    thread->set_reserved_stack_activation((address)activation.unextended_sp());
-  }
-  return (address)activation.sp();
-IRT_END
-
- IRT_ENTRY(void, InterpreterRuntime::throw_delayed_StackOverflowError(JavaThread* thread))
+IRT_ENTRY(void, InterpreterRuntime::throw_delayed_StackOverflowError(JavaThread* thread))
   Handle exception = get_preinitialized_exception(
                                  SystemDictionary::StackOverflowError_klass(),
                                  CHECK);