comparison src/share/vm/jvmci/jvmciRuntime.hpp @ 23337:62804a7d3877

Remove `desc` argument from JVMCIRuntime::throw_class_cast_exception.
author Roland Schatz <roland.schatz@oracle.com>
date Fri, 25 Mar 2016 13:30:32 +0100
parents e0a15983ab51
children 041534002323
comparison
equal deleted inserted replaced
23336:90da61843aa4 23337:62804a7d3877
219 219
220 // used to throw exceptions from compiled JVMCI code 220 // used to throw exceptions from compiled JVMCI code
221 static void throw_and_post_jvmti_exception(JavaThread* thread, Symbol* exception, const char* message); 221 static void throw_and_post_jvmti_exception(JavaThread* thread, Symbol* exception, const char* message);
222 // helper methods to throw exception with complex messages 222 // helper methods to throw exception with complex messages
223 static void throw_klass_external_name_exception(JavaThread* thread, Symbol* exception, Klass* klass); 223 static void throw_klass_external_name_exception(JavaThread* thread, Symbol* exception, Klass* klass);
224 static void throw_class_cast_exception(JavaThread* thread, Symbol* exception, Klass* objKlass, Klass* targetKlass, const char* desc); 224 static void throw_class_cast_exception(JavaThread* thread, Symbol* exception, Klass* caster_klass, Klass* target_klass);
225 225
226 // Test only function 226 // Test only function
227 static int test_deoptimize_call_int(JavaThread* thread, int value); 227 static int test_deoptimize_call_int(JavaThread* thread, int value);
228 }; 228 };
229 229