src/hotspot/share/interpreter/interpreterRuntime.hpp
changeset 49368 2ed1c37df3a5
parent 47770 32d741a2b271
child 49480 d7df2dd501ce
--- a/src/hotspot/share/interpreter/interpreterRuntime.hpp	Fri Mar 09 12:03:20 2018 -0500
+++ b/src/hotspot/share/interpreter/interpreterRuntime.hpp	Thu Feb 08 09:23:49 2018 +0100
@@ -118,7 +118,15 @@
 
   // Exceptions thrown by the interpreter
   static void    throw_AbstractMethodError(JavaThread* thread);
+  static void    throw_AbstractMethodErrorWithMethod(JavaThread* thread, Method* oop);
+  static void    throw_AbstractMethodErrorVerbose(JavaThread* thread,
+                                                  Klass* recvKlass,
+                                                  Method* missingMethod);
+
   static void    throw_IncompatibleClassChangeError(JavaThread* thread);
+  static void    throw_IncompatibleClassChangeErrorVerbose(JavaThread* thread,
+                                                           Klass* resc,
+                                                           Klass* interfaceKlass);
   static void    throw_StackOverflowError(JavaThread* thread);
   static void    throw_delayed_StackOverflowError(JavaThread* thread);
   static void    throw_ArrayIndexOutOfBoundsException(JavaThread* thread, char* name, jint index);