< prev index next >

src/hotspot/cpu/zero/methodHandles_zero.hpp

Print this page
@  rev 50381 : 8203188: Add JEP-181 support to the Zero interpreter
|  Reviewed-by: dholmes, chrisphi
~


  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 
  27 // Adapters
  28 enum /* platform_dependent_constants */ {
  29   adapter_code_size = sizeof(ZeroEntry) * (Interpreter::method_handle_invoke_LAST - Interpreter::method_handle_invoke_FIRST + 1)
  30 };
  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);


  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 
  27 // Adapters
  28 enum /* platform_dependent_constants */ {
  29   adapter_code_size = sizeof(ZeroEntry) * (Interpreter::method_handle_invoke_LAST - Interpreter::method_handle_invoke_FIRST + 1)
  30 };
  31 
  32 private:
  33   static oop popFromStack(TRAPS);
  34   static void invoke_target(Method* method, TRAPS);
  35   static void throw_AME(Klass* rcvr, Method* interface_method, TRAPS);
  36   static int method_handle_entry_invokeBasic(Method* method, intptr_t UNUSED, TRAPS);
  37   static int method_handle_entry_linkToStaticOrSpecial(Method* method, intptr_t UNUSED, TRAPS);
  38   static int method_handle_entry_linkToVirtual(Method* method, intptr_t UNUSED, TRAPS);
  39   static int method_handle_entry_linkToInterface(Method* method, intptr_t UNUSED, TRAPS);
  40   static int method_handle_entry_invalid(Method* method, intptr_t UNUSED, TRAPS);
< prev index next >