comparison src/cpu/x86/vm/stubGenerator_x86_32.cpp @ 6266:1d7922586cf6

7023639: JSR 292 method handle invocation needs a fast path for compiled code 6984705: JSR 292 method handle creation should not go through JNI Summary: remove assembly code for JDK 7 chained method handles Reviewed-by: jrose, twisti, kvn, mhaupt Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>
author twisti
date Tue, 24 Jul 2012 10:51:00 -0700
parents 6759698e3140
children 957c266d8bc5 da91efe96a93
comparison
equal deleted inserted replaced
6241:aba91a731143 6266:1d7922586cf6
2325 CAST_FROM_FN_PTR(address, SharedRuntime::d2i)); 2325 CAST_FROM_FN_PTR(address, SharedRuntime::d2i));
2326 StubRoutines::_d2l_wrapper = generate_d2i_wrapper(T_LONG, 2326 StubRoutines::_d2l_wrapper = generate_d2i_wrapper(T_LONG,
2327 CAST_FROM_FN_PTR(address, SharedRuntime::d2l)); 2327 CAST_FROM_FN_PTR(address, SharedRuntime::d2l));
2328 2328
2329 // Build this early so it's available for the interpreter 2329 // Build this early so it's available for the interpreter
2330 StubRoutines::_throw_WrongMethodTypeException_entry =
2331 generate_throw_exception("WrongMethodTypeException throw_exception",
2332 CAST_FROM_FN_PTR(address, SharedRuntime::throw_WrongMethodTypeException),
2333 rax, rcx);
2334
2335 // Build this early so it's available for the interpreter
2336 StubRoutines::_throw_StackOverflowError_entry = generate_throw_exception("StackOverflowError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_StackOverflowError)); 2330 StubRoutines::_throw_StackOverflowError_entry = generate_throw_exception("StackOverflowError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_StackOverflowError));
2337 } 2331 }
2338 2332
2339 2333
2340 void generate_all() { 2334 void generate_all() {