comparison src/share/vm/interpreter/interpreterRuntime.hpp @ 14957:4062efea018b

Remove compiled method call intrinsic.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 03 Apr 2014 17:47:29 +0200
parents 4ca6dc0799b6
children 52b4284cb496
comparison
equal deleted inserted replaced
14953:5a87cbdd8a09 14957:4062efea018b
87 static void quicken_io_cc(JavaThread* thread); 87 static void quicken_io_cc(JavaThread* thread);
88 88
89 // Exceptions thrown by the interpreter 89 // Exceptions thrown by the interpreter
90 static void throw_AbstractMethodError(JavaThread* thread); 90 static void throw_AbstractMethodError(JavaThread* thread);
91 static void throw_IncompatibleClassChangeError(JavaThread* thread); 91 static void throw_IncompatibleClassChangeError(JavaThread* thread);
92 static void throw_InvalidInstalledCodeException(JavaThread* thread);
93 static void throw_StackOverflowError(JavaThread* thread); 92 static void throw_StackOverflowError(JavaThread* thread);
94 static void throw_ArrayIndexOutOfBoundsException(JavaThread* thread, char* name, jint index); 93 static void throw_ArrayIndexOutOfBoundsException(JavaThread* thread, char* name, jint index);
95 static void throw_ClassCastException(JavaThread* thread, oopDesc* obj); 94 static void throw_ClassCastException(JavaThread* thread, oopDesc* obj);
96 static void create_exception(JavaThread* thread, char* name, char* message); 95 static void create_exception(JavaThread* thread, char* name, char* message);
97 static void create_klass_exception(JavaThread* thread, char* name, oopDesc* obj); 96 static void create_klass_exception(JavaThread* thread, char* name, oopDesc* obj);