comparison src/cpu/x86/vm/templateTable_x86_64.cpp @ 2357:8033953d67ff

7012648: move JSR 292 to package java.lang.invoke and adjust names Summary: package and class renaming only; delete unused methods and classes Reviewed-by: twisti
author jrose
date Fri, 11 Mar 2011 22:34:57 -0800
parents bb8e3b66bde6
children 38fea01eb669 e1162778c1c8
comparison
equal deleted inserted replaced
2356:72dee110246f 2357:8033953d67ff
3143 // %%% should make a type profile for any invokedynamic that takes a ref argument 3143 // %%% should make a type profile for any invokedynamic that takes a ref argument
3144 // profile this call 3144 // profile this call
3145 __ profile_call(r13); 3145 __ profile_call(r13);
3146 } 3146 }
3147 3147
3148 __ load_heap_oop(rcx_method_handle, Address(rax_callsite, __ delayed_value(java_dyn_CallSite::target_offset_in_bytes, rcx))); 3148 __ load_heap_oop(rcx_method_handle, Address(rax_callsite, __ delayed_value(java_lang_invoke_CallSite::target_offset_in_bytes, rcx)));
3149 __ null_check(rcx_method_handle); 3149 __ null_check(rcx_method_handle);
3150 __ prepare_to_jump_from_interpreted(); 3150 __ prepare_to_jump_from_interpreted();
3151 __ jump_to_method_handle_entry(rcx_method_handle, rdx); 3151 __ jump_to_method_handle_entry(rcx_method_handle, rdx);
3152 } 3152 }
3153 3153