hotspot/src/cpu/zero/vm/methodHandles_zero.cpp
author coleenp
Tue, 22 Dec 2015 11:11:29 -0500
changeset 35214 d86005e0b4c2
parent 30282 6bc6bcda7c91
child 37248 11a660dbbb8e
permissions -rw-r--r--
8074457: Remove the non-Zero CPP Interpreter Summary: Remove cppInterpreter assembly files and reorganize InterpreterGenerator includes Reviewed-by: goetz, bdelsart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     1
/*
30118
dadad0daaab4 8075967: Zero interpreter asserts for SafeFetch<32,N> calls in ObjectMonitor
coleenp
parents: 14294
diff changeset
     2
 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
9136
94ebba447157 7035870: JSR 292: Zero support
twisti
parents: 7397
diff changeset
     3
 * Copyright 2009, 2010, 2011 Red Hat, Inc.
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     5
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     8
 * published by the Free Software Foundation.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     9
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    14
 * accompanied this code).
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    15
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    19
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5423
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5423
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5423
diff changeset
    22
 * questions.
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    23
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    24
 */
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    25
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "precompiled.hpp"
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 30282
diff changeset
    27
#include "interpreter/cppInterpreterGenerator.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/allocation.inline.hpp"
30282
6bc6bcda7c91 8078504: Zero fails to build
sgehwolf
parents: 30118
diff changeset
    30
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "prims/methodHandles.hpp"
5230
6eae8e0ade26 6939731: JSR 292 Zero build fix after 6934494
twisti
parents: 4013
diff changeset
    32
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    33
void MethodHandles::invoke_target(Method* method, TRAPS) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    34
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    35
  JavaThread *thread = (JavaThread *) THREAD;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    36
  ZeroStack *stack = thread->zero_stack();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    37
  InterpreterFrame *frame = thread->top_zero_frame()->as_interpreter_frame();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    38
  interpreterState istate = frame->interpreter_state();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    39
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    40
  // Trim back the stack to put the parameters at the top
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    41
  stack->set_sp(istate->stack() + 1);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    42
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    43
  Interpreter::invoke_method(method, method->from_interpreted_entry(), THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    44
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    45
  // Convert the result
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    46
  istate->set_stack(stack->sp() - 1);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    47
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    48
}
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    49
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    50
oop MethodHandles::popFromStack(TRAPS) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    51
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    52
  JavaThread *thread = (JavaThread *) THREAD;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    53
  InterpreterFrame *frame = thread->top_zero_frame()->as_interpreter_frame();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    54
  interpreterState istate = frame->interpreter_state();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    55
  intptr_t* topOfStack = istate->stack();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    56
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    57
  oop top = STACK_OBJECT(-1);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    58
  MORE_STACK(-1);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    59
  istate->set_stack(topOfStack);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    60
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    61
  return top;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    62
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    63
}
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    64
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    65
int MethodHandles::method_handle_entry_invokeBasic(Method* method, intptr_t UNUSED, TRAPS) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    66
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    67
  JavaThread *thread = (JavaThread *) THREAD;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    68
  InterpreterFrame *frame = thread->top_zero_frame()->as_interpreter_frame();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    69
  interpreterState istate = frame->interpreter_state();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    70
  intptr_t* topOfStack = istate->stack();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    71
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    72
  // 'this' is a MethodHandle. We resolve the target method by accessing this.form.vmentry.vmtarget.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    73
  int numArgs = method->size_of_parameters();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    74
  oop lform1 = java_lang_invoke_MethodHandle::form(STACK_OBJECT(-numArgs)); // this.form
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    75
  oop vmEntry1 = java_lang_invoke_LambdaForm::vmentry(lform1);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    76
  Method* vmtarget = (Method*) java_lang_invoke_MemberName::vmtarget(vmEntry1);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    77
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    78
  invoke_target(vmtarget, THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    79
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    80
  // No deoptimized frames on the stack
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    81
  return 0;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    82
}
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    83
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    84
int MethodHandles::method_handle_entry_linkToStaticOrSpecial(Method* method, intptr_t UNUSED, TRAPS) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    85
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    86
  // Pop appendix argument from stack. This is a MemberName which we resolve to the
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    87
  // target method.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    88
  oop vmentry = popFromStack(THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    89
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    90
  Method* vmtarget = (Method*) java_lang_invoke_MemberName::vmtarget(vmentry);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    91
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    92
  invoke_target(vmtarget, THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    93
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    94
  return 0;
5423
e137714b888e 6949830: 6939134 broke Zero
twisti
parents: 5230
diff changeset
    95
}
e137714b888e 6949830: 6939134 broke Zero
twisti
parents: 5230
diff changeset
    96
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    97
int MethodHandles::method_handle_entry_linkToInterface(Method* method, intptr_t UNUSED, TRAPS) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    98
  JavaThread *thread = (JavaThread *) THREAD;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
    99
  InterpreterFrame *frame = thread->top_zero_frame()->as_interpreter_frame();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   100
  interpreterState istate = frame->interpreter_state();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   101
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   102
  // Pop appendix argument from stack. This is a MemberName which we resolve to the
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   103
  // target method.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   104
  oop vmentry = popFromStack(THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   105
  intptr_t* topOfStack = istate->stack();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   106
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   107
  // Resolve target method by looking up in the receiver object's itable.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   108
  Klass* clazz = java_lang_Class::as_Klass(java_lang_invoke_MemberName::clazz(vmentry));
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   109
  intptr_t vmindex = java_lang_invoke_MemberName::vmindex(vmentry);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   110
  Method* target = (Method*) java_lang_invoke_MemberName::vmtarget(vmentry);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   111
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   112
  int numArgs = target->size_of_parameters();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   113
  oop recv = STACK_OBJECT(-numArgs);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   114
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   115
  InstanceKlass* klass_part = InstanceKlass::cast(recv->klass());
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   116
  itableOffsetEntry* ki = (itableOffsetEntry*) klass_part->start_of_itable();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   117
  int i;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   118
  for ( i = 0 ; i < klass_part->itable_length() ; i++, ki++ ) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   119
    if (ki->interface_klass() == clazz) break;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   120
  }
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   121
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   122
  itableMethodEntry* im = ki->first_method_entry(recv->klass());
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   123
  Method* vmtarget = im[vmindex].method();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   124
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   125
  invoke_target(vmtarget, THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   126
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   127
  return 0;
5230
6eae8e0ade26 6939731: JSR 292 Zero build fix after 6934494
twisti
parents: 4013
diff changeset
   128
}
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   129
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   130
int MethodHandles::method_handle_entry_linkToVirtual(Method* method, intptr_t UNUSED, TRAPS) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   131
  JavaThread *thread = (JavaThread *) THREAD;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   132
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   133
  InterpreterFrame *frame = thread->top_zero_frame()->as_interpreter_frame();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   134
  interpreterState istate = frame->interpreter_state();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   135
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   136
  // Pop appendix argument from stack. This is a MemberName which we resolve to the
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   137
  // target method.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   138
  oop vmentry = popFromStack(THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   139
  intptr_t* topOfStack = istate->stack();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   140
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   141
  // Resolve target method by looking up in the receiver object's vtable.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   142
  intptr_t vmindex = java_lang_invoke_MemberName::vmindex(vmentry);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   143
  Method* target = (Method*) java_lang_invoke_MemberName::vmtarget(vmentry);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   144
  int numArgs = target->size_of_parameters();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   145
  oop recv = STACK_OBJECT(-numArgs);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   146
  Klass* clazz = recv->klass();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   147
  Klass* klass_part = InstanceKlass::cast(clazz);
30118
dadad0daaab4 8075967: Zero interpreter asserts for SafeFetch<32,N> calls in ObjectMonitor
coleenp
parents: 14294
diff changeset
   148
  ResourceMark rm(THREAD);
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   149
  klassVtable* vtable = klass_part->vtable();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   150
  Method* vmtarget = vtable->method_at(vmindex);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   151
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   152
  invoke_target(vmtarget, THREAD);
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   153
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   154
  return 0;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   155
}
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   156
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   157
int MethodHandles::method_handle_entry_invalid(Method* method, intptr_t UNUSED, TRAPS) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   158
  ShouldNotReachHere();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   159
  return 0;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   160
}
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   161
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   162
address MethodHandles::generate_method_handle_interpreter_entry(MacroAssembler* masm,
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   163
                                                                vmIntrinsics::ID iid) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   164
  switch (iid) {
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   165
  case vmIntrinsics::_invokeGeneric:
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   166
  case vmIntrinsics::_compiledLambdaForm:
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   167
    // Perhaps surprisingly, the symbolic references visible to Java are not directly used.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   168
    // They are linked to Java-generated adapters via MethodHandleNatives.linkMethod.
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   169
    // They all allow an appendix argument.
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 30282
diff changeset
   170
    return CppInterpreterGenerator::generate_entry_impl(masm, (address) MethodHandles::method_handle_entry_invalid);
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   171
  case vmIntrinsics::_invokeBasic:
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 30282
diff changeset
   172
    return CppInterpreterGenerator::generate_entry_impl(masm, (address) MethodHandles::method_handle_entry_invokeBasic);
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   173
  case vmIntrinsics::_linkToStatic:
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   174
  case vmIntrinsics::_linkToSpecial:
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 30282
diff changeset
   175
    return CppInterpreterGenerator::generate_entry_impl(masm, (address) MethodHandles::method_handle_entry_linkToStaticOrSpecial);
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   176
  case vmIntrinsics::_linkToInterface:
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 30282
diff changeset
   177
    return CppInterpreterGenerator::generate_entry_impl(masm, (address) MethodHandles::method_handle_entry_linkToInterface);
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   178
  case vmIntrinsics::_linkToVirtual:
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 30282
diff changeset
   179
    return CppInterpreterGenerator::generate_entry_impl(masm, (address) MethodHandles::method_handle_entry_linkToVirtual);
14294
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   180
  default:
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   181
    ShouldNotReachHere();
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   182
    return NULL;
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   183
  }
130e947dfbe6 8000780: make Zero build and run with JDK8
twisti
parents: 9136
diff changeset
   184
}