hotspot/src/share/vm/runtime/javaCalls.hpp
author hseigel
Wed, 07 Sep 2016 07:19:48 -0400
changeset 40923 10fe1c28b9f6
parent 40010 e32d5e545789
child 42307 cefc81dc1d52
permissions -rw-r--r--
8058575: IllegalAccessError trying to access package-private class from VM anonymous class Summary: Put anonymous classes in unnamed package into host class's package. Throw exception if host class's package differs from anonymous class. Reviewed-by: coleenp, acorn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 37456
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_JAVACALLS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_JAVACALLS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
    29
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/javaFrameAnchor.hpp"
37456
bf26e0f4235f 8153742: Move Thread::current() to thread.hpp
stefank
parents: 33593
diff changeset
    32
#include "runtime/thread.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/vmThread.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 37456
diff changeset
    34
#include "utilities/macros.hpp"
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 37456
diff changeset
    35
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 37456
diff changeset
    36
#include CPU_HEADER(jniTypes)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// A JavaCallWrapper is constructed before each JavaCall and destructed after the call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Its purpose is to allocate/deallocate a new handle block and to save/restore the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// Java fp/sp. A pointer to the JavaCallWrapper is stored on the stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class JavaCallWrapper: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  JavaThread*      _thread;                 // the thread to which this call belongs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  JNIHandleBlock*  _handles;                // the saved handle block
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
    47
  Method*          _callee_method;          // to be able to collect arguments if entry frame is top frame
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  oop              _receiver;               // the receiver of the call (if a non-static call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  JavaFrameAnchor  _anchor;                 // last thread anchor state that we must restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  JavaValue*       _result;                 // result value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Construction/destruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
   JavaCallWrapper(methodHandle callee_method, Handle receiver, JavaValue* result, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  ~JavaCallWrapper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  JavaThread*      thread() const           { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  JNIHandleBlock*  handles() const          { return _handles; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  JavaFrameAnchor* anchor(void)             { return &_anchor; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  JavaValue*       result() const           { return _result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
    67
  Method*          callee_method()          { return _callee_method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  oop              receiver()               { return _receiver; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  void             oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
18938
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 14583
diff changeset
    71
  bool             is_first_frame() const   { return _anchor.last_Java_sp() == NULL; }
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 14583
diff changeset
    72
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// Encapsulates arguments to a JavaCall (faster, safer, and more convenient than using var-args)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
class JavaCallArguments : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  enum Constants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
   _default_size = 8    // Must be at least # of arguments in JavaCalls methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  intptr_t    _value_buffer [_default_size + 1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  bool        _is_oop_buffer[_default_size + 1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  intptr_t*   _value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  bool*       _is_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  int         _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  int         _max_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  bool        _start_at_zero;      // Support late setting of receiver
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
    91
  JVMCI_ONLY(nmethod*    _alternative_target;) // Nmethod that should be called instead of normal target
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // Starts at first element to support set_receiver.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _value    = &_value_buffer[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    _is_oop   = &_is_oop_buffer[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _max_size = _default_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    _start_at_zero = false;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   101
    JVMCI_ONLY(_alternative_target = NULL;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  JavaCallArguments() { initialize(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  JavaCallArguments(Handle receiver) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    push_oop(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  JavaCallArguments(int max_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    if (max_size > _default_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      _value  = NEW_RESOURCE_ARRAY(intptr_t, max_size + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      _is_oop = NEW_RESOURCE_ARRAY(bool, max_size + 1);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 1623
diff changeset
   116
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      // Reserve room for potential receiver in value and is_oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      _value++; _is_oop++;
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 1623
diff changeset
   119
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      _max_size = max_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      _start_at_zero = false;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   123
      JVMCI_ONLY(_alternative_target = NULL;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   129
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   130
  void set_alternative_target(nmethod* target) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   131
    _alternative_target = target;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   132
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   133
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   134
  nmethod* alternative_target() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   135
    return _alternative_target;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   136
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   137
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 29180
diff changeset
   138
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  inline void push_oop(Handle h)    { _is_oop[_size] = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                               JNITypes::put_obj((oop)h.raw_value(), _value, _size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  inline void push_int(int i)       { _is_oop[_size] = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
                               JNITypes::put_int(i, _value, _size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  inline void push_double(double d) { _is_oop[_size] = false; _is_oop[_size + 1] = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                               JNITypes::put_double(d, _value, _size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  inline void push_long(jlong l)    { _is_oop[_size] = false; _is_oop[_size + 1] = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                               JNITypes::put_long(l, _value, _size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  inline void push_float(float f)   { _is_oop[_size] = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                               JNITypes::put_float(f, _value, _size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  Handle receiver() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    assert(_size > 0, "must at least be one argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    assert(_is_oop[0], "first argument must be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    assert(_value[0] != 0, "receiver must be not-null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    return Handle((oop*)_value[0], false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  void set_receiver(Handle h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    assert(_start_at_zero == false, "can only be called once");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    _start_at_zero = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    _is_oop--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    _value--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    _size++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    _is_oop[0] = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    _value[0] = (intptr_t)h.raw_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // Converts all Handles to oops, and returns a reference to parameter vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  intptr_t* parameters() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  int   size_of_parameters() const { return _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Verify that pushed arguments fits a given method
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   177
  void verify(const methodHandle& method, BasicType return_type, Thread *thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// All calls to Java have to go via JavaCalls. Sets up the stack frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// and makes sure that the last_Java_frame pointers are chained correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
class JavaCalls: AllStatic {
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   185
  static void call_helper(JavaValue* result, const methodHandle& method, JavaCallArguments* args, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // call_special
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // ------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // The receiver must be first oop in argument list
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   190
  static void call_special(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   192
  static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS); // No args
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   193
  static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   194
  static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // virtual call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // ------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // The receiver must be first oop in argument list
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   200
  static void call_virtual(JavaValue* result, KlassHandle spec_klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   202
  static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, TRAPS); // No args
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   203
  static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   204
  static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // Static call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // -----------
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   208
  static void call_static(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   210
  static void call_static(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   211
  static void call_static(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   212
  static void call_static(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // Low-level interface
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   215
  static void call(JavaValue* result, const methodHandle& method, JavaCallArguments* args, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   217
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   218
#endif // SHARE_VM_RUNTIME_JAVACALLS_HPP