comparison src/share/vm/interpreter/interpreterRuntime.cpp @ 10479:40b8c383bc31

Throw InvalidInstalledCodeException directly in the stubs.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 23 Jun 2013 15:49:01 +0200
parents 836a62f43af9
children 3cce976666d9
comparison
equal deleted inserted replaced
10478:dd3333e4f182 10479:40b8c383bc31
498 498
499 IRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeError(JavaThread* thread)) 499 IRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeError(JavaThread* thread))
500 THROW(vmSymbols::java_lang_IncompatibleClassChangeError()); 500 THROW(vmSymbols::java_lang_IncompatibleClassChangeError());
501 IRT_END 501 IRT_END
502 502
503
504 IRT_ENTRY(void, InterpreterRuntime::throw_InvalidInstalledCodeException(JavaThread* thread))
505 THROW(vmSymbols::com_oracle_graal_api_code_InvalidInstalledCodeException());
506 IRT_END
503 507
504 //------------------------------------------------------------------------------------------------------------------------ 508 //------------------------------------------------------------------------------------------------------------------------
505 // Fields 509 // Fields
506 // 510 //
507 511