comparison src/cpu/zero/vm/methodHandles_zero.hpp @ 6926:a3e2f723f2a5

8000780: make Zero build and run with JDK8 Reviewed-by: coleenp, dholmes, twisti Contributed-by: Roman Kennke <rkennke@redhat.com>
author twisti
date Mon, 29 Oct 2012 11:08:48 -0700
parents b9a9ed0f8eeb
children
comparison
equal deleted inserted replaced
6915:a516debe2cee 6926:a3e2f723f2a5
24 */ 24 */
25 25
26 26
27 // Adapters 27 // Adapters
28 enum /* platform_dependent_constants */ { 28 enum /* platform_dependent_constants */ {
29 adapter_code_size = 0 29 adapter_code_size = sizeof(ZeroEntry) * (Interpreter::method_handle_invoke_LAST - Interpreter::method_handle_invoke_FIRST + 1)
30 }; 30 };
31 31
32 private:
33 static oop popFromStack(TRAPS);
34 static void invoke_target(Method* method, TRAPS);
35 static int method_handle_entry_invokeBasic(Method* method, intptr_t UNUSED, TRAPS);
36 static int method_handle_entry_linkToStaticOrSpecial(Method* method, intptr_t UNUSED, TRAPS);
37 static int method_handle_entry_linkToVirtual(Method* method, intptr_t UNUSED, TRAPS);
38 static int method_handle_entry_linkToInterface(Method* method, intptr_t UNUSED, TRAPS);
39 static int method_handle_entry_invalid(Method* method, intptr_t UNUSED, TRAPS);