comparison src/cpu/x86/vm/stubGenerator_x86_64.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
3100 StubRoutines::x86::_get_previous_fp_entry = generate_get_previous_fp(); 3100 StubRoutines::x86::_get_previous_fp_entry = generate_get_previous_fp();
3101 StubRoutines::x86::_get_previous_sp_entry = generate_get_previous_sp(); 3101 StubRoutines::x86::_get_previous_sp_entry = generate_get_previous_sp();
3102 3102
3103 StubRoutines::x86::_verify_mxcsr_entry = generate_verify_mxcsr(); 3103 StubRoutines::x86::_verify_mxcsr_entry = generate_verify_mxcsr();
3104 3104
3105 // Build this early so it's available for the interpreter. Stub
3106 // expects the required and actual types as register arguments in
3107 // j_rarg0 and j_rarg1 respectively.
3108 StubRoutines::_throw_WrongMethodTypeException_entry =
3109 generate_throw_exception("WrongMethodTypeException throw_exception",
3110 CAST_FROM_FN_PTR(address, SharedRuntime::throw_WrongMethodTypeException),
3111 rax, rcx);
3112
3113 // Build this early so it's available for the interpreter. 3105 // Build this early so it's available for the interpreter.
3114 StubRoutines::_throw_StackOverflowError_entry = 3106 StubRoutines::_throw_StackOverflowError_entry =
3115 generate_throw_exception("StackOverflowError throw_exception", 3107 generate_throw_exception("StackOverflowError throw_exception",
3116 CAST_FROM_FN_PTR(address, 3108 CAST_FROM_FN_PTR(address,
3117 SharedRuntime:: 3109 SharedRuntime::