src/hotspot/share/jvmci/jvmciCompilerToVM.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 59016 3b9eeae66fa0
child 59252 623722a6aeb9
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     1
/*
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 53352
diff changeset
     2
 * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     4
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     8
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    13
 * accompanied this code).
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    14
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    18
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    21
 * questions.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    22
 */
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    23
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    24
#include "precompiled.hpp"
58851
f1e6442241ca 8233035: Update JVMCI
kvn
parents: 58793
diff changeset
    25
#include "classfile/classLoaderData.inline.hpp"
49371
59ad6672bf78 8199422: Hotspot build is broken after push of 8197235
kvn
parents: 49370
diff changeset
    26
#include "classfile/javaClasses.inline.hpp"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    27
#include "classfile/stringTable.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    28
#include "classfile/symbolTable.hpp"
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    29
#include "code/scopeDesc.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    30
#include "compiler/compileBroker.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    31
#include "compiler/disassembler.hpp"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    32
#include "interpreter/linkResolver.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    33
#include "interpreter/bytecodeStream.hpp"
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    34
#include "jvmci/jvmciCompilerToVM.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    35
#include "jvmci/jvmciCodeInstaller.hpp"
49370
81bc1dc36a53 8197235: src/hotspot/share/jvmci/jvmciCompilerToVM.cpp takes 4 minutes to compile on windows
kvn
parents: 49358
diff changeset
    36
#include "jvmci/jvmciRuntime.hpp"
59016
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58851
diff changeset
    37
#include "logging/log.hpp"
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58851
diff changeset
    38
#include "logging/logTag.hpp"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    39
#include "memory/oopFactory.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54732
diff changeset
    40
#include "memory/universe.hpp"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    41
#include "oops/constantPool.inline.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    42
#include "oops/method.inline.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    43
#include "oops/typeArrayOop.inline.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    44
#include "prims/nativeLookup.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    45
#include "runtime/deoptimization.hpp"
51467
12997ebbc0d8 8209647: constantPoolHandle::constantPoolHandle(ConstantPool*) when precompiled header is disabled
iklam
parents: 51444
diff changeset
    46
#include "runtime/fieldDescriptor.inline.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49467
diff changeset
    47
#include "runtime/frame.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49371
diff changeset
    48
#include "runtime/interfaceSupport.inline.hpp"
49370
81bc1dc36a53 8197235: src/hotspot/share/jvmci/jvmciCompilerToVM.cpp takes 4 minutes to compile on windows
kvn
parents: 49358
diff changeset
    49
#include "runtime/jniHandles.inline.hpp"
37161
e881f320966e 8150015: Integrate TraceTime with Unified Logging more seamlessly
rehn
parents: 35913
diff changeset
    50
#include "runtime/timerTrace.hpp"
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    51
#include "runtime/vframe_hp.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    52
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    53
JVMCIKlassHandle::JVMCIKlassHandle(Thread* thread, Klass* klass) {
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    54
  _thread = thread;
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    55
  _klass = klass;
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    56
  if (klass != NULL) {
52907
7cc17c043ce0 8214972: Uses of klass_holder() except GC need to apply GC barriers
coleenp
parents: 52645
diff changeset
    57
    _holder = Handle(_thread, klass->klass_holder());
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    58
  }
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    59
}
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    60
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    61
JVMCIKlassHandle& JVMCIKlassHandle::operator=(Klass* klass) {
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    62
  _klass = klass;
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    63
  if (klass != NULL) {
52907
7cc17c043ce0 8214972: Uses of klass_holder() except GC need to apply GC barriers
coleenp
parents: 52645
diff changeset
    64
    _holder = Handle(_thread, klass->klass_holder());
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    65
  }
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    66
  return *this;
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
    67
}
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    68
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    69
static void requireInHotSpot(const char* caller, JVMCI_TRAPS) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    70
  if (!JVMCIENV->is_hotspot()) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    71
    JVMCI_THROW_MSG(IllegalStateException, err_msg("Cannot call %s from JVMCI shared library", caller));
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    72
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    73
}
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    74
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    75
void JNIHandleMark::push_jni_handle_block(JavaThread* thread) {
44092
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    76
  if (thread != NULL) {
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    77
    // Allocate a new block for JNI handles.
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    78
    // Inlined code from jni_PushLocalFrame()
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    79
    JNIHandleBlock* java_handles = thread->active_handles();
44092
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    80
    JNIHandleBlock* compile_handles = JNIHandleBlock::allocate_block(thread);
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    81
    assert(compile_handles != NULL && java_handles != NULL, "should not be NULL");
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    82
    compile_handles->set_pop_frame_link(java_handles);
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    83
    thread->set_active_handles(compile_handles);
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    84
  }
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    85
}
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    86
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
    87
void JNIHandleMark::pop_jni_handle_block(JavaThread* thread) {
44092
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    88
  if (thread != NULL) {
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    89
    // Release our JNI handle block
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    90
    JNIHandleBlock* compile_handles = thread->active_handles();
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    91
    JNIHandleBlock* java_handles = compile_handles->pop_frame_link();
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    92
    thread->set_active_handles(java_handles);
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    93
    compile_handles->set_pop_frame_link(NULL);
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    94
    JNIHandleBlock::release_block(compile_handles, thread); // may block
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    95
  }
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    96
}
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
    97
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    98
class JVMCITraceMark : public StackObj {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    99
  const char* _msg;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   100
 public:
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   101
  JVMCITraceMark(const char* msg) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   102
    _msg = msg;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   103
    if (JVMCITraceLevel >= 1) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   104
      tty->print_cr(PTR_FORMAT " JVMCITrace-1: Enter %s", p2i(JavaThread::current()), _msg);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   105
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   106
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   107
  ~JVMCITraceMark() {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   108
    if (JVMCITraceLevel >= 1) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   109
      tty->print_cr(PTR_FORMAT " JVMCITrace-1: Exit %s", p2i(JavaThread::current()), _msg);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   110
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   111
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   112
};
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   113
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   114
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49371
diff changeset
   115
Handle JavaArgumentUnboxer::next_arg(BasicType expectedType) {
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49371
diff changeset
   116
  assert(_index < _args->length(), "out of bounds");
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49371
diff changeset
   117
  oop arg=((objArrayOop) (_args))->obj_at(_index++);
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49371
diff changeset
   118
  assert(expectedType == T_OBJECT || java_lang_boxing_object::is_instance(arg, expectedType), "arg type mismatch");
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49371
diff changeset
   119
  return Handle(Thread::current(), arg);
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49371
diff changeset
   120
}
44092
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
   121
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   122
// Bring the JVMCI compiler thread into the VM state.
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   123
#define JVMCI_VM_ENTRY_MARK                   \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   124
  ThreadInVMfromNative __tiv(thread);         \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   125
  ResetNoHandleMark rnhm;                     \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   126
  HandleMarkCleaner __hm(thread);             \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   127
  Thread* THREAD = thread;                    \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   128
  debug_only(VMNativeEntryWrapper __vew;)
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   129
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   130
// Native method block that transitions current thread to '_thread_in_vm'.
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   131
#define C2V_BLOCK(result_type, name, signature)      \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   132
  TRACE_CALL(result_type, jvmci_ ## name signature)  \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   133
  JVMCI_VM_ENTRY_MARK;                               \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   134
  ResourceMark rm;                                   \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   135
  JNI_JVMCIENV(thread, env);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   136
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   137
static Thread* get_current_thread() {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   138
  return Thread::current_or_null_safe();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   139
}
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   140
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   141
// Entry to native method implementation that transitions
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   142
// current thread to '_thread_in_vm'.
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   143
#define C2V_VMENTRY(result_type, name, signature)        \
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   144
  JNIEXPORT result_type JNICALL c2v_ ## name signature { \
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   145
  Thread* base_thread = get_current_thread();            \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   146
  if (base_thread == NULL) {                             \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   147
    env->ThrowNew(JNIJVMCI::InternalError::clazz(),      \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   148
        err_msg("Cannot call into HotSpot from JVMCI shared library without attaching current thread")); \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   149
    return;                                              \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   150
  }                                                      \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   151
  assert(base_thread->is_Java_thread(), "just checking");\
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   152
  JavaThread* thread = (JavaThread*) base_thread;        \
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   153
  JVMCITraceMark jtm("CompilerToVM::" #name);            \
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   154
  C2V_BLOCK(result_type, name, signature)
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   155
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   156
#define C2V_VMENTRY_(result_type, name, signature, result) \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   157
  JNIEXPORT result_type JNICALL c2v_ ## name signature { \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   158
  Thread* base_thread = get_current_thread();            \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   159
  if (base_thread == NULL) {                             \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   160
    env->ThrowNew(JNIJVMCI::InternalError::clazz(),      \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   161
        err_msg("Cannot call into HotSpot from JVMCI shared library without attaching current thread")); \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   162
    return result;                                       \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   163
  }                                                      \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   164
  assert(base_thread->is_Java_thread(), "just checking");\
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   165
  JavaThread* thread = (JavaThread*) base_thread;        \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   166
  JVMCITraceMark jtm("CompilerToVM::" #name);            \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   167
  C2V_BLOCK(result_type, name, signature)
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   168
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   169
#define C2V_VMENTRY_NULL(result_type, name, signature) C2V_VMENTRY_(result_type, name, signature, NULL)
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   170
#define C2V_VMENTRY_0(result_type, name, signature) C2V_VMENTRY_(result_type, name, signature, 0)
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   171
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   172
// Entry to native method implementation that does not transition
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   173
// current thread to '_thread_in_vm'.
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   174
#define C2V_VMENTRY_PREFIX(result_type, name, signature) \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   175
  JNIEXPORT result_type JNICALL c2v_ ## name signature { \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   176
  Thread* base_thread = get_current_thread();
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   177
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   178
#define C2V_END }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   179
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   180
#define JNI_THROW(caller, name, msg) do {                                         \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   181
    jint __throw_res = env->ThrowNew(JNIJVMCI::name::clazz(), msg);               \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   182
    if (__throw_res != JNI_OK) {                                                  \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   183
      tty->print_cr("Throwing " #name " in " caller " returned %d", __throw_res); \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   184
    }                                                                             \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   185
    return;                                                                       \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   186
  } while (0);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   187
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   188
#define JNI_THROW_(caller, name, msg, result) do {                                \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   189
    jint __throw_res = env->ThrowNew(JNIJVMCI::name::clazz(), msg);               \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   190
    if (__throw_res != JNI_OK) {                                                  \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   191
      tty->print_cr("Throwing " #name " in " caller " returned %d", __throw_res); \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   192
    }                                                                             \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   193
    return result;                                                                \
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   194
  } while (0)
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   195
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   196
jobjectArray readConfiguration0(JNIEnv *env, JVMCI_TRAPS);
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   197
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   198
C2V_VMENTRY_NULL(jobjectArray, readConfiguration, (JNIEnv* env))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   199
  jobjectArray config = readConfiguration0(env, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   200
  return config;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   201
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   202
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   203
C2V_VMENTRY_NULL(jobject, getFlagValue, (JNIEnv* env, jobject c2vm, jobject name_handle))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   204
#define RETURN_BOXED_LONG(value) jvalue p; p.j = (jlong) (value); JVMCIObject box = JVMCIENV->create_box(T_LONG, &p, JVMCI_CHECK_NULL); return box.as_jobject();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   205
#define RETURN_BOXED_DOUBLE(value) jvalue p; p.d = (jdouble) (value); JVMCIObject box = JVMCIENV->create_box(T_DOUBLE, &p, JVMCI_CHECK_NULL); return box.as_jobject();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   206
  JVMCIObject name = JVMCIENV->wrap(name_handle);
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   207
  if (name.is_null()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   208
    JVMCI_THROW_NULL(NullPointerException);
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   209
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   210
  const char* cstring = JVMCIENV->as_utf8_string(name);
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57499
diff changeset
   211
  const JVMFlag* flag = JVMFlag::find_declared_flag(cstring);
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   212
  if (flag == NULL) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   213
    return c2vm;
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   214
  }
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   215
  if (flag->is_bool()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   216
    jvalue prim;
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   217
    prim.z = flag->get_bool();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   218
    JVMCIObject box = JVMCIENV->create_box(T_BOOLEAN, &prim, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   219
    return JVMCIENV->get_jobject(box);
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   220
  } else if (flag->is_ccstr()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   221
    JVMCIObject value = JVMCIENV->create_string(flag->get_ccstr(), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   222
    return JVMCIENV->get_jobject(value);
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   223
  } else if (flag->is_intx()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   224
    RETURN_BOXED_LONG(flag->get_intx());
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   225
  } else if (flag->is_int()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   226
    RETURN_BOXED_LONG(flag->get_int());
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   227
  } else if (flag->is_uint()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   228
    RETURN_BOXED_LONG(flag->get_uint());
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   229
  } else if (flag->is_uint64_t()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   230
    RETURN_BOXED_LONG(flag->get_uint64_t());
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   231
  } else if (flag->is_size_t()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   232
    RETURN_BOXED_LONG(flag->get_size_t());
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   233
  } else if (flag->is_uintx()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   234
    RETURN_BOXED_LONG(flag->get_uintx());
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   235
  } else if (flag->is_double()) {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   236
    RETURN_BOXED_DOUBLE(flag->get_double());
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   237
  } else {
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   238
    JVMCI_ERROR_NULL("VM flag %s has unsupported type %s", flag->_name, flag->_type);
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   239
  }
49370
81bc1dc36a53 8197235: src/hotspot/share/jvmci/jvmciCompilerToVM.cpp takes 4 minutes to compile on windows
kvn
parents: 49358
diff changeset
   240
#undef RETURN_BOXED_LONG
81bc1dc36a53 8197235: src/hotspot/share/jvmci/jvmciCompilerToVM.cpp takes 4 minutes to compile on windows
kvn
parents: 49358
diff changeset
   241
#undef RETURN_BOXED_DOUBLE
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   242
C2V_END
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   243
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   244
C2V_VMENTRY_NULL(jobject, getObjectAtAddress, (JNIEnv* env, jobject c2vm, jlong oop_address))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   245
  requireInHotSpot("getObjectAtAddress", JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   246
  if (oop_address == 0) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   247
    JVMCI_THROW_MSG_NULL(InternalError, "Handle must be non-zero");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   248
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   249
  oop obj = *((oopDesc**) oop_address);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   250
  if (obj != NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   251
    oopDesc::verify(obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   252
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   253
  return JNIHandles::make_local(obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   254
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   255
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   256
C2V_VMENTRY_NULL(jbyteArray, getBytecode, (JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   257
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   258
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   259
  int code_size = method->code_size();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   260
  jbyte* reconstituted_code = NEW_RESOURCE_ARRAY(jbyte, code_size);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   261
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   262
  guarantee(method->method_holder()->is_rewritten(), "Method's holder should be rewritten");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   263
  // iterate over all bytecodes and replace non-Java bytecodes
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   264
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   265
  for (BytecodeStream s(method); s.next() != Bytecodes::_illegal; ) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   266
    Bytecodes::Code code = s.code();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   267
    Bytecodes::Code raw_code = s.raw_code();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   268
    int bci = s.bci();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   269
    int len = s.instruction_size();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   270
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   271
    // Restore original byte code.
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   272
    reconstituted_code[bci] =  (jbyte) (s.is_wide()? Bytecodes::_wide : code);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   273
    if (len > 1) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   274
      memcpy(reconstituted_code + (bci + 1), s.bcp()+1, len-1);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   275
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   276
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   277
    if (len > 1) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   278
      // Restore the big-endian constant pool indexes.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   279
      // Cf. Rewriter::scan_method
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   280
      switch (code) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   281
        case Bytecodes::_getstatic:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   282
        case Bytecodes::_putstatic:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   283
        case Bytecodes::_getfield:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   284
        case Bytecodes::_putfield:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   285
        case Bytecodes::_invokevirtual:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   286
        case Bytecodes::_invokespecial:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   287
        case Bytecodes::_invokestatic:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   288
        case Bytecodes::_invokeinterface:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   289
        case Bytecodes::_invokehandle: {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   290
          int cp_index = Bytes::get_native_u2((address) reconstituted_code + (bci + 1));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   291
          Bytes::put_Java_u2((address) reconstituted_code + (bci + 1), (u2) cp_index);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   292
          break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   293
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   294
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   295
        case Bytecodes::_invokedynamic: {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   296
          int cp_index = Bytes::get_native_u4((address) reconstituted_code + (bci + 1));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   297
          Bytes::put_Java_u4((address) reconstituted_code + (bci + 1), (u4) cp_index);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   298
          break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   299
        }
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   300
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   301
        default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   302
          break;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   303
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   304
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   305
      // Not all ldc byte code are rewritten.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   306
      switch (raw_code) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   307
        case Bytecodes::_fast_aldc: {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   308
          int cpc_index = reconstituted_code[bci + 1] & 0xff;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   309
          int cp_index = method->constants()->object_to_cp_index(cpc_index);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   310
          assert(cp_index < method->constants()->length(), "sanity check");
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   311
          reconstituted_code[bci + 1] = (jbyte) cp_index;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   312
          break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   313
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   314
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   315
        case Bytecodes::_fast_aldc_w: {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   316
          int cpc_index = Bytes::get_native_u2((address) reconstituted_code + (bci + 1));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   317
          int cp_index = method->constants()->object_to_cp_index(cpc_index);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   318
          assert(cp_index < method->constants()->length(), "sanity check");
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   319
          Bytes::put_Java_u2((address) reconstituted_code + (bci + 1), (u2) cp_index);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   320
          break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   321
        }
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   322
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   323
        default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   324
          break;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   325
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   326
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   327
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   328
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   329
  JVMCIPrimitiveArray result = JVMCIENV->new_byteArray(code_size, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   330
  JVMCIENV->copy_bytes_from(reconstituted_code, result, 0, code_size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   331
  return JVMCIENV->get_jbyteArray(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   332
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   333
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   334
C2V_VMENTRY_0(jint, getExceptionTableLength, (JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   335
  Method* method = JVMCIENV->asMethod(jvmci_method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   336
  return method->exception_table_length();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   337
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   338
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   339
C2V_VMENTRY_0(jlong, getExceptionTableStart, (JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   340
  Method* method = JVMCIENV->asMethod(jvmci_method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   341
  if (method->exception_table_length() == 0) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   342
    return 0L;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   343
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   344
  return (jlong) (address) method->exception_table_start();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   345
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   346
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   347
C2V_VMENTRY_NULL(jobject, asResolvedJavaMethod, (JNIEnv* env, jobject, jobject executable_handle))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   348
  requireInHotSpot("asResolvedJavaMethod", JVMCI_CHECK_NULL);
41325
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   349
  oop executable = JNIHandles::resolve(executable_handle);
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   350
  oop mirror = NULL;
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   351
  int slot = 0;
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   352
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   353
  if (executable->klass() == SystemDictionary::reflect_Constructor_klass()) {
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   354
    mirror = java_lang_reflect_Constructor::clazz(executable);
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   355
    slot = java_lang_reflect_Constructor::slot(executable);
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   356
  } else {
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   357
    assert(executable->klass() == SystemDictionary::reflect_Method_klass(), "wrong type");
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   358
    mirror = java_lang_reflect_Method::clazz(executable);
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   359
    slot = java_lang_reflect_Method::slot(executable);
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   360
  }
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
   361
  Klass* holder = java_lang_Class::as_Klass(mirror);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   362
  methodHandle method (THREAD, InstanceKlass::cast(holder)->method_with_idnum(slot));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   363
  JVMCIObject result = JVMCIENV->get_jvmci_method(method, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   364
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   365
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   366
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   367
C2V_VMENTRY_NULL(jobject, getResolvedJavaMethod, (JNIEnv* env, jobject, jobject base, jlong offset))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   368
  Method* method;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   369
  JVMCIObject base_object = JVMCIENV->wrap(base);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   370
  if (base_object.is_null()) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   371
    method = *((Method**)(offset));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   372
  } else if (JVMCIENV->isa_HotSpotObjectConstantImpl(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   373
    Handle obj = JVMCIENV->asConstant(base_object, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   374
    if (obj->is_a(SystemDictionary::ResolvedMethodName_klass())) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   375
      method = (Method*) (intptr_t) obj->long_field(offset);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   376
    } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   377
      JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Unexpected type: %s", obj->klass()->external_name()));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   378
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   379
  } else if (JVMCIENV->isa_HotSpotResolvedJavaMethodImpl(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   380
    method = JVMCIENV->asMethod(base_object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   381
  }
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   382
  if (method == NULL) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   383
    JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Unexpected type: %s", JVMCIENV->klass_name(base_object)));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   384
  }
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   385
  assert (method->is_method(), "invalid read");
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   386
  JVMCIObject result = JVMCIENV->get_jvmci_method(methodHandle(THREAD, method), JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   387
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   388
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   389
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   390
C2V_VMENTRY_NULL(jobject, getConstantPool, (JNIEnv* env, jobject, jobject object_handle))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   391
  ConstantPool* cp = NULL;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   392
  JVMCIObject object = JVMCIENV->wrap(object_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   393
  if (object.is_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   394
    JVMCI_THROW_NULL(NullPointerException);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   395
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   396
  if (JVMCIENV->isa_HotSpotResolvedJavaMethodImpl(object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   397
    cp = JVMCIENV->asMethod(object)->constMethod()->constants();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   398
  } else if (JVMCIENV->isa_HotSpotResolvedObjectTypeImpl(object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   399
    cp = InstanceKlass::cast(JVMCIENV->asKlass(object))->constants();
40372
ee472073dab0 8163105: SIGSEGV: constantPoolHandle::constantPoolHandle(ConstantPool*)
dnsimon
parents: 39441
diff changeset
   400
  } else {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   401
    JVMCI_THROW_MSG_NULL(IllegalArgumentException,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   402
                err_msg("Unexpected type: %s", JVMCIENV->klass_name(object)));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   403
  }
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   404
  assert(cp != NULL, "npe");
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   405
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   406
  JVMCIObject result = JVMCIENV->get_jvmci_constant_pool(constantPoolHandle(THREAD, cp), JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   407
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   408
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   409
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   410
C2V_VMENTRY_NULL(jobject, getResolvedJavaType0, (JNIEnv* env, jobject, jobject base, jlong offset, jboolean compressed))
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   411
  JVMCIKlassHandle klass(THREAD);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   412
  JVMCIObject base_object = JVMCIENV->wrap(base);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   413
  jlong base_address = 0;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   414
  if (base_object.is_non_null() && offset == oopDesc::klass_offset_in_bytes()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   415
    // klass = JVMCIENV->unhandle(base_object)->klass();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   416
    if (JVMCIENV->isa_HotSpotObjectConstantImpl(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   417
      Handle base_oop = JVMCIENV->asConstant(base_object, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   418
      klass = base_oop->klass();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   419
    } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   420
      assert(false, "What types are we actually expecting here?");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   421
    }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   422
  } else if (!compressed) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   423
    if (base_object.is_non_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   424
      if (JVMCIENV->isa_HotSpotResolvedJavaMethodImpl(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   425
        base_address = (intptr_t) JVMCIENV->asMethod(base_object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   426
      } else if (JVMCIENV->isa_HotSpotConstantPool(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   427
        base_address = (intptr_t) JVMCIENV->asConstantPool(base_object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   428
      } else if (JVMCIENV->isa_HotSpotResolvedObjectTypeImpl(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   429
        base_address = (intptr_t) JVMCIENV->asKlass(base_object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   430
      } else if (JVMCIENV->isa_HotSpotObjectConstantImpl(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   431
        Handle base_oop = JVMCIENV->asConstant(base_object, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   432
        if (base_oop->is_a(SystemDictionary::Class_klass())) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   433
          base_address = (jlong) (address) base_oop();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   434
        }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   435
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   436
      if (base_address == 0) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   437
        JVMCI_THROW_MSG_NULL(IllegalArgumentException,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   438
                    err_msg("Unexpected arguments: %s " JLONG_FORMAT " %s", JVMCIENV->klass_name(base_object), offset, compressed ? "true" : "false"));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   439
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   440
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   441
    klass = *((Klass**) (intptr_t) (base_address + offset));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   442
  } else {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   443
    JVMCI_THROW_MSG_NULL(IllegalArgumentException,
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50746
diff changeset
   444
                err_msg("Unexpected arguments: %s " JLONG_FORMAT " %s",
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   445
                        base_object.is_non_null() ? JVMCIENV->klass_name(base_object) : "null",
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50746
diff changeset
   446
                        offset, compressed ? "true" : "false"));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   447
  }
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   448
  assert (klass == NULL || klass->is_klass(), "invalid read");
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   449
  JVMCIObject result = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   450
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   451
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   452
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   453
C2V_VMENTRY_NULL(jobject, findUniqueConcreteMethod, (JNIEnv* env, jobject, jobject jvmci_type, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   454
  methodHandle method (THREAD, JVMCIENV->asMethod(jvmci_method));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   455
  Klass* holder = JVMCIENV->asKlass(jvmci_type);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   456
  if (holder->is_interface()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   457
    JVMCI_THROW_MSG_NULL(InternalError, err_msg("Interface %s should be handled in Java code", holder->external_name()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   458
  }
55298
1fe17d2be502 8223050: JVMCI: findUniqueConcreteMethod() should not use Dependencies::find_unique_concrete_method() for non-virtual methods
dlong
parents: 55293
diff changeset
   459
  if (method->can_be_statically_bound()) {
1fe17d2be502 8223050: JVMCI: findUniqueConcreteMethod() should not use Dependencies::find_unique_concrete_method() for non-virtual methods
dlong
parents: 55293
diff changeset
   460
    JVMCI_THROW_MSG_NULL(InternalError, err_msg("Effectively static method %s.%s should be handled in Java code", method->method_holder()->external_name(), method->external_name()));
1fe17d2be502 8223050: JVMCI: findUniqueConcreteMethod() should not use Dependencies::find_unique_concrete_method() for non-virtual methods
dlong
parents: 55293
diff changeset
   461
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   462
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   463
  methodHandle ucm;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   464
  {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   465
    MutexLocker locker(Compile_lock);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   466
    ucm = methodHandle(THREAD, Dependencies::find_unique_concrete_method(holder, method()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   467
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   468
  JVMCIObject result = JVMCIENV->get_jvmci_method(ucm, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   469
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   470
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   471
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   472
C2V_VMENTRY_NULL(jobject, getImplementor, (JNIEnv* env, jobject, jobject jvmci_type))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   473
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
48480
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   474
  if (!klass->is_interface()) {
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   475
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   476
        err_msg("Expected interface type, got %s", klass->external_name()));
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   477
  }
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   478
  InstanceKlass* iklass = InstanceKlass::cast(klass);
51379
802f7e5e7e6b 8207924: serviceability/sa/TestUniverse.java#id0 intermittently fails with assert(get_instanceKlass()->is_loaded()) failed: must be at least loaded
coleenp
parents: 51078
diff changeset
   479
  JVMCIKlassHandle handle(THREAD);
802f7e5e7e6b 8207924: serviceability/sa/TestUniverse.java#id0 intermittently fails with assert(get_instanceKlass()->is_loaded()) failed: must be at least loaded
coleenp
parents: 51078
diff changeset
   480
  {
802f7e5e7e6b 8207924: serviceability/sa/TestUniverse.java#id0 intermittently fails with assert(get_instanceKlass()->is_loaded()) failed: must be at least loaded
coleenp
parents: 51078
diff changeset
   481
    // Need Compile_lock around implementor()
802f7e5e7e6b 8207924: serviceability/sa/TestUniverse.java#id0 intermittently fails with assert(get_instanceKlass()->is_loaded()) failed: must be at least loaded
coleenp
parents: 51078
diff changeset
   482
    MutexLocker locker(Compile_lock);
802f7e5e7e6b 8207924: serviceability/sa/TestUniverse.java#id0 intermittently fails with assert(get_instanceKlass()->is_loaded()) failed: must be at least loaded
coleenp
parents: 51078
diff changeset
   483
    handle = iklass->implementor();
802f7e5e7e6b 8207924: serviceability/sa/TestUniverse.java#id0 intermittently fails with assert(get_instanceKlass()->is_loaded()) failed: must be at least loaded
coleenp
parents: 51078
diff changeset
   484
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   485
  JVMCIObject implementor = JVMCIENV->get_jvmci_type(handle, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   486
  return JVMCIENV->get_jobject(implementor);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   487
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   488
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   489
C2V_VMENTRY_0(jboolean, methodIsIgnoredBySecurityStackWalk,(JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   490
  Method* method = JVMCIENV->asMethod(jvmci_method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   491
  return method->is_ignored_by_security_stack_walk();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   492
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   493
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   494
C2V_VMENTRY_0(jboolean, isCompilable,(JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   495
  Method* method = JVMCIENV->asMethod(jvmci_method);
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   496
  ConstantPool* cp = method->constMethod()->constants();
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   497
  assert(cp != NULL, "npe");
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48819
diff changeset
   498
  // don't inline method when constant pool contains a CONSTANT_Dynamic
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48819
diff changeset
   499
  return !method->is_not_compilable(CompLevel_full_optimization) && !cp->has_dynamic_constant();
43476
b7404901db14 8172733: [JVMCI] add ResolvedJavaMethod.hasNeverInlineDirective
dnsimon
parents: 42650
diff changeset
   500
C2V_END
b7404901db14 8172733: [JVMCI] add ResolvedJavaMethod.hasNeverInlineDirective
dnsimon
parents: 42650
diff changeset
   501
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   502
C2V_VMENTRY_0(jboolean, hasNeverInlineDirective,(JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   503
  methodHandle method (THREAD, JVMCIENV->asMethod(jvmci_method));
46945
f3a636ac46e4 8186235: [Graal] compiler/aot/RecompilationTest.java fails in case UseJVMCICompiler is enabled
iveresov
parents: 46794
diff changeset
   504
  return !Inline || CompilerOracle::should_not_inline(method) || method->dont_inline();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   505
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   506
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   507
C2V_VMENTRY_0(jboolean, shouldInlineMethod,(JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   508
  methodHandle method (THREAD, JVMCIENV->asMethod(jvmci_method));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   509
  return CompilerOracle::should_inline(method) || method->force_inline();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   510
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   511
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   512
C2V_VMENTRY_NULL(jobject, lookupType, (JNIEnv* env, jobject, jstring jname, jclass accessing_class, jboolean resolve))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   513
  JVMCIObject name = JVMCIENV->wrap(jname);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   514
  const char* str = JVMCIENV->as_utf8_string(name);
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   515
  TempNewSymbol class_name = SymbolTable::new_symbol(str);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   516
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   517
  if (class_name->utf8_length() <= 1) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   518
    JVMCI_THROW_MSG_0(InternalError, err_msg("Primitive type %s should be handled in Java code", class_name->as_C_string()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   519
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   520
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   521
  JVMCIKlassHandle resolved_klass(THREAD);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   522
  Klass* accessing_klass = NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   523
  Handle class_loader;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   524
  Handle protection_domain;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   525
  if (accessing_class != NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   526
    accessing_klass = JVMCIENV->asKlass(accessing_class);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   527
    class_loader = Handle(THREAD, accessing_klass->class_loader());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   528
    protection_domain = Handle(THREAD, accessing_klass->protection_domain());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   529
  } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   530
    // Use the System class loader
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   531
    class_loader = Handle(THREAD, SystemDictionary::java_system_loader());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   532
    JVMCIENV->runtime()->initialize(JVMCIENV);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   533
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   534
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   535
  if (resolve) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   536
    resolved_klass = SystemDictionary::resolve_or_null(class_name, class_loader, protection_domain, CHECK_0);
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   537
    if (resolved_klass == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   538
      JVMCI_THROW_MSG_NULL(ClassNotFoundException, str);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   539
    }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   540
  } else {
58722
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 58282
diff changeset
   541
    if (class_name->char_at(0) == JVM_SIGNATURE_CLASS &&
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 58282
diff changeset
   542
        class_name->char_at(class_name->utf8_length()-1) == JVM_SIGNATURE_ENDCLASS) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   543
      // This is a name from a signature.  Strip off the trimmings.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   544
      // Call recursive to keep scope of strippedsym.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   545
      TempNewSymbol strippedsym = SymbolTable::new_symbol(class_name->as_utf8()+1,
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   546
                                                          class_name->utf8_length()-2);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   547
      resolved_klass = SystemDictionary::find(strippedsym, class_loader, protection_domain, CHECK_0);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   548
    } else if (FieldType::is_array(class_name)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   549
      FieldArrayInfo fd;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   550
      // dimension and object_key in FieldArrayInfo are assigned as a side-effect
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   551
      // of this call
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   552
      BasicType t = FieldType::get_array_info(class_name, fd, CHECK_0);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   553
      if (t == T_OBJECT) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   554
        TempNewSymbol strippedsym = SymbolTable::new_symbol(class_name->as_utf8()+1+fd.dimension(),
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   555
                                                            class_name->utf8_length()-2-fd.dimension());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   556
        resolved_klass = SystemDictionary::find(strippedsym,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   557
                                                             class_loader,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   558
                                                             protection_domain,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   559
                                                             CHECK_0);
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   560
        if (!resolved_klass.is_null()) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   561
          resolved_klass = resolved_klass->array_klass(fd.dimension(), CHECK_0);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   562
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   563
      } else {
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   564
        resolved_klass = TypeArrayKlass::cast(Universe::typeArrayKlassObj(t))->array_klass(fd.dimension(), CHECK_0);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   565
      }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   566
    } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   567
      resolved_klass = SystemDictionary::find(class_name, class_loader, protection_domain, CHECK_0);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   568
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   569
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   570
  JVMCIObject result = JVMCIENV->get_jvmci_type(resolved_klass, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   571
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   572
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   573
55463
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   574
C2V_VMENTRY_NULL(jobject, getArrayType, (JNIEnv* env, jobject, jobject jvmci_type))
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   575
  if (jvmci_type == NULL) {
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   576
    JVMCI_THROW_0(NullPointerException);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   577
  }
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   578
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   579
  JVMCIObject jvmci_type_object = JVMCIENV->wrap(jvmci_type);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   580
  JVMCIKlassHandle array_klass(THREAD);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   581
  if (JVMCIENV->isa_HotSpotResolvedPrimitiveType(jvmci_type_object)) {
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   582
    BasicType type = JVMCIENV->kindToBasicType(JVMCIENV->get_HotSpotResolvedPrimitiveType_kind(jvmci_type_object), JVMCI_CHECK_0);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   583
    if (type == T_VOID) {
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   584
      return NULL;
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   585
    }
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   586
    array_klass = Universe::typeArrayKlassObj(type);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   587
    if (array_klass == NULL) {
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   588
      JVMCI_THROW_MSG_NULL(InternalError, err_msg("No array klass for primitive type %s", type2name(type)));
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   589
    }
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   590
  } else {
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   591
    Klass* klass = JVMCIENV->asKlass(jvmci_type);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   592
    if (klass == NULL) {
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   593
      JVMCI_THROW_0(NullPointerException);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   594
    }
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   595
    array_klass = klass->array_klass(CHECK_NULL);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   596
  }
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   597
  JVMCIObject result = JVMCIENV->get_jvmci_type(array_klass, JVMCI_CHECK_NULL);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   598
  return JVMCIENV->get_jobject(result);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   599
C2V_END
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
   600
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   601
C2V_VMENTRY_NULL(jobject, lookupClass, (JNIEnv* env, jobject, jclass mirror))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   602
  requireInHotSpot("lookupClass", JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   603
  if (mirror == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   604
    return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   605
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   606
  JVMCIKlassHandle klass(THREAD);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   607
  klass = java_lang_Class::as_Klass(JNIHandles::resolve(mirror));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   608
  if (klass == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   609
    JVMCI_THROW_MSG_NULL(IllegalArgumentException, "Primitive classes are unsupported");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   610
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   611
  JVMCIObject result = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   612
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   613
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   614
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   615
C2V_VMENTRY_NULL(jobject, resolvePossiblyCachedConstantInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   616
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   617
  oop result = cp->resolve_possibly_cached_constant_at(index, CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   618
  return JVMCIENV->get_jobject(JVMCIENV->get_object_constant(result));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   619
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   620
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   621
C2V_VMENTRY_0(jint, lookupNameAndTypeRefIndexInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   622
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   623
  return cp->name_and_type_ref_index_at(index);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   624
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   625
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   626
C2V_VMENTRY_NULL(jobject, lookupNameInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint which))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   627
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   628
  JVMCIObject sym = JVMCIENV->create_string(cp->name_ref_at(which), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   629
  return JVMCIENV->get_jobject(sym);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   630
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   631
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   632
C2V_VMENTRY_NULL(jobject, lookupSignatureInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint which))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   633
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   634
  JVMCIObject sym = JVMCIENV->create_string(cp->signature_ref_at(which), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   635
  return JVMCIENV->get_jobject(sym);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   636
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   637
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   638
C2V_VMENTRY_0(jint, lookupKlassRefIndexInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   639
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   640
  return cp->klass_ref_index_at(index);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   641
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   642
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   643
C2V_VMENTRY_NULL(jobject, resolveTypeInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   644
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   645
  Klass* klass = cp->klass_at(index, CHECK_NULL);
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   646
  JVMCIKlassHandle resolved_klass(THREAD, klass);
49467
74db2b7cec75 8146201: [AOT] Class static initializers that are not pure should not be executed during static compilation
dlong
parents: 49449
diff changeset
   647
  if (resolved_klass->is_instance_klass()) {
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   648
    InstanceKlass::cast(resolved_klass())->link_class(CHECK_NULL);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   649
    if (!InstanceKlass::cast(resolved_klass())->is_linked()) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   650
      // link_class() should not return here if there is an issue.
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   651
      JVMCI_THROW_MSG_NULL(InternalError, err_msg("Class %s must be linked", resolved_klass()->external_name()));
54708
b7e6fc77c2f3 8223262: [AOT] jaotc crashes with assert(!(((ThreadShadow*)__the_thread__)->has_pending_exception())) failed: Should not allocate with exception pending
kvn
parents: 54669
diff changeset
   652
    }
49467
74db2b7cec75 8146201: [AOT] Class static initializers that are not pure should not be executed during static compilation
dlong
parents: 49449
diff changeset
   653
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   654
  JVMCIObject klassObject = JVMCIENV->get_jvmci_type(resolved_klass, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   655
  return JVMCIENV->get_jobject(klassObject);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   656
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   657
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   658
C2V_VMENTRY_NULL(jobject, lookupKlassInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index, jbyte opcode))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   659
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   660
  Klass* loading_klass = cp->pool_holder();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   661
  bool is_accessible = false;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   662
  JVMCIKlassHandle klass(THREAD, JVMCIRuntime::get_klass_by_index(cp, index, is_accessible, loading_klass));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   663
  Symbol* symbol = NULL;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   664
  if (klass.is_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   665
    constantTag tag = cp->tag_at(index);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   666
    if (tag.is_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   667
      // The klass has been inserted into the constant pool
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   668
      // very recently.
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   669
      klass = cp->resolved_klass_at(index);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   670
    } else if (tag.is_symbol()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   671
      symbol = cp->symbol_at(index);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   672
    } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   673
      assert(cp->tag_at(index).is_unresolved_klass(), "wrong tag");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   674
      symbol = cp->klass_name_at(index);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   675
    }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   676
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   677
  JVMCIObject result;
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   678
  if (!klass.is_null()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   679
    result = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   680
  } else {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   681
    result = JVMCIENV->create_string(symbol, JVMCI_CHECK_NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   682
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   683
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   684
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   685
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   686
C2V_VMENTRY_NULL(jobject, lookupAppendixInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   687
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   688
  oop appendix_oop = ConstantPool::appendix_at_if_loaded(cp, index);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   689
  return JVMCIENV->get_jobject(JVMCIENV->get_object_constant(appendix_oop));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   690
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   691
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   692
C2V_VMENTRY_NULL(jobject, lookupMethodInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index, jbyte opcode))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   693
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   694
  InstanceKlass* pool_holder = cp->pool_holder();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   695
  Bytecodes::Code bc = (Bytecodes::Code) (((int) opcode) & 0xFF);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   696
  methodHandle method(THREAD, JVMCIRuntime::get_method_by_index(cp, index, bc, pool_holder));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   697
  JVMCIObject result = JVMCIENV->get_jvmci_method(method, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   698
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   699
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   700
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   701
C2V_VMENTRY_0(jint, constantPoolRemapInstructionOperandFromCache, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   702
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   703
  return cp->remap_instruction_operand_from_cache(index);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   704
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   705
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   706
C2V_VMENTRY_NULL(jobject, resolveFieldInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index, jobject jvmci_method, jbyte opcode, jintArray info_handle))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   707
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   708
  Bytecodes::Code code = (Bytecodes::Code)(((int) opcode) & 0xFF);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   709
  fieldDescriptor fd;
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   710
  methodHandle mh(THREAD, (jvmci_method != NULL) ? JVMCIENV->asMethod(jvmci_method) : NULL);
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   711
  LinkInfo link_info(cp, index, mh, CHECK_0);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   712
  LinkResolver::resolve_field(fd, link_info, Bytecodes::java_code(code), false, CHECK_0);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   713
  JVMCIPrimitiveArray info = JVMCIENV->wrap(info_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   714
  if (info.is_null() || JVMCIENV->get_length(info) != 3) {
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   715
    JVMCI_ERROR_NULL("info must not be null and have a length of 3");
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
   716
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   717
  JVMCIENV->put_int_at(info, 0, fd.access_flags().as_int());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   718
  JVMCIENV->put_int_at(info, 1, fd.offset());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   719
  JVMCIENV->put_int_at(info, 2, fd.index());
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
   720
  JVMCIKlassHandle handle(THREAD, fd.field_holder());
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   721
  JVMCIObject field_holder = JVMCIENV->get_jvmci_type(handle, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   722
  return JVMCIENV->get_jobject(field_holder);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   723
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   724
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   725
C2V_VMENTRY_0(jint, getVtableIndexForInterfaceMethod, (JNIEnv* env, jobject, jobject jvmci_type, jobject jvmci_method))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   726
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   727
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   728
  if (klass->is_interface()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   729
    JVMCI_THROW_MSG_0(InternalError, err_msg("Interface %s should be handled in Java code", klass->external_name()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   730
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   731
  if (!method->method_holder()->is_interface()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   732
    JVMCI_THROW_MSG_0(InternalError, err_msg("Method %s is not held by an interface, this case should be handled in Java code", method->name_and_sig_as_C_string()));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   733
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   734
  if (!klass->is_instance_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   735
    JVMCI_THROW_MSG_0(InternalError, err_msg("Class %s must be instance klass", klass->external_name()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   736
  }
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   737
  if (!InstanceKlass::cast(klass)->is_linked()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   738
    JVMCI_THROW_MSG_0(InternalError, err_msg("Class %s must be linked", klass->external_name()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   739
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   740
  return LinkResolver::vtable_index_of_interface_method(klass, method);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   741
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   742
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   743
C2V_VMENTRY_NULL(jobject, resolveMethod, (JNIEnv* env, jobject, jobject receiver_jvmci_type, jobject jvmci_method, jobject caller_jvmci_type))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   744
  Klass* recv_klass = JVMCIENV->asKlass(receiver_jvmci_type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   745
  Klass* caller_klass = JVMCIENV->asKlass(caller_jvmci_type);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   746
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   747
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   748
  Klass* resolved     = method->method_holder();
38139
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   749
  Symbol* h_name      = method->name();
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   750
  Symbol* h_signature = method->signature();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   751
41051
77740a69b211 8161550: [JVMCI] Crash: assert(sig_bt[member_arg_pos] == T_OBJECT)
never
parents: 40878
diff changeset
   752
  if (MethodHandles::is_signature_polymorphic_method(method())) {
77740a69b211 8161550: [JVMCI] Crash: assert(sig_bt[member_arg_pos] == T_OBJECT)
never
parents: 40878
diff changeset
   753
      // Signature polymorphic methods are already resolved, JVMCI just returns NULL in this case.
77740a69b211 8161550: [JVMCI] Crash: assert(sig_bt[member_arg_pos] == T_OBJECT)
never
parents: 40878
diff changeset
   754
      return NULL;
77740a69b211 8161550: [JVMCI] Crash: assert(sig_bt[member_arg_pos] == T_OBJECT)
never
parents: 40878
diff changeset
   755
  }
77740a69b211 8161550: [JVMCI] Crash: assert(sig_bt[member_arg_pos] == T_OBJECT)
never
parents: 40878
diff changeset
   756
53352
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   757
  if (method->name() == vmSymbols::clone_name() &&
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   758
      resolved == SystemDictionary::Object_klass() &&
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   759
      recv_klass->is_array_klass()) {
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   760
    // Resolution of the clone method on arrays always returns Object.clone even though that method
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   761
    // has protected access.  There's some trickery in the access checking to make this all work out
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   762
    // so it's necessary to pass in the array class as the resolved class to properly trigger this.
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   763
    // Otherwise it's impossible to resolve the array clone methods through JVMCI.  See
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   764
    // LinkResolver::check_method_accessability for the matching logic.
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   765
    resolved = recv_klass;
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   766
  }
ac431929db51 8215748: Application fails when executed with Graal
never
parents: 52907
diff changeset
   767
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   768
  LinkInfo link_info(resolved, h_name, h_signature, caller_klass);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   769
  Method* m = NULL;
38139
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   770
  // Only do exact lookup if receiver klass has been linked.  Otherwise,
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   771
  // the vtable has not been setup, and the LinkResolver will fail.
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   772
  if (recv_klass->is_array_klass() ||
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
   773
      (InstanceKlass::cast(recv_klass)->is_linked() && !recv_klass->is_interface())) {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   774
    if (resolved->is_interface()) {
38139
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   775
      m = LinkResolver::resolve_interface_call_or_null(recv_klass, link_info);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   776
    } else {
38139
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   777
      m = LinkResolver::resolve_virtual_call_or_null(recv_klass, link_info);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   778
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   779
  }
38139
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   780
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   781
  if (m == NULL) {
41051
77740a69b211 8161550: [JVMCI] Crash: assert(sig_bt[member_arg_pos] == T_OBJECT)
never
parents: 40878
diff changeset
   782
    // Return NULL if there was a problem with lookup (uninitialized class, etc.)
38139
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   783
    return NULL;
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   784
  }
cf6f5c1b7205 8152903: [JVMCI] CompilerToVM::resolveMethod should correctly handle private methods in interfaces
never
parents: 38133
diff changeset
   785
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   786
  JVMCIObject result = JVMCIENV->get_jvmci_method(methodHandle(THREAD, m), JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   787
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   788
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   789
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   790
C2V_VMENTRY_0(jboolean, hasFinalizableSubclass,(JNIEnv* env, jobject, jobject jvmci_type))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   791
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   792
  assert(klass != NULL, "method must not be called for primitive types");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   793
  return Dependencies::find_finalizable_subclass(klass) != NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   794
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   795
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   796
C2V_VMENTRY_NULL(jobject, getClassInitializer, (JNIEnv* env, jobject, jobject jvmci_type))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   797
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
48480
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   798
  if (!klass->is_instance_klass()) {
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   799
    return NULL;
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   800
  }
614068b0ddd7 8193930: [JVMCI] calling ResolvedTypeType.getClassInitializer on an array type crashes
dnsimon
parents: 48400
diff changeset
   801
  InstanceKlass* iklass = InstanceKlass::cast(klass);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   802
  methodHandle clinit(THREAD, iklass->class_initializer());
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   803
  JVMCIObject result = JVMCIENV->get_jvmci_method(clinit, JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   804
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   805
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   806
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   807
C2V_VMENTRY_0(jlong, getMaxCallTargetOffset, (JNIEnv* env, jobject, jlong addr))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   808
  address target_addr = (address) addr;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   809
  if (target_addr != 0x0) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   810
    int64_t off_low = (int64_t)target_addr - ((int64_t)CodeCache::low_bound() + sizeof(int));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   811
    int64_t off_high = (int64_t)target_addr - ((int64_t)CodeCache::high_bound() + sizeof(int));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   812
    return MAX2(ABS(off_low), ABS(off_high));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   813
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   814
  return -1;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   815
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   816
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   817
C2V_VMENTRY(void, setNotInlinableOrCompilable,(JNIEnv* env, jobject,  jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   818
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   819
  method->set_not_c1_compilable();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   820
  method->set_not_c2_compilable();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   821
  method->set_dont_inline(true);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   822
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   823
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   824
C2V_VMENTRY_0(jint, installCode, (JNIEnv *env, jobject, jobject target, jobject compiled_code,
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   825
            jobject installed_code, jlong failed_speculations_address, jbyteArray speculations_obj))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   826
  HandleMark hm;
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   827
  JNIHandleMark jni_hm(thread);
44092
bc842cc2356b 8175917: [JVMCI] Avoid long JNI handle chains
chaeubl
parents: 43957
diff changeset
   828
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   829
  JVMCIObject target_handle = JVMCIENV->wrap(target);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   830
  JVMCIObject compiled_code_handle = JVMCIENV->wrap(compiled_code);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   831
  CodeBlob* cb = NULL;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   832
  JVMCIObject installed_code_handle = JVMCIENV->wrap(installed_code);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   833
  JVMCIPrimitiveArray speculations_handle = JVMCIENV->wrap(speculations_obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   834
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   835
  int speculations_len = JVMCIENV->get_length(speculations_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   836
  char* speculations = NEW_RESOURCE_ARRAY(char, speculations_len);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   837
  JVMCIENV->copy_bytes_to(speculations_handle, (jbyte*) speculations, 0, speculations_len);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   838
47796
47629b00daa9 8187315: [JVMCI] hosted use of JVMCI can crash VM under -Xint
dnsimon
parents: 47794
diff changeset
   839
  JVMCICompiler* compiler = JVMCICompiler::instance(true, CHECK_JNI_ERR);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   840
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   841
  TraceTime install_time("installCode", JVMCICompiler::codeInstallTimer());
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   842
  bool is_immutable_PIC = JVMCIENV->get_HotSpotCompiledCode_isImmutablePIC(compiled_code_handle) > 0;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   843
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   844
  CodeInstaller installer(JVMCIENV, is_immutable_PIC);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   845
  JVMCI::CodeInstallResult result = installer.install(compiler,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   846
      target_handle,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   847
      compiled_code_handle,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   848
      cb,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   849
      installed_code_handle,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   850
      (FailedSpeculation**)(address) failed_speculations_address,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   851
      speculations,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   852
      speculations_len,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   853
      JVMCI_CHECK_0);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   854
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   855
  if (PrintCodeCacheOnCompilation) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   856
    stringStream s;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   857
    // Dump code cache into a buffer before locking the tty,
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   858
    {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 53746
diff changeset
   859
      MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   860
      CodeCache::print_summary(&s, false);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   861
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   862
    ttyLocker ttyl;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   863
    tty->print_raw_cr(s.as_string());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   864
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   865
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   866
  if (result != JVMCI::ok) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   867
    assert(cb == NULL, "should be");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   868
  } else {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   869
    if (installed_code_handle.is_non_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   870
      if (cb->is_nmethod()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   871
        assert(JVMCIENV->isa_HotSpotNmethod(installed_code_handle), "wrong type");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   872
        // Clear the link to an old nmethod first
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   873
        JVMCIObject nmethod_mirror = installed_code_handle;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   874
        JVMCIENV->invalidate_nmethod_mirror(nmethod_mirror, JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   875
      } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   876
        assert(JVMCIENV->isa_InstalledCode(installed_code_handle), "wrong type");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   877
      }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   878
      // Initialize the link to the new code blob
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   879
      JVMCIENV->initialize_installed_code(installed_code_handle, cb, JVMCI_CHECK_0);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   880
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   881
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   882
  return result;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   883
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   884
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   885
C2V_VMENTRY_0(jint, getMetadata, (JNIEnv *env, jobject, jobject target, jobject compiled_code, jobject metadata))
52381
7f90bc64b0fc 8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents: 52356
diff changeset
   886
#if INCLUDE_AOT
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   887
  HandleMark hm;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   888
  assert(JVMCIENV->is_hotspot(), "AOT code is executed only in HotSpot mode");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   889
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   890
  JVMCIObject target_handle = JVMCIENV->wrap(target);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   891
  JVMCIObject compiled_code_handle = JVMCIENV->wrap(compiled_code);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   892
  JVMCIObject metadata_handle = JVMCIENV->wrap(metadata);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   893
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   894
  CodeMetadata code_metadata;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   895
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   896
  CodeInstaller installer(JVMCIENV, true /* immutable PIC compilation */);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   897
  JVMCI::CodeInstallResult result = installer.gather_metadata(target_handle, compiled_code_handle, code_metadata, JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   898
  if (result != JVMCI::ok) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   899
    return result;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   900
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   901
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   902
  if (code_metadata.get_nr_pc_desc() > 0) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   903
    int size = sizeof(PcDesc) * code_metadata.get_nr_pc_desc();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   904
    JVMCIPrimitiveArray array = JVMCIENV->new_byteArray(size, JVMCI_CHECK_(JVMCI::cache_full));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   905
    JVMCIENV->copy_bytes_from((jbyte*) code_metadata.get_pc_desc(), array, 0, size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   906
    HotSpotJVMCI::HotSpotMetaData::set_pcDescBytes(JVMCIENV, metadata_handle, array);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   907
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   908
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   909
  if (code_metadata.get_scopes_size() > 0) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   910
    int size = code_metadata.get_scopes_size();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   911
    JVMCIPrimitiveArray array = JVMCIENV->new_byteArray(size, JVMCI_CHECK_(JVMCI::cache_full));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   912
    JVMCIENV->copy_bytes_from((jbyte*) code_metadata.get_scopes_desc(), array, 0, size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   913
    HotSpotJVMCI::HotSpotMetaData::set_scopesDescBytes(JVMCIENV, metadata_handle, array);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   914
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   915
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   916
  RelocBuffer* reloc_buffer = code_metadata.get_reloc_buffer();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   917
  int size = (int) reloc_buffer->size();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   918
  JVMCIPrimitiveArray array = JVMCIENV->new_byteArray(size, JVMCI_CHECK_(JVMCI::cache_full));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   919
  JVMCIENV->copy_bytes_from((jbyte*) reloc_buffer->begin(), array, 0, size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   920
  HotSpotJVMCI::HotSpotMetaData::set_relocBytes(JVMCIENV, metadata_handle, array);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   921
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   922
  const OopMapSet* oopMapSet = installer.oopMapSet();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   923
  {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   924
    ResourceMark mark;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   925
    ImmutableOopMapBuilder builder(oopMapSet);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   926
    int size = builder.heap_size();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   927
    JVMCIPrimitiveArray array = JVMCIENV->new_byteArray(size, JVMCI_CHECK_(JVMCI::cache_full));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   928
    builder.generate_into((address) HotSpotJVMCI::resolve(array)->byte_at_addr(0));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   929
    HotSpotJVMCI::HotSpotMetaData::set_oopMaps(JVMCIENV, metadata_handle, array);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   930
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   931
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
   932
  AOTOopRecorder* recorder = code_metadata.get_oop_recorder();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
   933
47668
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
   934
  int nr_meta_refs = recorder->nr_meta_refs();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   935
  JVMCIObjectArray metadataArray = JVMCIENV->new_Object_array(nr_meta_refs, JVMCI_CHECK_(JVMCI::cache_full));
47668
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
   936
  for (int i = 0; i < nr_meta_refs; ++i) {
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
   937
    jobject element = recorder->meta_element(i);
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
   938
    if (element == NULL) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   939
      return JVMCI::cache_full;
47668
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
   940
    }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   941
    JVMCIENV->put_object_at(metadataArray, i, JVMCIENV->wrap(element));
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
   942
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   943
  HotSpotJVMCI::HotSpotMetaData::set_metadata(JVMCIENV, metadata_handle, metadataArray);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   944
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   945
  ExceptionHandlerTable* handler = code_metadata.get_exception_table();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   946
  int table_size = handler->size_in_bytes();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   947
  JVMCIPrimitiveArray exceptionArray = JVMCIENV->new_byteArray(table_size, JVMCI_CHECK_(JVMCI::cache_full));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   948
  if (table_size > 0) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   949
    handler->copy_bytes_to((address) HotSpotJVMCI::resolve(exceptionArray)->byte_at_addr(0));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   950
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   951
  HotSpotJVMCI::HotSpotMetaData::set_exceptionBytes(JVMCIENV, metadata_handle, exceptionArray);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   952
55293
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   953
  ImplicitExceptionTable* implicit = code_metadata.get_implicit_exception_table();
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   954
  int implicit_table_size = implicit->size_in_bytes();
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   955
  JVMCIPrimitiveArray implicitExceptionArray = JVMCIENV->new_byteArray(implicit_table_size, JVMCI_CHECK_(JVMCI::cache_full));
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   956
  if (implicit_table_size > 0) {
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   957
    implicit->copy_bytes_to((address) HotSpotJVMCI::resolve(implicitExceptionArray)->byte_at_addr(0), implicit_table_size);
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   958
  }
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   959
  HotSpotJVMCI::HotSpotMetaData::set_implicitExceptionBytes(JVMCIENV, metadata_handle, implicitExceptionArray);
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 55206
diff changeset
   960
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   961
  return result;
52381
7f90bc64b0fc 8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents: 52356
diff changeset
   962
#else
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   963
  JVMCI_THROW_MSG_0(InternalError, "unimplemented");
52381
7f90bc64b0fc 8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents: 52356
diff changeset
   964
#endif
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   965
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   966
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   967
C2V_VMENTRY(void, resetCompilationStatistics, (JNIEnv* env, jobject))
47796
47629b00daa9 8187315: [JVMCI] hosted use of JVMCI can crash VM under -Xint
dnsimon
parents: 47794
diff changeset
   968
  JVMCICompiler* compiler = JVMCICompiler::instance(true, CHECK);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   969
  CompilerStatistics* stats = compiler->stats();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   970
  stats->_standard.reset();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   971
  stats->_osr.reset();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   972
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   973
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
   974
C2V_VMENTRY_NULL(jobject, disassembleCodeBlob, (JNIEnv* env, jobject, jobject installedCode))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   975
  HandleMark hm;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   976
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   977
  if (installedCode == NULL) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   978
    JVMCI_THROW_MSG_NULL(NullPointerException, "installedCode is null");
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   979
  }
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   980
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   981
  JVMCIObject installedCodeObject = JVMCIENV->wrap(installedCode);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   982
  CodeBlob* cb = JVMCIENV->asCodeBlob(installedCodeObject);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   983
  if (cb == NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   984
    return NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   985
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   986
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   987
  // We don't want the stringStream buffer to resize during disassembly as it
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   988
  // uses scoped resource memory. If a nested function called during disassembly uses
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   989
  // a ResourceMark and the buffer expands within the scope of the mark,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   990
  // the buffer becomes garbage when that scope is exited. Experience shows that
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   991
  // the disassembled code is typically about 10x the code size so a fixed buffer
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   992
  // sized to 20x code size plus a fixed amount for header info should be sufficient.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   993
  int bufferSize = cb->code_size() * 20 + 1024;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   994
  char* buffer = NEW_RESOURCE_ARRAY(char, bufferSize);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   995
  stringStream st(buffer, bufferSize);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   996
  if (cb->is_nmethod()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   997
    nmethod* nm = (nmethod*) cb;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   998
    if (!nm->is_alive()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   999
      return NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1000
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1001
  }
35542
9dccb7f9f656 8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents: 35123
diff changeset
  1002
  Disassembler::decode(cb, &st);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1003
  if (st.size() <= 0) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1004
    return NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1005
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1006
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1007
  JVMCIObject result = JVMCIENV->create_string(st.as_string(), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1008
  return JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1009
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1010
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1011
C2V_VMENTRY_NULL(jobject, getStackTraceElement, (JNIEnv* env, jobject, jobject jvmci_method, int bci))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1012
  HandleMark hm;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1013
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1014
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1015
  JVMCIObject element = JVMCIENV->new_StackTraceElement(method, bci, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1016
  return JVMCIENV->get_jobject(element);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1017
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1018
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1019
C2V_VMENTRY_NULL(jobject, executeHotSpotNmethod, (JNIEnv* env, jobject, jobject args, jobject hs_nmethod))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1020
  // The incoming arguments array would have to contain JavaConstants instead of regular objects
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1021
  // and the return value would have to be wrapped as a JavaConstant.
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1022
  requireInHotSpot("executeHotSpotNmethod", JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1023
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1024
  HandleMark hm;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1025
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1026
  JVMCIObject nmethod_mirror = JVMCIENV->wrap(hs_nmethod);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1027
  nmethod* nm = JVMCIENV->asNmethod(nmethod_mirror);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1028
  if (nm == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1029
    JVMCI_THROW_NULL(InvalidInstalledCodeException);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1030
  }
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1031
  methodHandle mh(THREAD, nm->method());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1032
  Symbol* signature = mh->signature();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1033
  JavaCallArguments jca(mh->size_of_parameters());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1034
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1035
  JavaArgumentUnboxer jap(signature, &jca, (arrayOop) JNIHandles::resolve(args), mh->is_static());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1036
  JavaValue result(jap.get_ret_type());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1037
  jca.set_alternative_target(nm);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1038
  JavaCalls::call(&result, mh, &jca, CHECK_NULL);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1039
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1040
  if (jap.get_ret_type() == T_VOID) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1041
    return NULL;
58273
08a5148e7c4e 8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents: 57876
diff changeset
  1042
  } else if (is_reference_type(jap.get_ret_type())) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1043
    return JNIHandles::make_local((oop) result.get_jobject());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1044
  } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1045
    jvalue *value = (jvalue *) result.get_value_addr();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1046
    // Narrow the value down if required (Important on big endian machines)
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1047
    switch (jap.get_ret_type()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1048
      case T_BOOLEAN:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1049
       value->z = (jboolean) value->i;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1050
       break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1051
      case T_BYTE:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1052
       value->b = (jbyte) value->i;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1053
       break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1054
      case T_CHAR:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1055
       value->c = (jchar) value->i;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1056
       break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1057
      case T_SHORT:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1058
       value->s = (jshort) value->i;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1059
       break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
  1060
      default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
  1061
        break;
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46505
diff changeset
  1062
    }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1063
    JVMCIObject o = JVMCIENV->create_box(jap.get_ret_type(), value, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1064
    return JVMCIENV->get_jobject(o);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1065
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1066
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1067
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1068
C2V_VMENTRY_NULL(jlongArray, getLineNumberTable, (JNIEnv* env, jobject, jobject jvmci_method))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1069
  Method* method = JVMCIENV->asMethod(jvmci_method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1070
  if (!method->has_linenumber_table()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1071
    return NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1072
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1073
  u2 num_entries = 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1074
  CompressedLineNumberReadStream streamForSize(method->compressed_linenumber_table());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1075
  while (streamForSize.read_pair()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1076
    num_entries++;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1077
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1078
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1079
  CompressedLineNumberReadStream stream(method->compressed_linenumber_table());
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1080
  JVMCIPrimitiveArray result = JVMCIENV->new_longArray(2 * num_entries, JVMCI_CHECK_NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1081
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1082
  int i = 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1083
  jlong value;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1084
  while (stream.read_pair()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1085
    value = ((long) stream.bci());
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1086
    JVMCIENV->put_long_at(result, i, value);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1087
    value = ((long) stream.line());
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1088
    JVMCIENV->put_long_at(result, i + 1, value);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1089
    i += 2;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1090
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1091
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1092
  return (jlongArray) JVMCIENV->get_jobject(result);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1093
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1094
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1095
C2V_VMENTRY_0(jlong, getLocalVariableTableStart, (JNIEnv* env, jobject, jobject jvmci_method))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1096
  Method* method = JVMCIENV->asMethod(jvmci_method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1097
  if (!method->has_localvariable_table()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1098
    return 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1099
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1100
  return (jlong) (address) method->localvariable_table_start();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1101
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1102
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1103
C2V_VMENTRY_0(jint, getLocalVariableTableLength, (JNIEnv* env, jobject, jobject jvmci_method))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1104
  Method* method = JVMCIENV->asMethod(jvmci_method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1105
  return method->localvariable_table_length();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1106
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1107
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1108
C2V_VMENTRY(void, reprofile, (JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1109
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1110
  MethodCounters* mcs = method->method_counters();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1111
  if (mcs != NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1112
    mcs->clear_counters();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1113
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1114
  NOT_PRODUCT(method->set_compiled_invocation_count(0));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1115
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 37296
diff changeset
  1116
  CompiledMethod* code = method->code();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1117
  if (code != NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1118
    code->make_not_entrant();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1119
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1120
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1121
  MethodData* method_data = method->method_data();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1122
  if (method_data == NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1123
    ClassLoaderData* loader_data = method->method_holder()->class_loader_data();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1124
    method_data = MethodData::allocate(loader_data, method, CHECK);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1125
    method->set_method_data(method_data);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1126
  } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1127
    method_data->initialize();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1128
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1129
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1130
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1131
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1132
C2V_VMENTRY(void, invalidateHotSpotNmethod, (JNIEnv* env, jobject, jobject hs_nmethod))
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1133
  JVMCIObject nmethod_mirror = JVMCIENV->wrap(hs_nmethod);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1134
  JVMCIENV->invalidate_nmethod_mirror(nmethod_mirror, JVMCI_CHECK);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1135
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1136
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1137
C2V_VMENTRY_NULL(jobject, readUncompressedOop, (JNIEnv* env, jobject, jlong addr))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1138
  oop ret = RawAccess<>::oop_load((oop*)(address)addr);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1139
  return JVMCIENV->get_jobject(JVMCIENV->get_object_constant(ret));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1140
 C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1141
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1142
C2V_VMENTRY_NULL(jlongArray, collectCounters, (JNIEnv* env, jobject))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1143
  // Returns a zero length array if counters aren't enabled
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1144
  JVMCIPrimitiveArray array = JVMCIENV->new_longArray(JVMCICounterSize, JVMCI_CHECK_NULL);
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1145
  if (JVMCICounterSize > 0) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1146
    jlong* temp_array = NEW_RESOURCE_ARRAY(jlong, JVMCICounterSize);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1147
    JavaThread::collect_counters(temp_array, JVMCICounterSize);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1148
    JVMCIENV->copy_longs_from(temp_array, array, 0, JVMCICounterSize);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1149
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1150
  return (jlongArray) JVMCIENV->get_jobject(array);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1151
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1152
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1153
C2V_VMENTRY_0(jint, getCountersSize, (JNIEnv* env, jobject))
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1154
  return (jint) JVMCICounterSize;
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1155
C2V_END
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1156
58282
03fce7b04b42 8230395: Code checks for NULL value returned from NEW_C_HEAP_ARRAY which can not happen
dholmes
parents: 58273
diff changeset
  1157
C2V_VMENTRY(void, setCountersSize, (JNIEnv* env, jobject, jint new_size))
03fce7b04b42 8230395: Code checks for NULL value returned from NEW_C_HEAP_ARRAY which can not happen
dholmes
parents: 58273
diff changeset
  1158
  JavaThread::resize_all_jvmci_counters(new_size);
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1159
C2V_END
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1160
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1161
C2V_VMENTRY_0(jint, allocateCompileId, (JNIEnv* env, jobject, jobject jvmci_method, int entry_bci))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1162
  HandleMark hm;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1163
  if (jvmci_method == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1164
    JVMCI_THROW_0(NullPointerException);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1165
  }
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1166
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1167
  if (entry_bci >= method->code_size() || entry_bci < -1) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1168
    JVMCI_THROW_MSG_0(IllegalArgumentException, err_msg("Unexpected bci %d", entry_bci));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1169
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1170
  return CompileBroker::assign_compile_id_unlocked(THREAD, method, entry_bci);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1171
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1172
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1173
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1174
C2V_VMENTRY_0(jboolean, isMature, (JNIEnv* env, jobject, jlong metaspace_method_data))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1175
  MethodData* mdo = JVMCIENV->asMethodData(metaspace_method_data);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1176
  return mdo != NULL && mdo->is_mature();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1177
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1178
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1179
C2V_VMENTRY_0(jboolean, hasCompiledCodeForOSR, (JNIEnv* env, jobject, jobject jvmci_method, int entry_bci, int comp_level))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1180
  Method* method = JVMCIENV->asMethod(jvmci_method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1181
  return method->lookup_osr_nmethod_for(entry_bci, comp_level, true) != NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1182
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1183
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1184
C2V_VMENTRY_NULL(jobject, getSymbol, (JNIEnv* env, jobject, jlong symbol))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1185
  JVMCIObject sym = JVMCIENV->create_string((Symbol*)(address)symbol, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1186
  return JVMCIENV->get_jobject(sym);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1187
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1188
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1189
bool matches(jobjectArray methods, Method* method, JVMCIEnv* JVMCIENV) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1190
  objArrayOop methods_oop = (objArrayOop) JNIHandles::resolve(methods);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1191
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1192
  for (int i = 0; i < methods_oop->length(); i++) {
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1193
    oop resolved = methods_oop->obj_at(i);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1194
    if ((resolved->klass() == HotSpotJVMCI::HotSpotResolvedJavaMethodImpl::klass()) && HotSpotJVMCI::asMethod(JVMCIENV, resolved) == method) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1195
      return true;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1196
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1197
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1198
  return false;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1199
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1200
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1201
void call_interface(JavaValue* result, Klass* spec_klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1202
  CallInfo callinfo;
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1203
  Handle receiver = args->receiver();
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1204
  Klass* recvrKlass = receiver.is_null() ? (Klass*)NULL : receiver->klass();
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1205
  LinkInfo link_info(spec_klass, name, signature);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1206
  LinkResolver::resolve_interface_call(
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1207
          callinfo, receiver, recvrKlass, link_info, true, CHECK);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1208
  methodHandle method(THREAD, callinfo.selected_method());
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1209
  assert(method.not_null(), "should have thrown exception");
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1210
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1211
  // Invoke the method
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1212
  JavaCalls::call(result, method, args, CHECK);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1213
}
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1214
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1215
C2V_VMENTRY_NULL(jobject, iterateFrames, (JNIEnv* env, jobject compilerToVM, jobjectArray initial_methods, jobjectArray match_methods, jint initialSkip, jobject visitor_handle))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1216
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1217
  if (!thread->has_last_Java_frame()) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1218
    return NULL;
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1219
  }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1220
  Handle visitor(THREAD, JNIHandles::resolve_non_null(visitor_handle));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1221
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1222
  requireInHotSpot("iterateFrames", JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1223
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1224
  HotSpotJVMCI::HotSpotStackFrameReference::klass()->initialize(CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1225
  Handle frame_reference = HotSpotJVMCI::HotSpotStackFrameReference::klass()->allocate_instance_handle(CHECK_NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1226
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1227
  StackFrameStream fst(thread);
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1228
  jobjectArray methods = initial_methods;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1229
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1230
  int frame_number = 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1231
  vframe* vf = vframe::new_vframe(fst.current(), fst.register_map(), thread);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1232
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1233
  while (true) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1234
    // look for the given method
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1235
    bool realloc_called = false;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1236
    while (true) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1237
      StackValueCollection* locals = NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1238
      if (vf->is_compiled_frame()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1239
        // compiled method frame
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1240
        compiledVFrame* cvf = compiledVFrame::cast(vf);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1241
        if (methods == NULL || matches(methods, cvf->method(), JVMCIENV)) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1242
          if (initialSkip > 0) {
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1243
            initialSkip--;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1244
          } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1245
            ScopeDesc* scope = cvf->scope();
46794
aa0b86e09f9a 8185790: [JVMCI] getNextStackFrame and materializeVirtualObjects need to forward exceptions
kvn
parents: 46664
diff changeset
  1246
            // native wrappers do not have a scope
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1247
            if (scope != NULL && scope->objects() != NULL) {
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1248
              GrowableArray<ScopeValue*>* objects;
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1249
              if (!realloc_called) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1250
                objects = scope->objects();
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1251
              } else {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1252
                // some object might already have been re-allocated, only reallocate the non-allocated ones
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1253
                objects = new GrowableArray<ScopeValue*>(scope->objects()->length());
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1254
                for (int i = 0; i < scope->objects()->length(); i++) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1255
                  ObjectValue* sv = (ObjectValue*) scope->objects()->at(i);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1256
                  if (sv->value().is_null()) {
51606
18afb2097ada 8210066: [JVMCI] iterateFrames uses wrong GrowableArray API for appending
dnsimon
parents: 51467
diff changeset
  1257
                    objects->append(sv);
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1258
                  }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1259
                }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1260
              }
55159
a38132298eda 8223320: [AOT] jck test api/javax_script/ScriptEngine/PutGet.html fails when test classes are AOTed
iveresov
parents: 54847
diff changeset
  1261
              bool realloc_failures = Deoptimization::realloc_objects(thread, fst.current(), fst.register_map(), objects, CHECK_NULL);
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1262
              Deoptimization::reassign_fields(fst.current(), fst.register_map(), objects, realloc_failures, false);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1263
              realloc_called = true;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1264
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1265
              GrowableArray<ScopeValue*>* local_values = scope->locals();
48605
00d8c8d696e9 8194991: Null pointer dereference caused by c2v_getNextStackFrame
dlong
parents: 48400
diff changeset
  1266
              assert(local_values != NULL, "NULL locals");
46794
aa0b86e09f9a 8185790: [JVMCI] getNextStackFrame and materializeVirtualObjects need to forward exceptions
kvn
parents: 46664
diff changeset
  1267
              typeArrayOop array_oop = oopFactory::new_boolArray(local_values->length(), CHECK_NULL);
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42650
diff changeset
  1268
              typeArrayHandle array(THREAD, array_oop);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1269
              for (int i = 0; i < local_values->length(); i++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1270
                ScopeValue* value = local_values->at(i);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1271
                if (value->is_object()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1272
                  array->bool_at_put(i, true);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1273
                }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1274
              }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1275
              HotSpotJVMCI::HotSpotStackFrameReference::set_localIsVirtual(JVMCIENV, frame_reference(), array());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1276
            } else {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1277
              HotSpotJVMCI::HotSpotStackFrameReference::set_localIsVirtual(JVMCIENV, frame_reference(), NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1278
            }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1279
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1280
            locals = cvf->locals();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1281
            HotSpotJVMCI::HotSpotStackFrameReference::set_bci(JVMCIENV, frame_reference(), cvf->bci());
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1282
            methodHandle mh(THREAD, cvf->method());
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1283
            JVMCIObject method = JVMCIENV->get_jvmci_method(mh, JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1284
            HotSpotJVMCI::HotSpotStackFrameReference::set_method(JVMCIENV, frame_reference(), JNIHandles::resolve(method.as_jobject()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1285
          }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1286
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1287
      } else if (vf->is_interpreted_frame()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1288
        // interpreted method frame
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1289
        interpretedVFrame* ivf = interpretedVFrame::cast(vf);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1290
        if (methods == NULL || matches(methods, ivf->method(), JVMCIENV)) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1291
          if (initialSkip > 0) {
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1292
            initialSkip--;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1293
          } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1294
            locals = ivf->locals();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1295
            HotSpotJVMCI::HotSpotStackFrameReference::set_bci(JVMCIENV, frame_reference(), ivf->bci());
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1296
            methodHandle mh(THREAD, ivf->method());
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1297
            JVMCIObject method = JVMCIENV->get_jvmci_method(mh, JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1298
            HotSpotJVMCI::HotSpotStackFrameReference::set_method(JVMCIENV, frame_reference(), JNIHandles::resolve(method.as_jobject()));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1299
            HotSpotJVMCI::HotSpotStackFrameReference::set_localIsVirtual(JVMCIENV, frame_reference(), NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1300
          }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1301
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1302
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1303
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1304
      // locals != NULL means that we found a matching frame and result is already partially initialized
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1305
      if (locals != NULL) {
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1306
        methods = match_methods;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1307
        HotSpotJVMCI::HotSpotStackFrameReference::set_compilerToVM(JVMCIENV, frame_reference(), JNIHandles::resolve(compilerToVM));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1308
        HotSpotJVMCI::HotSpotStackFrameReference::set_stackPointer(JVMCIENV, frame_reference(), (jlong) fst.current()->sp());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1309
        HotSpotJVMCI::HotSpotStackFrameReference::set_frameNumber(JVMCIENV, frame_reference(), frame_number);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1310
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1311
        // initialize the locals array
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42650
diff changeset
  1312
        objArrayOop array_oop = oopFactory::new_objectArray(locals->size(), CHECK_NULL);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42650
diff changeset
  1313
        objArrayHandle array(THREAD, array_oop);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1314
        for (int i = 0; i < locals->size(); i++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1315
          StackValue* var = locals->at(i);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1316
          if (var->type() == T_OBJECT) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1317
            array->obj_at_put(i, locals->at(i)->get_obj()());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1318
          }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1319
        }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1320
        HotSpotJVMCI::HotSpotStackFrameReference::set_locals(JVMCIENV, frame_reference(), array());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1321
        HotSpotJVMCI::HotSpotStackFrameReference::set_objectsMaterialized(JVMCIENV, frame_reference(), JNI_FALSE);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1322
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1323
        JavaValue result(T_OBJECT);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1324
        JavaCallArguments args(visitor);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1325
        args.push_oop(frame_reference);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1326
        call_interface(&result, HotSpotJVMCI::InspectedFrameVisitor::klass(), vmSymbols::visitFrame_name(), vmSymbols::visitFrame_signature(), &args, CHECK_NULL);
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1327
        if (result.get_jobject() != NULL) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1328
          return JNIHandles::make_local(thread, (oop) result.get_jobject());
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1329
        }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1330
        assert(initialSkip == 0, "There should be no match before initialSkip == 0");
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1331
        if (HotSpotJVMCI::HotSpotStackFrameReference::objectsMaterialized(JVMCIENV, frame_reference()) == JNI_TRUE) {
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1332
          // the frame has been deoptimized, we need to re-synchronize the frame and vframe
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1333
          intptr_t* stack_pointer = (intptr_t*) HotSpotJVMCI::HotSpotStackFrameReference::stackPointer(JVMCIENV, frame_reference());
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1334
          fst = StackFrameStream(thread);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1335
          while (fst.current()->sp() != stack_pointer && !fst.is_done()) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1336
            fst.next();
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1337
          }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1338
          if (fst.current()->sp() != stack_pointer) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1339
            THROW_MSG_NULL(vmSymbols::java_lang_IllegalStateException(), "stack frame not found after deopt")
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1340
          }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1341
          vf = vframe::new_vframe(fst.current(), fst.register_map(), thread);
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1342
          if (!vf->is_compiled_frame()) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1343
            THROW_MSG_NULL(vmSymbols::java_lang_IllegalStateException(), "compiled stack frame expected")
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1344
          }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1345
          for (int i = 0; i < frame_number; i++) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1346
            if (vf->is_top()) {
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1347
              THROW_MSG_NULL(vmSymbols::java_lang_IllegalStateException(), "vframe not found after deopt")
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1348
            }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1349
            vf = vf->sender();
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1350
            assert(vf->is_compiled_frame(), "Wrong frame type");
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1351
          }
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  1352
        }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1353
        frame_reference = HotSpotJVMCI::HotSpotStackFrameReference::klass()->allocate_instance_handle(CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1354
        HotSpotJVMCI::HotSpotStackFrameReference::klass()->initialize(CHECK_NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1355
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1356
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1357
      if (vf->is_top()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1358
        break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1359
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1360
      frame_number++;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1361
      vf = vf->sender();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1362
    } // end of vframe loop
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1363
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1364
    if (fst.is_done()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1365
      break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1366
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1367
    fst.next();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1368
    vf = vframe::new_vframe(fst.current(), fst.register_map(), thread);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1369
    frame_number = 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1370
  } // end of frame loop
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1371
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1372
  // the end was reached without finding a matching method
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1373
  return NULL;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1374
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1375
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1376
C2V_VMENTRY(void, resolveInvokeDynamicInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1377
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1378
  CallInfo callInfo;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1379
  LinkResolver::resolve_invoke(callInfo, Handle(), cp, index, Bytecodes::_invokedynamic, CHECK);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1380
  ConstantPoolCacheEntry* cp_cache_entry = cp->invokedynamic_cp_cache_entry_at(index);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1381
  cp_cache_entry->set_dynamic_call(cp, callInfo);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1382
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1383
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1384
C2V_VMENTRY(void, resolveInvokeHandleInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1385
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
  1386
  Klass* holder = cp->klass_ref_at(index, CHECK);
40872
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  1387
  Symbol* name = cp->name_ref_at(index);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
  1388
  if (MethodHandles::is_signature_polymorphic_name(holder, name)) {
40872
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  1389
    CallInfo callInfo;
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  1390
    LinkResolver::resolve_invoke(callInfo, Handle(), cp, index, Bytecodes::_invokehandle, CHECK);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
  1391
    ConstantPoolCacheEntry* cp_cache_entry = cp->cache()->entry_at(cp->decode_cpcache_index(index));
40872
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  1392
    cp_cache_entry->set_method_handle(cp, callInfo);
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  1393
  }
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  1394
C2V_END
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  1395
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1396
C2V_VMENTRY_0(jint, isResolvedInvokeHandleInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1397
  constantPoolHandle cp(THREAD, JVMCIENV->asConstantPool(jvmci_constant_pool));
47668
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1398
  ConstantPoolCacheEntry* cp_cache_entry = cp->cache()->entry_at(cp->decode_cpcache_index(index));
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1399
  if (cp_cache_entry->is_resolved(Bytecodes::_invokehandle)) {
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1400
    // MethodHandle.invoke* --> LambdaForm?
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1401
    ResourceMark rm;
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1402
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1403
    LinkInfo link_info(cp, index, CATCH);
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1404
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1405
    Klass* resolved_klass = link_info.resolved_klass();
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1406
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1407
    Symbol* name_sym = cp->name_ref_at(index);
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1408
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1409
    vmassert(MethodHandles::is_method_handle_invoke_name(resolved_klass, name_sym), "!");
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1410
    vmassert(MethodHandles::is_signature_polymorphic_name(resolved_klass, name_sym), "!");
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1411
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1412
    methodHandle adapter_method(THREAD, cp_cache_entry->f1_as_method());
47668
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1413
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1414
    methodHandle resolved_method(adapter_method);
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1415
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1416
    // Can we treat it as a regular invokevirtual?
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1417
    if (resolved_method->method_holder() == resolved_klass && resolved_method->name() == name_sym) {
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1418
      vmassert(!resolved_method->is_static(),"!");
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1419
      vmassert(MethodHandles::is_signature_polymorphic_method(resolved_method()),"!");
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1420
      vmassert(!MethodHandles::is_signature_polymorphic_static(resolved_method->intrinsic_id()), "!");
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1421
      vmassert(cp_cache_entry->appendix_if_resolved(cp) == NULL, "!");
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1422
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1423
      methodHandle m(THREAD, LinkResolver::linktime_resolve_virtual_method_or_null(link_info));
47668
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1424
      vmassert(m == resolved_method, "!!");
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1425
      return -1;
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1426
    }
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1427
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1428
    return Bytecodes::_invokevirtual;
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1429
  }
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1430
  if (cp_cache_entry->is_resolved(Bytecodes::_invokedynamic)) {
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1431
    return Bytecodes::_invokedynamic;
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1432
  }
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1433
  return -1;
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1434
C2V_END
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1435
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  1436
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1437
C2V_VMENTRY_NULL(jobject, getSignaturePolymorphicHolders, (JNIEnv* env, jobject))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1438
  JVMCIObjectArray holders = JVMCIENV->new_String_array(2, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1439
  JVMCIObject mh = JVMCIENV->create_string("Ljava/lang/invoke/MethodHandle;", JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1440
  JVMCIObject vh = JVMCIENV->create_string("Ljava/lang/invoke/VarHandle;", JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1441
  JVMCIENV->put_object_at(holders, 0, mh);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1442
  JVMCIENV->put_object_at(holders, 1, vh);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1443
  return JVMCIENV->get_jobject(holders);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1444
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1445
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1446
C2V_VMENTRY_0(jboolean, shouldDebugNonSafepoints, (JNIEnv* env, jobject))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1447
  //see compute_recording_non_safepoints in debugInfroRec.cpp
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1448
  if (JvmtiExport::should_post_compiled_method_load() && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1449
    return true;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1450
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1451
  return DebugNonSafepoints;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1452
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1453
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1454
// public native void materializeVirtualObjects(HotSpotStackFrameReference stackFrame, boolean invalidate);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1455
C2V_VMENTRY(void, materializeVirtualObjects, (JNIEnv* env, jobject, jobject _hs_frame, bool invalidate))
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1456
  JVMCIObject hs_frame = JVMCIENV->wrap(_hs_frame);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1457
  if (hs_frame.is_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1458
    JVMCI_THROW_MSG(NullPointerException, "stack frame is null");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1459
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1460
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1461
  requireInHotSpot("materializeVirtualObjects", JVMCI_CHECK);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1462
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1463
  JVMCIENV->HotSpotStackFrameReference_initialize(JVMCI_CHECK);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1464
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1465
  // look for the given stack frame
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1466
  StackFrameStream fst(thread);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1467
  intptr_t* stack_pointer = (intptr_t*) JVMCIENV->get_HotSpotStackFrameReference_stackPointer(hs_frame);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1468
  while (fst.current()->sp() != stack_pointer && !fst.is_done()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1469
    fst.next();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1470
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1471
  if (fst.current()->sp() != stack_pointer) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1472
    JVMCI_THROW_MSG(IllegalStateException, "stack frame not found");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1473
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1474
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1475
  if (invalidate) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1476
    if (!fst.current()->is_compiled_frame()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1477
      JVMCI_THROW_MSG(IllegalStateException, "compiled stack frame expected");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1478
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1479
    assert(fst.current()->cb()->is_nmethod(), "nmethod expected");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1480
    ((nmethod*) fst.current()->cb())->make_not_entrant();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1481
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1482
  Deoptimization::deoptimize(thread, *fst.current(), fst.register_map(), Deoptimization::Reason_none);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1483
  // look for the frame again as it has been updated by deopt (pc, deopt state...)
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1484
  StackFrameStream fstAfterDeopt(thread);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1485
  while (fstAfterDeopt.current()->sp() != stack_pointer && !fstAfterDeopt.is_done()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1486
    fstAfterDeopt.next();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1487
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1488
  if (fstAfterDeopt.current()->sp() != stack_pointer) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1489
    JVMCI_THROW_MSG(IllegalStateException, "stack frame not found after deopt");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1490
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1491
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1492
  vframe* vf = vframe::new_vframe(fstAfterDeopt.current(), fstAfterDeopt.register_map(), thread);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1493
  if (!vf->is_compiled_frame()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1494
    JVMCI_THROW_MSG(IllegalStateException, "compiled stack frame expected");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1495
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1496
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1497
  GrowableArray<compiledVFrame*>* virtualFrames = new GrowableArray<compiledVFrame*>(10);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1498
  while (true) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1499
    assert(vf->is_compiled_frame(), "Wrong frame type");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1500
    virtualFrames->push(compiledVFrame::cast(vf));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1501
    if (vf->is_top()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1502
      break;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1503
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1504
    vf = vf->sender();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1505
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1506
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1507
  int last_frame_number = JVMCIENV->get_HotSpotStackFrameReference_frameNumber(hs_frame);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1508
  if (last_frame_number >= virtualFrames->length()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1509
    JVMCI_THROW_MSG(IllegalStateException, "invalid frame number");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1510
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1511
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1512
  // Reallocate the non-escaping objects and restore their fields.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1513
  assert (virtualFrames->at(last_frame_number)->scope() != NULL,"invalid scope");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1514
  GrowableArray<ScopeValue*>* objects = virtualFrames->at(last_frame_number)->scope()->objects();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1515
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1516
  if (objects == NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1517
    // no objects to materialize
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1518
    return;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1519
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1520
55159
a38132298eda 8223320: [AOT] jck test api/javax_script/ScriptEngine/PutGet.html fails when test classes are AOTed
iveresov
parents: 54847
diff changeset
  1521
  bool realloc_failures = Deoptimization::realloc_objects(thread, fstAfterDeopt.current(), fstAfterDeopt.register_map(), objects, CHECK);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1522
  Deoptimization::reassign_fields(fstAfterDeopt.current(), fstAfterDeopt.register_map(), objects, realloc_failures, false);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1523
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1524
  for (int frame_index = 0; frame_index < virtualFrames->length(); frame_index++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1525
    compiledVFrame* cvf = virtualFrames->at(frame_index);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1526
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1527
    GrowableArray<ScopeValue*>* scopeLocals = cvf->scope()->locals();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1528
    StackValueCollection* locals = cvf->locals();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1529
    if (locals != NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1530
      for (int i2 = 0; i2 < locals->size(); i2++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1531
        StackValue* var = locals->at(i2);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1532
        if (var->type() == T_OBJECT && scopeLocals->at(i2)->is_object()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1533
          jvalue val;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1534
          val.l = (jobject) locals->at(i2)->get_obj()();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1535
          cvf->update_local(T_OBJECT, i2, val);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1536
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1537
      }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1538
    }
48792
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1539
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1540
    GrowableArray<ScopeValue*>* scopeExpressions = cvf->scope()->expressions();
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1541
    StackValueCollection* expressions = cvf->expressions();
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1542
    if (expressions != NULL) {
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1543
      for (int i2 = 0; i2 < expressions->size(); i2++) {
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1544
        StackValue* var = expressions->at(i2);
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1545
        if (var->type() == T_OBJECT && scopeExpressions->at(i2)->is_object()) {
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1546
          jvalue val;
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1547
          val.l = (jobject) expressions->at(i2)->get_obj()();
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1548
          cvf->update_stack(T_OBJECT, i2, val);
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1549
        }
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1550
      }
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1551
    }
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1552
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1553
    GrowableArray<MonitorValue*>* scopeMonitors = cvf->scope()->monitors();
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1554
    GrowableArray<MonitorInfo*>* monitors = cvf->monitors();
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1555
    if (monitors != NULL) {
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1556
      for (int i2 = 0; i2 < monitors->length(); i2++) {
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1557
        cvf->update_monitor(i2, monitors->at(i2));
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1558
      }
d2920683b2ea 8192004: InspectedFrame.materializeVirtualObjects only updates locals with new objects
never
parents: 48480
diff changeset
  1559
    }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1560
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1561
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1562
  // all locals are materialized by now
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1563
  JVMCIENV->set_HotSpotStackFrameReference_localIsVirtual(hs_frame, NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1564
  // update the locals array
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1565
  JVMCIObjectArray array = JVMCIENV->get_HotSpotStackFrameReference_locals(hs_frame);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1566
  StackValueCollection* locals = virtualFrames->at(last_frame_number)->locals();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1567
  for (int i = 0; i < locals->size(); i++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1568
    StackValue* var = locals->at(i);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1569
    if (var->type() == T_OBJECT) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1570
      JVMCIENV->put_object_at(array, i, HotSpotJVMCI::wrap(locals->at(i)->get_obj()()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1571
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1572
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1573
  HotSpotJVMCI::HotSpotStackFrameReference::set_objectsMaterialized(JVMCIENV, hs_frame, JNI_TRUE);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1574
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1575
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1576
// Creates a scope where the current thread is attached and detached
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1577
// from HotSpot if it wasn't already attached when entering the scope.
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1578
extern "C" void jio_printf(const char *fmt, ...);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1579
class AttachDetach : public StackObj {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1580
 public:
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1581
  bool _attached;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1582
  AttachDetach(JNIEnv* env, Thread* current_thread) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1583
    if (current_thread == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1584
      extern struct JavaVM_ main_vm;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1585
      JNIEnv* hotspotEnv;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1586
      jint res = main_vm.AttachCurrentThread((void**)&hotspotEnv, NULL);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1587
      _attached = res == JNI_OK;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1588
      static volatile int report_attach_error = 0;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1589
      if (res != JNI_OK && report_attach_error == 0 && Atomic::cmpxchg(1, &report_attach_error, 0) == 0) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1590
        // Only report an attach error once
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1591
        jio_printf("Warning: attaching current thread to VM failed with %d (future attach errors are suppressed)\n", res);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1592
      }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1593
    } else {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1594
      _attached = false;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1595
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1596
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1597
  ~AttachDetach() {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1598
    if (_attached && get_current_thread() != NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1599
      extern struct JavaVM_ main_vm;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1600
      jint res = main_vm.DetachCurrentThread();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1601
      static volatile int report_detach_error = 0;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1602
      if (res != JNI_OK && report_detach_error == 0 && Atomic::cmpxchg(1, &report_detach_error, 0) == 0) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1603
        // Only report an attach error once
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1604
        jio_printf("Warning: detaching current thread from VM failed with %d (future attach errors are suppressed)\n", res);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1605
      }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1606
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1607
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1608
};
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1609
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1610
C2V_VMENTRY_PREFIX(jint, writeDebugOutput, (JNIEnv* env, jobject, jbyteArray bytes, jint offset, jint length, bool flush, bool can_throw))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1611
  AttachDetach ad(env, base_thread);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1612
  bool use_tty = true;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1613
  if (base_thread == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1614
    if (!ad._attached) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1615
      // Can only use tty if the current thread is attached
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1616
      return 0;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1617
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1618
    base_thread = get_current_thread();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1619
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1620
  JVMCITraceMark jtm("writeDebugOutput");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1621
  assert(base_thread->is_Java_thread(), "just checking");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1622
  JavaThread* thread = (JavaThread*) base_thread;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1623
  C2V_BLOCK(void, writeDebugOutput, (JNIEnv* env, jobject, jbyteArray bytes, jint offset, jint length))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1624
  if (bytes == NULL) {
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1625
    if (can_throw) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1626
      JVMCI_THROW_0(NullPointerException);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1627
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1628
    return -1;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1629
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1630
  JVMCIPrimitiveArray array = JVMCIENV->wrap(bytes);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1631
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1632
  // Check if offset and length are non negative.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1633
  if (offset < 0 || length < 0) {
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1634
    if (can_throw) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1635
      JVMCI_THROW_0(ArrayIndexOutOfBoundsException);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1636
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1637
    return -2;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1638
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1639
  // Check if the range is valid.
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1640
  int array_length = JVMCIENV->get_length(array);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1641
  if ((((unsigned int) length + (unsigned int) offset) > (unsigned int) array_length)) {
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1642
    if (can_throw) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1643
      JVMCI_THROW_0(ArrayIndexOutOfBoundsException);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1644
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1645
    return -2;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1646
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1647
  jbyte buffer[O_BUFLEN];
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1648
  while (length > 0) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1649
    int copy_len = MIN2(length, (jint)O_BUFLEN);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1650
    JVMCIENV->copy_bytes_to(array, buffer, offset, copy_len);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1651
    tty->write((char*) buffer, copy_len);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1652
    length -= O_BUFLEN;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1653
    offset += O_BUFLEN;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1654
  }
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1655
  if (flush) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1656
    tty->flush();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1657
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1658
  return 0;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1659
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1660
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1661
C2V_VMENTRY(void, flushDebugOutput, (JNIEnv* env, jobject))
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1662
  tty->flush();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1663
C2V_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1664
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1665
C2V_VMENTRY_0(jint, methodDataProfileDataSize, (JNIEnv* env, jobject, jlong metaspace_method_data, jint position))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1666
  MethodData* mdo = JVMCIENV->asMethodData(metaspace_method_data);
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1667
  ProfileData* profile_data = mdo->data_at(position);
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1668
  if (mdo->is_valid(profile_data)) {
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1669
    return profile_data->size_in_bytes();
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1670
  }
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1671
  DataLayout* data    = mdo->extra_data_base();
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1672
  DataLayout* end   = mdo->extra_data_limit();
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1673
  for (;; data = mdo->next_extra(data)) {
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1674
    assert(data < end, "moved past end of extra data");
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1675
    profile_data = data->data_in();
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1676
    if (mdo->dp_to_di(profile_data->dp()) == position) {
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1677
      return profile_data->size_in_bytes();
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1678
    }
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1679
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1680
  JVMCI_THROW_MSG_0(IllegalArgumentException, err_msg("Invalid profile data position %d", position));
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1681
C2V_END
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
  1682
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1683
C2V_VMENTRY_0(jlong, getFingerprint, (JNIEnv* env, jobject, jlong metaspace_klass))
52381
7f90bc64b0fc 8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents: 52356
diff changeset
  1684
#if INCLUDE_AOT
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1685
  Klass *k = (Klass*) (address) metaspace_klass;
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  1686
  if (k->is_instance_klass()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  1687
    return InstanceKlass::cast(k)->get_stored_fingerprint();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  1688
  } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  1689
    return 0;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  1690
  }
52381
7f90bc64b0fc 8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents: 52356
diff changeset
  1691
#else
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1692
  JVMCI_THROW_MSG_0(InternalError, "unimplemented");
52381
7f90bc64b0fc 8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents: 52356
diff changeset
  1693
#endif
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  1694
C2V_END
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  1695
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1696
C2V_VMENTRY_NULL(jobject, getHostClass, (JNIEnv* env, jobject, jobject jvmci_type))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1697
  InstanceKlass* k = InstanceKlass::cast(JVMCIENV->asKlass(jvmci_type));
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
  1698
  InstanceKlass* host = k->unsafe_anonymous_host();
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 49902
diff changeset
  1699
  JVMCIKlassHandle handle(THREAD, host);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1700
  JVMCIObject result = JVMCIENV->get_jvmci_type(handle, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1701
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1702
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1703
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1704
C2V_VMENTRY_NULL(jobject, getInterfaces, (JNIEnv* env, jobject, jobject jvmci_type))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1705
  if (jvmci_type == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1706
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1707
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1708
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1709
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1710
  if (klass == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1711
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1712
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1713
  if (!klass->is_instance_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1714
    JVMCI_THROW_MSG_0(InternalError, err_msg("Class %s must be instance klass", klass->external_name()));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1715
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1716
  InstanceKlass* iklass = InstanceKlass::cast(klass);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1717
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1718
  // Regular instance klass, fill in all local interfaces
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1719
  int size = iklass->local_interfaces()->length();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1720
  JVMCIObjectArray interfaces = JVMCIENV->new_HotSpotResolvedObjectTypeImpl_array(size, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1721
  for (int index = 0; index < size; index++) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1722
    JVMCIKlassHandle klass(THREAD);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1723
    Klass* k = iklass->local_interfaces()->at(index);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1724
    klass = k;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1725
    JVMCIObject type = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1726
    JVMCIENV->put_object_at(interfaces, index, type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1727
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1728
  return JVMCIENV->get_jobject(interfaces);
45626
c4ea64135530 8182310: [AOT][JVMCI] Get host class of VM anonymous class
dnsimon
parents: 44092
diff changeset
  1729
C2V_END
c4ea64135530 8182310: [AOT][JVMCI] Get host class of VM anonymous class
dnsimon
parents: 44092
diff changeset
  1730
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1731
C2V_VMENTRY_NULL(jobject, getComponentType, (JNIEnv* env, jobject, jobject jvmci_type))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1732
  if (jvmci_type == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1733
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1734
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1735
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1736
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1737
  oop mirror = klass->java_mirror();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1738
  if (java_lang_Class::is_primitive(mirror) ||
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1739
      !java_lang_Class::as_Klass(mirror)->is_array_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1740
    return NULL;
35593
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1741
  }
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1742
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1743
  oop component_mirror = java_lang_Class::component_mirror(mirror);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1744
  if (component_mirror == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1745
    return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1746
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1747
  Klass* component_klass = java_lang_Class::as_Klass(component_mirror);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1748
  if (component_klass != NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1749
    JVMCIKlassHandle klass_handle(THREAD);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1750
    klass_handle = component_klass;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1751
    JVMCIObject result = JVMCIENV->get_jvmci_type(klass_handle, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1752
    return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1753
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1754
  BasicType type = java_lang_Class::primitive_type(component_mirror);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1755
  JVMCIObject result = JVMCIENV->get_jvmci_primitive_type(type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1756
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1757
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1758
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1759
C2V_VMENTRY(void, ensureInitialized, (JNIEnv* env, jobject, jobject jvmci_type))
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1760
  if (jvmci_type == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1761
    JVMCI_THROW(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1762
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1763
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1764
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1765
  if (klass != NULL && klass->should_be_initialized()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1766
    InstanceKlass* k = InstanceKlass::cast(klass);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1767
    k->initialize(CHECK);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1768
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1769
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1770
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1771
C2V_VMENTRY_0(jint, interpreterFrameSize, (JNIEnv* env, jobject, jobject bytecode_frame_handle))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1772
  if (bytecode_frame_handle == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1773
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1774
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1775
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1776
  JVMCIObject top_bytecode_frame = JVMCIENV->wrap(bytecode_frame_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1777
  JVMCIObject bytecode_frame = top_bytecode_frame;
35593
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1778
  int size = 0;
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1779
  int callee_parameters = 0;
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1780
  int callee_locals = 0;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1781
  Method* method = JVMCIENV->asMethod(JVMCIENV->get_BytecodePosition_method(bytecode_frame));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1782
  int extra_args = method->max_stack() - JVMCIENV->get_BytecodeFrame_numStack(bytecode_frame);
35593
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1783
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1784
  while (bytecode_frame.is_non_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1785
    int locks = JVMCIENV->get_BytecodeFrame_numLocks(bytecode_frame);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1786
    int temps = JVMCIENV->get_BytecodeFrame_numStack(bytecode_frame);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1787
    bool is_top_frame = (JVMCIENV->equals(bytecode_frame, top_bytecode_frame));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1788
    Method* method = JVMCIENV->asMethod(JVMCIENV->get_BytecodePosition_method(bytecode_frame));
35593
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1789
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1790
    int frame_size = BytesPerWord * Interpreter::size_activation(method->max_stack(),
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1791
                                                                 temps + callee_parameters,
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1792
                                                                 extra_args,
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1793
                                                                 locks,
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1794
                                                                 callee_parameters,
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1795
                                                                 callee_locals,
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1796
                                                                 is_top_frame);
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1797
    size += frame_size;
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1798
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1799
    callee_parameters = method->size_of_parameters();
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1800
    callee_locals = method->max_locals();
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1801
    extra_args = 0;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1802
    bytecode_frame = JVMCIENV->get_BytecodePosition_caller(bytecode_frame);
35593
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1803
  }
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1804
  return size + Deoptimization::last_frame_adjust(0, callee_locals) * BytesPerWord;
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1805
C2V_END
c733fd198e6e 8146424: runtime/ReservedStack/ReservedStackTest.java triggers: assert(thread->deopt_mark() == __null) failed: no stack overflow from deopt blob/uncommon trap
never
parents: 35592
diff changeset
  1806
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1807
C2V_VMENTRY(void, compileToBytecode, (JNIEnv* env, jobject, jobject lambda_form_handle))
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1808
  Handle lambda_form = JVMCIENV->asConstant(JVMCIENV->wrap(lambda_form_handle), JVMCI_CHECK);
41325
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
  1809
  if (lambda_form->is_a(SystemDictionary::LambdaForm_klass())) {
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
  1810
    TempNewSymbol compileToBytecode = SymbolTable::new_symbol("compileToBytecode");
41325
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
  1811
    JavaValue result(T_VOID);
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
  1812
    JavaCalls::call_special(&result, lambda_form, SystemDictionary::LambdaForm_klass(), compileToBytecode, vmSymbols::void_method_signature(), CHECK);
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
  1813
  } else {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1814
    JVMCI_THROW_MSG(IllegalArgumentException,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1815
                    err_msg("Unexpected type: %s", lambda_form->klass()->external_name()))
41325
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
  1816
  }
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
  1817
C2V_END
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  1818
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  1819
C2V_VMENTRY_0(jint, getIdentityHashCode, (JNIEnv* env, jobject, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1820
  Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1821
  return obj->identity_hash();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1822
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1823
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1824
C2V_VMENTRY_0(jboolean, isInternedString, (JNIEnv* env, jobject, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1825
  Handle str = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1826
  if (!java_lang_String::is_instance(str())) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1827
    return false;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1828
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1829
  int len;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1830
  jchar* name = java_lang_String::as_unicode_string(str(), len, CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1831
  return (StringTable::lookup(name, len) != NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1832
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1833
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1834
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1835
C2V_VMENTRY_NULL(jobject, unboxPrimitive, (JNIEnv* env, jobject, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1836
  if (object == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1837
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1838
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1839
  Handle box = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1840
  BasicType type = java_lang_boxing_object::basic_type(box());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1841
  jvalue result;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1842
  if (java_lang_boxing_object::get_value(box(), &result) == T_ILLEGAL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1843
    return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1844
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1845
  JVMCIObject boxResult = JVMCIENV->create_box(type, &result, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1846
  return JVMCIENV->get_jobject(boxResult);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1847
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1848
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1849
C2V_VMENTRY_NULL(jobject, boxPrimitive, (JNIEnv* env, jobject, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1850
  if (object == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1851
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1852
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1853
  JVMCIObject box = JVMCIENV->wrap(object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1854
  BasicType type = JVMCIENV->get_box_type(box);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1855
  if (type == T_ILLEGAL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1856
    return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1857
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1858
  jvalue value = JVMCIENV->get_boxed_value(type, box);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1859
  JavaValue box_result(T_OBJECT);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1860
  JavaCallArguments jargs;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1861
  Klass* box_klass = NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1862
  Symbol* box_signature = NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1863
#define BOX_CASE(bt, v, argtype, name)           \
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1864
  case bt: \
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1865
    jargs.push_##argtype(value.v); \
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1866
    box_klass = SystemDictionary::name##_klass(); \
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1867
    box_signature = vmSymbols::name##_valueOf_signature(); \
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1868
    break
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1869
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1870
  switch (type) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1871
    BOX_CASE(T_BOOLEAN, z, int, Boolean);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1872
    BOX_CASE(T_BYTE, b, int, Byte);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1873
    BOX_CASE(T_CHAR, c, int, Character);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1874
    BOX_CASE(T_SHORT, s, int, Short);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1875
    BOX_CASE(T_INT, i, int, Integer);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1876
    BOX_CASE(T_LONG, j, long, Long);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1877
    BOX_CASE(T_FLOAT, f, float, Float);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1878
    BOX_CASE(T_DOUBLE, d, double, Double);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1879
    default:
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1880
      ShouldNotReachHere();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1881
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1882
#undef BOX_CASE
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1883
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1884
  JavaCalls::call_static(&box_result,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1885
                         box_klass,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1886
                         vmSymbols::valueOf_name(),
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1887
                         box_signature, &jargs, CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1888
  oop hotspot_box = (oop) box_result.get_jobject();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1889
  JVMCIObject result = JVMCIENV->get_object_constant(hotspot_box, false);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1890
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1891
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1892
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1893
C2V_VMENTRY_NULL(jobjectArray, getDeclaredConstructors, (JNIEnv* env, jobject, jobject holder))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1894
  if (holder == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1895
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1896
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1897
  Klass* klass = JVMCIENV->asKlass(holder);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1898
  if (!klass->is_instance_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1899
    JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(0, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1900
    return JVMCIENV->get_jobjectArray(methods);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1901
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1902
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1903
  InstanceKlass* iklass = InstanceKlass::cast(klass);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1904
  // Ensure class is linked
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1905
  iklass->link_class(CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1906
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1907
  GrowableArray<Method*> constructors_array;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1908
  for (int i = 0; i < iklass->methods()->length(); i++) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1909
    Method* m = iklass->methods()->at(i);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1910
    if (m->is_initializer() && !m->is_static()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1911
      constructors_array.append(m);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1912
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1913
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1914
  JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(constructors_array.length(), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1915
  for (int i = 0; i < constructors_array.length(); i++) {
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1916
    methodHandle ctor(THREAD, constructors_array.at(i));
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1917
    JVMCIObject method = JVMCIENV->get_jvmci_method(ctor, JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1918
    JVMCIENV->put_object_at(methods, i, method);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1919
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1920
  return JVMCIENV->get_jobjectArray(methods);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1921
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1922
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1923
C2V_VMENTRY_NULL(jobjectArray, getDeclaredMethods, (JNIEnv* env, jobject, jobject holder))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1924
  if (holder == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1925
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1926
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1927
  Klass* klass = JVMCIENV->asKlass(holder);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1928
  if (!klass->is_instance_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1929
    JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(0, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1930
    return JVMCIENV->get_jobjectArray(methods);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1931
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1932
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1933
  InstanceKlass* iklass = InstanceKlass::cast(klass);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1934
  // Ensure class is linked
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1935
  iklass->link_class(CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1936
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1937
  GrowableArray<Method*> methods_array;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1938
  for (int i = 0; i < iklass->methods()->length(); i++) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1939
    Method* m = iklass->methods()->at(i);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1940
    if (!m->is_initializer() && !m->is_overpass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1941
      methods_array.append(m);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1942
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1943
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1944
  JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(methods_array.length(), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1945
  for (int i = 0; i < methods_array.length(); i++) {
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1946
    methodHandle mh(THREAD, methods_array.at(i));
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  1947
    JVMCIObject method = JVMCIENV->get_jvmci_method(mh, JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1948
    JVMCIENV->put_object_at(methods, i, method);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1949
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1950
  return JVMCIENV->get_jobjectArray(methods);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1951
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1952
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  1953
C2V_VMENTRY_NULL(jobject, readFieldValue, (JNIEnv* env, jobject, jobject object, jobject field, jboolean is_volatile))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1954
  if (object == NULL || field == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1955
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1956
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1957
  JVMCIObject field_object = JVMCIENV->wrap(field);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1958
  JVMCIObject java_type = JVMCIENV->get_HotSpotResolvedJavaFieldImpl_type(field_object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1959
  int modifiers = JVMCIENV->get_HotSpotResolvedJavaFieldImpl_modifiers(field_object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1960
  Klass* holder = JVMCIENV->asKlass(JVMCIENV->get_HotSpotResolvedJavaFieldImpl_holder(field_object));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1961
  if (!holder->is_instance_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1962
    JVMCI_THROW_MSG_0(InternalError, err_msg("Holder %s must be instance klass", holder->external_name()));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1963
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1964
  InstanceKlass* ik = InstanceKlass::cast(holder);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1965
  BasicType constant_type;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1966
  if (JVMCIENV->isa_HotSpotResolvedPrimitiveType(java_type)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1967
    constant_type = JVMCIENV->kindToBasicType(JVMCIENV->get_HotSpotResolvedPrimitiveType_kind(java_type), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1968
  } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1969
    constant_type = T_OBJECT;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1970
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1971
  int displacement = JVMCIENV->get_HotSpotResolvedJavaFieldImpl_offset(field_object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1972
  fieldDescriptor fd;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1973
  if (!ik->find_local_field_from_offset(displacement, (modifiers & JVM_ACC_STATIC) != 0, &fd)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1974
    JVMCI_THROW_MSG_0(InternalError, err_msg("Can't find field with displacement %d", displacement));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1975
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1976
  JVMCIObject base = JVMCIENV->wrap(object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1977
  Handle obj;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1978
  if (JVMCIENV->isa_HotSpotObjectConstantImpl(base)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1979
    obj = JVMCIENV->asConstant(base, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1980
  } else if (JVMCIENV->isa_HotSpotResolvedObjectTypeImpl(base)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1981
    Klass* klass = JVMCIENV->asKlass(base);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1982
    obj = Handle(THREAD, klass->java_mirror());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1983
  } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1984
    JVMCI_THROW_MSG_NULL(IllegalArgumentException,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1985
                         err_msg("Unexpected type: %s", JVMCIENV->klass_name(base)));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1986
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1987
  jlong value = 0;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1988
  JVMCIObject kind;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1989
  switch (constant_type) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1990
    case T_OBJECT: {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1991
      oop object = is_volatile ? obj->obj_field_acquire(displacement) : obj->obj_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1992
      JVMCIObject result = JVMCIENV->get_object_constant(object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1993
      if (result.is_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1994
        return JVMCIENV->get_jobject(JVMCIENV->get_JavaConstant_NULL_POINTER());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1995
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1996
      return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1997
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1998
    case T_FLOAT: {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  1999
      float f = is_volatile ? obj->float_field_acquire(displacement) : obj->float_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2000
      JVMCIObject result = JVMCIENV->call_JavaConstant_forFloat(f, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2001
      return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2002
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2003
    case T_DOUBLE: {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2004
      double f = is_volatile ? obj->double_field_acquire(displacement) : obj->double_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2005
      JVMCIObject result = JVMCIENV->call_JavaConstant_forDouble(f, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2006
      return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2007
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2008
    case T_BOOLEAN: value = is_volatile ? obj->bool_field_acquire(displacement) : obj->bool_field(displacement); break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2009
    case T_BYTE: value = is_volatile ? obj->byte_field_acquire(displacement) : obj->byte_field(displacement); break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2010
    case T_SHORT: value = is_volatile ? obj->short_field_acquire(displacement) : obj->short_field(displacement); break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2011
    case T_CHAR: value = is_volatile ? obj->char_field_acquire(displacement) : obj->char_field(displacement); break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2012
    case T_INT: value = is_volatile ? obj->int_field_acquire(displacement) : obj->int_field(displacement); break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2013
    case T_LONG: value = is_volatile ? obj->long_field_acquire(displacement) : obj->long_field(displacement); break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2014
    default:
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2015
      ShouldNotReachHere();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2016
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2017
  JVMCIObject result = JVMCIENV->call_PrimitiveConstant_forTypeChar(type2char(constant_type), value, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2018
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2019
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2020
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2021
C2V_VMENTRY_0(jboolean, isInstance, (JNIEnv* env, jobject, jobject holder, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2022
  if (object == NULL || holder == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2023
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2024
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2025
  Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2026
  Klass* klass = JVMCIENV->asKlass(JVMCIENV->wrap(holder));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2027
  return obj->is_a(klass);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2028
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2029
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2030
C2V_VMENTRY_0(jboolean, isAssignableFrom, (JNIEnv* env, jobject, jobject holder, jobject otherHolder))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2031
  if (holder == NULL || otherHolder == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2032
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2033
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2034
  Klass* klass = JVMCIENV->asKlass(JVMCIENV->wrap(holder));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2035
  Klass* otherKlass = JVMCIENV->asKlass(JVMCIENV->wrap(otherHolder));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2036
  return otherKlass->is_subtype_of(klass);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2037
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2038
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2039
C2V_VMENTRY_0(jboolean, isTrustedForIntrinsics, (JNIEnv* env, jobject, jobject holder))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2040
  if (holder == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2041
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2042
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2043
  InstanceKlass* ik = InstanceKlass::cast(JVMCIENV->asKlass(JVMCIENV->wrap(holder)));
58851
f1e6442241ca 8233035: Update JVMCI
kvn
parents: 58793
diff changeset
  2044
  if (ik->class_loader_data()->is_boot_class_loader_data() || ik->class_loader_data()->is_platform_class_loader_data()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2045
    return true;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2046
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2047
  return false;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2048
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2049
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2050
C2V_VMENTRY_NULL(jobject, asJavaType, (JNIEnv* env, jobject, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2051
  if (object == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2052
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2053
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2054
  Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2055
  if (java_lang_Class::is_instance(obj())) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2056
    if (java_lang_Class::is_primitive(obj())) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2057
      JVMCIObject type = JVMCIENV->get_jvmci_primitive_type(java_lang_Class::primitive_type(obj()));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2058
      return JVMCIENV->get_jobject(type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2059
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2060
    Klass* klass = java_lang_Class::as_Klass(obj());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2061
    JVMCIKlassHandle klass_handle(THREAD);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2062
    klass_handle = klass;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2063
    JVMCIObject type = JVMCIENV->get_jvmci_type(klass_handle, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2064
    return JVMCIENV->get_jobject(type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2065
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2066
  return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2067
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2068
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2069
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2070
C2V_VMENTRY_NULL(jobject, asString, (JNIEnv* env, jobject, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2071
  if (object == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2072
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2073
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2074
  Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2075
  const char* str = java_lang_String::as_utf8_string(obj());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2076
  JVMCIObject result = JVMCIENV->create_string(str, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2077
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2078
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2079
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2080
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2081
C2V_VMENTRY_0(jboolean, equals, (JNIEnv* env, jobject, jobject x, jlong xHandle, jobject y, jlong yHandle))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2082
  if (x == NULL || y == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2083
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2084
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2085
  return JVMCIENV->resolve_handle(xHandle) == JVMCIENV->resolve_handle(yHandle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2086
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2087
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2088
C2V_VMENTRY_NULL(jobject, getJavaMirror, (JNIEnv* env, jobject, jobject object))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2089
  if (object == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2090
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2091
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2092
  JVMCIObject base_object = JVMCIENV->wrap(object);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2093
  Handle mirror;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2094
  if (JVMCIENV->isa_HotSpotResolvedObjectTypeImpl(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2095
    mirror = Handle(THREAD, JVMCIENV->asKlass(base_object)->java_mirror());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2096
  } else if (JVMCIENV->isa_HotSpotResolvedPrimitiveType(base_object)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2097
    mirror = JVMCIENV->asConstant(JVMCIENV->get_HotSpotResolvedPrimitiveType_mirror(base_object), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2098
  } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2099
    JVMCI_THROW_MSG_NULL(IllegalArgumentException,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2100
                         err_msg("Unexpected type: %s", JVMCIENV->klass_name(base_object)));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2101
 }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2102
  JVMCIObject result = JVMCIENV->get_object_constant(mirror());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2103
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2104
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2105
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2106
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2107
C2V_VMENTRY_0(jint, getArrayLength, (JNIEnv* env, jobject, jobject x))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2108
  if (x == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2109
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2110
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2111
  Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2112
  if (xobj->klass()->is_array_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2113
    return arrayOop(xobj())->length();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2114
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2115
  return -1;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2116
 C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2117
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2118
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2119
C2V_VMENTRY_NULL(jobject, readArrayElement, (JNIEnv* env, jobject, jobject x, int index))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2120
  if (x == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2121
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2122
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2123
  Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2124
  if (xobj->klass()->is_array_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2125
    arrayOop array = arrayOop(xobj());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2126
    BasicType element_type = ArrayKlass::cast(array->klass())->element_type();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2127
    if (index < 0 || index >= array->length()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2128
      return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2129
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2130
    JVMCIObject result;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2131
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2132
    if (element_type == T_OBJECT) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2133
      result = JVMCIENV->get_object_constant(objArrayOop(xobj())->obj_at(index));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2134
      if (result.is_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2135
        result = JVMCIENV->get_JavaConstant_NULL_POINTER();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2136
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2137
    } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2138
      jvalue value;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2139
      switch (element_type) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2140
        case T_DOUBLE:        value.d = typeArrayOop(xobj())->double_at(index);        break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2141
        case T_FLOAT:         value.f = typeArrayOop(xobj())->float_at(index);         break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2142
        case T_LONG:          value.j = typeArrayOop(xobj())->long_at(index);          break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2143
        case T_INT:           value.i = typeArrayOop(xobj())->int_at(index);            break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2144
        case T_SHORT:         value.s = typeArrayOop(xobj())->short_at(index);          break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2145
        case T_CHAR:          value.c = typeArrayOop(xobj())->char_at(index);           break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2146
        case T_BYTE:          value.b = typeArrayOop(xobj())->byte_at(index);           break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2147
        case T_BOOLEAN:       value.z = typeArrayOop(xobj())->byte_at(index) & 1;       break;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2148
        default:              ShouldNotReachHere();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2149
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2150
      result = JVMCIENV->create_box(element_type, &value, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2151
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2152
    assert(!result.is_null(), "must have a value");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2153
    return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2154
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2155
  return NULL;;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2156
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2157
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2158
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2159
C2V_VMENTRY_0(jint, arrayBaseOffset, (JNIEnv* env, jobject, jobject kind))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2160
  if (kind == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2161
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2162
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2163
  BasicType type = JVMCIENV->kindToBasicType(JVMCIENV->wrap(kind), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2164
  return arrayOopDesc::header_size(type) * HeapWordSize;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2165
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2166
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2167
C2V_VMENTRY_0(jint, arrayIndexScale, (JNIEnv* env, jobject, jobject kind))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2168
  if (kind == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2169
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2170
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2171
  BasicType type = JVMCIENV->kindToBasicType(JVMCIENV->wrap(kind), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2172
  return type2aelembytes(type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2173
C2V_END
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2174
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2175
C2V_VMENTRY_0(jbyte, getByte, (JNIEnv* env, jobject, jobject x, long displacement))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2176
  if (x == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2177
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2178
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2179
  Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2180
  return xobj->byte_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2181
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2182
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2183
C2V_VMENTRY_0(jshort, getShort, (JNIEnv* env, jobject, jobject x, long displacement))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2184
  if (x == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2185
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2186
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2187
  Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2188
  return xobj->short_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2189
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2190
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2191
C2V_VMENTRY_0(jint, getInt, (JNIEnv* env, jobject, jobject x, long displacement))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2192
  if (x == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2193
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2194
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2195
  Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2196
  return xobj->int_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2197
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2198
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2199
C2V_VMENTRY_0(jlong, getLong, (JNIEnv* env, jobject, jobject x, long displacement))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2200
  if (x == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2201
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2202
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2203
  Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2204
  return xobj->long_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2205
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2206
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2207
C2V_VMENTRY_NULL(jobject, getObject, (JNIEnv* env, jobject, jobject x, long displacement))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2208
  if (x == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2209
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2210
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2211
  Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2212
  oop res = xobj->obj_field(displacement);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2213
  JVMCIObject result = JVMCIENV->get_object_constant(res);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2214
  return JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2215
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2216
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2217
C2V_VMENTRY(void, deleteGlobalHandle, (JNIEnv* env, jobject, jlong h))
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2218
  jobject handle = (jobject)(address)h;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2219
  if (handle != NULL) {
57492
0fb5cc208e71 8228340: JVMCI deleteGlobalHandle doesn't delete the handle
kbarrett
parents: 55487
diff changeset
  2220
    JVMCI::destroy_global(handle);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2221
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2222
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2223
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2224
static void requireJVMCINativeLibrary(JVMCI_TRAPS) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2225
  if (!UseJVMCINativeLibrary) {
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2226
    JVMCI_THROW_MSG(UnsupportedOperationException, "JVMCI shared library is not enabled (requires -XX:+UseJVMCINativeLibrary)");
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2227
  }
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2228
}
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2229
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2230
static JavaVM* requireNativeLibraryJavaVM(const char* caller, JVMCI_TRAPS) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2231
  JavaVM* javaVM = JVMCIEnv::get_shared_library_javavm();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2232
  if (javaVM == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2233
    JVMCI_THROW_MSG_NULL(IllegalStateException, err_msg("Require JVMCI shared library to be initialized in %s", caller));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2234
  }
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2235
  return javaVM;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2236
}
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2237
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2238
C2V_VMENTRY_NULL(jlongArray, registerNativeMethods, (JNIEnv* env, jobject, jclass mirror))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2239
  requireJVMCINativeLibrary(JVMCI_CHECK_NULL);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2240
  requireInHotSpot("registerNativeMethods", JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2241
  void* shared_library = JVMCIEnv::get_shared_library_handle();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2242
  if (shared_library == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2243
    // Ensure the JVMCI shared library runtime is initialized.
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2244
    JVMCIEnv __peer_jvmci_env__(thread, false, __FILE__, __LINE__);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2245
    JVMCIEnv* peerEnv = &__peer_jvmci_env__;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2246
    HandleMark hm;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2247
    JVMCIRuntime* runtime = JVMCI::compiler_runtime();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2248
    JVMCIObject receiver = runtime->get_HotSpotJVMCIRuntime(peerEnv);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2249
    if (peerEnv->has_pending_exception()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2250
      peerEnv->describe_pending_exception(true);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2251
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2252
    shared_library = JVMCIEnv::get_shared_library_handle();
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2253
    if (shared_library == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2254
      JVMCI_THROW_MSG_0(InternalError, "Error initializing JVMCI runtime");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2255
    }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2256
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2257
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2258
  if (mirror == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2259
    JVMCI_THROW_0(NullPointerException);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2260
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2261
  Klass* klass = java_lang_Class::as_Klass(JNIHandles::resolve(mirror));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2262
  if (klass == NULL || !klass->is_instance_klass()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2263
    JVMCI_THROW_MSG_0(IllegalArgumentException, "clazz is for primitive type");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2264
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2265
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2266
  InstanceKlass* iklass = InstanceKlass::cast(klass);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2267
  for (int i = 0; i < iklass->methods()->length(); i++) {
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  2268
    methodHandle method(THREAD, iklass->methods()->at(i));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2269
    if (method->is_native()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2270
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2271
      // Compute argument size
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2272
      int args_size = 1                             // JNIEnv
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2273
                    + (method->is_static() ? 1 : 0) // class for static methods
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2274
                    + method->size_of_parameters(); // actual parameters
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2275
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2276
      // 1) Try JNI short style
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2277
      stringStream st;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2278
      char* pure_name = NativeLookup::pure_jni_name(method);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2279
      os::print_jni_name_prefix_on(&st, args_size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2280
      st.print_raw(pure_name);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2281
      os::print_jni_name_suffix_on(&st, args_size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2282
      char* jni_name = st.as_string();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2283
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2284
      address entry = (address) os::dll_lookup(shared_library, jni_name);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2285
      if (entry == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2286
        // 2) Try JNI long style
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2287
        st.reset();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2288
        char* long_name = NativeLookup::long_jni_name(method);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2289
        os::print_jni_name_prefix_on(&st, args_size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2290
        st.print_raw(pure_name);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2291
        st.print_raw(long_name);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2292
        os::print_jni_name_suffix_on(&st, args_size);
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2293
        char* jni_long_name = st.as_string();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2294
        entry = (address) os::dll_lookup(shared_library, jni_long_name);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2295
        if (entry == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2296
          JVMCI_THROW_MSG_0(UnsatisfiedLinkError, err_msg("%s [neither %s nor %s exist in %s]",
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2297
              method->name_and_sig_as_C_string(),
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2298
              jni_name, jni_long_name, JVMCIEnv::get_shared_library_path()));
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2299
        }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2300
      }
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2301
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2302
      if (method->has_native_function() && entry != method->native_function()) {
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2303
        JVMCI_THROW_MSG_0(UnsatisfiedLinkError, err_msg("%s [cannot re-link from " PTR_FORMAT " to " PTR_FORMAT "]",
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2304
            method->name_and_sig_as_C_string(), p2i(method->native_function()), p2i(entry)));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2305
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2306
      method->set_native_function(entry, Method::native_bind_event_is_interesting);
59016
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58851
diff changeset
  2307
      log_debug(jni, resolve)("[Dynamic-linking native method %s.%s ... JNI]",
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58851
diff changeset
  2308
                              method->method_holder()->external_name(),
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58851
diff changeset
  2309
                              method->name()->as_C_string());
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2310
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2311
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2312
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2313
  JavaVM* javaVM = JVMCIEnv::get_shared_library_javavm();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2314
  JVMCIPrimitiveArray result = JVMCIENV->new_longArray(4, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2315
  JVMCIENV->put_long_at(result, 0, (jlong) (address) javaVM);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2316
  JVMCIENV->put_long_at(result, 1, (jlong) (address) javaVM->functions->reserved0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2317
  JVMCIENV->put_long_at(result, 2, (jlong) (address) javaVM->functions->reserved1);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2318
  JVMCIENV->put_long_at(result, 3, (jlong) (address) javaVM->functions->reserved2);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2319
  return (jlongArray) JVMCIENV->get_jobject(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2320
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2321
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2322
C2V_VMENTRY_PREFIX(jboolean, isCurrentThreadAttached, (JNIEnv* env, jobject c2vm))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2323
  if (base_thread == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2324
    // Called from unattached JVMCI shared library thread
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2325
    return false;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2326
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2327
  JVMCITraceMark jtm("isCurrentThreadAttached");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2328
  assert(base_thread->is_Java_thread(), "just checking");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2329
  JavaThread* thread = (JavaThread*) base_thread;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2330
  if (thread->jni_environment() == env) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2331
    C2V_BLOCK(jboolean, isCurrentThreadAttached, (JNIEnv* env, jobject))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2332
    requireJVMCINativeLibrary(JVMCI_CHECK_0);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2333
    JavaVM* javaVM = requireNativeLibraryJavaVM("isCurrentThreadAttached", JVMCI_CHECK_0);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2334
    JNIEnv* peerEnv;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2335
    return javaVM->GetEnv((void**)&peerEnv, JNI_VERSION_1_2) == JNI_OK;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2336
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2337
  return true;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2338
C2V_END
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2339
58793
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2340
C2V_VMENTRY_PREFIX(jlong, getCurrentJavaThread, (JNIEnv* env, jobject c2vm))
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2341
  if (base_thread == NULL) {
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2342
    // Called from unattached JVMCI shared library thread
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2343
    return 0L;
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2344
  }
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2345
  JVMCITraceMark jtm("getCurrentJavaThread");
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2346
  assert(base_thread->is_Java_thread(), "just checking");
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2347
  return (jlong) p2i(base_thread);
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2348
C2V_END
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2349
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2350
C2V_VMENTRY_PREFIX(jboolean, attachCurrentThread, (JNIEnv* env, jobject c2vm, jboolean as_daemon))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2351
  if (base_thread == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2352
    // Called from unattached JVMCI shared library thread
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2353
    extern struct JavaVM_ main_vm;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2354
    JNIEnv* hotspotEnv;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2355
    jint res = as_daemon ? main_vm.AttachCurrentThreadAsDaemon((void**)&hotspotEnv, NULL) :
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2356
                           main_vm.AttachCurrentThread((void**)&hotspotEnv, NULL);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2357
    if (res != JNI_OK) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2358
      JNI_THROW_("attachCurrentThread", InternalError, err_msg("Trying to attach thread returned %d", res), false);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2359
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2360
    return true;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2361
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2362
  JVMCITraceMark jtm("attachCurrentThread");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2363
  assert(base_thread->is_Java_thread(), "just checking");\
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2364
  JavaThread* thread = (JavaThread*) base_thread;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2365
  if (thread->jni_environment() == env) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2366
    // Called from HotSpot
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2367
    C2V_BLOCK(jboolean, attachCurrentThread, (JNIEnv* env, jobject, jboolean))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2368
    requireJVMCINativeLibrary(JVMCI_CHECK_0);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2369
    JavaVM* javaVM = requireNativeLibraryJavaVM("attachCurrentThread", JVMCI_CHECK_0);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2370
    JavaVMAttachArgs attach_args;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2371
    attach_args.version = JNI_VERSION_1_2;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2372
    attach_args.name = thread->name();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2373
    attach_args.group = NULL;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2374
    JNIEnv* peerEnv;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2375
    if (javaVM->GetEnv((void**)&peerEnv, JNI_VERSION_1_2) == JNI_OK) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2376
      return false;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2377
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2378
    jint res = as_daemon ? javaVM->AttachCurrentThreadAsDaemon((void**)&peerEnv, &attach_args) :
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2379
                           javaVM->AttachCurrentThread((void**)&peerEnv, &attach_args);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2380
    if (res == JNI_OK) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2381
      guarantee(peerEnv != NULL, "must be");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2382
      return true;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2383
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2384
    JVMCI_THROW_MSG_0(InternalError, err_msg("Error %d while attaching %s", res, attach_args.name));
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2385
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2386
  // Called from JVMCI shared library
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2387
  return false;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2388
C2V_END
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2389
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2390
C2V_VMENTRY_PREFIX(void, detachCurrentThread, (JNIEnv* env, jobject c2vm))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2391
  if (base_thread == NULL) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2392
    // Called from unattached JVMCI shared library thread
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2393
    JNI_THROW("detachCurrentThread", IllegalStateException, err_msg("Cannot detach non-attached thread"));
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2394
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2395
  JVMCITraceMark jtm("detachCurrentThread");
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2396
  assert(base_thread->is_Java_thread(), "just checking");\
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2397
  JavaThread* thread = (JavaThread*) base_thread;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2398
  if (thread->jni_environment() == env) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2399
    // Called from HotSpot
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2400
    C2V_BLOCK(void, detachCurrentThread, (JNIEnv* env, jobject))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2401
    requireJVMCINativeLibrary(JVMCI_CHECK);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2402
    requireInHotSpot("detachCurrentThread", JVMCI_CHECK);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2403
    JavaVM* javaVM = requireNativeLibraryJavaVM("detachCurrentThread", JVMCI_CHECK);
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2404
    JNIEnv* peerEnv;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2405
    if (javaVM->GetEnv((void**)&peerEnv, JNI_VERSION_1_2) != JNI_OK) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2406
      JVMCI_THROW_MSG(IllegalStateException, err_msg("Cannot detach non-attached thread: %s", thread->name()));
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2407
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2408
    jint res = javaVM->DetachCurrentThread();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2409
    if (res != JNI_OK) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2410
      JVMCI_THROW_MSG(InternalError, err_msg("Error %d while attaching %s", res, thread->name()));
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2411
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2412
  } else {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2413
    // Called from attached JVMCI shared library thread
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2414
    extern struct JavaVM_ main_vm;
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2415
    jint res = main_vm.DetachCurrentThread();
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2416
    if (res != JNI_OK) {
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2417
      JNI_THROW("detachCurrentThread", InternalError, err_msg("Cannot detach non-attached thread"));
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2418
    }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2419
  }
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2420
C2V_END
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2421
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2422
C2V_VMENTRY_0(jlong, translate, (JNIEnv* env, jobject, jobject obj_handle))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2423
  requireJVMCINativeLibrary(JVMCI_CHECK_0);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2424
  if (obj_handle == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2425
    return 0L;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2426
  }
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2427
  JVMCIEnv __peer_jvmci_env__(thread, !JVMCIENV->is_hotspot(), __FILE__, __LINE__);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2428
  JVMCIEnv* peerEnv = &__peer_jvmci_env__;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2429
  JVMCIEnv* thisEnv = JVMCIENV;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2430
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2431
  JVMCIObject obj = thisEnv->wrap(obj_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2432
  JVMCIObject result;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2433
  if (thisEnv->isa_HotSpotResolvedJavaMethodImpl(obj)) {
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  2434
    methodHandle method(THREAD, thisEnv->asMethod(obj));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2435
    result = peerEnv->get_jvmci_method(method, JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2436
  } else if (thisEnv->isa_HotSpotResolvedObjectTypeImpl(obj)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2437
    Klass* klass = thisEnv->asKlass(obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2438
    JVMCIKlassHandle klass_handle(THREAD);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2439
    klass_handle = klass;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2440
    result = peerEnv->get_jvmci_type(klass_handle, JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2441
  } else if (thisEnv->isa_HotSpotResolvedPrimitiveType(obj)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2442
    BasicType type = JVMCIENV->kindToBasicType(JVMCIENV->get_HotSpotResolvedPrimitiveType_kind(obj), JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2443
    result = peerEnv->get_jvmci_primitive_type(type);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2444
  } else if (thisEnv->isa_IndirectHotSpotObjectConstantImpl(obj) ||
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2445
             thisEnv->isa_DirectHotSpotObjectConstantImpl(obj)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2446
    Handle constant = thisEnv->asConstant(obj, JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2447
    result = peerEnv->get_object_constant(constant());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2448
  } else if (thisEnv->isa_HotSpotNmethod(obj)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2449
    nmethod* nm = thisEnv->asNmethod(obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2450
    if (nm != NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2451
      JVMCINMethodData* data = nm->jvmci_nmethod_data();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2452
      if (data != NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2453
        if (peerEnv->is_hotspot()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2454
          // Only the mirror in the HotSpot heap is accessible
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2455
          // through JVMCINMethodData
55454
8892555795cd 8223794: applications/kitchensink/Kitchensink.java crash bad oop with Graal
kvn
parents: 55298
diff changeset
  2456
          oop nmethod_mirror = data->get_nmethod_mirror(nm, /* phantom_ref */ true);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2457
          if (nmethod_mirror != NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2458
            result = HotSpotJVMCI::wrap(nmethod_mirror);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2459
          }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2460
        }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2461
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2462
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2463
    if (result.is_null()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2464
      JVMCIObject methodObject = thisEnv->get_HotSpotNmethod_method(obj);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  2465
      methodHandle mh(THREAD, thisEnv->asMethod(methodObject));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2466
      jboolean isDefault = thisEnv->get_HotSpotNmethod_isDefault(obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2467
      jlong compileIdSnapshot = thisEnv->get_HotSpotNmethod_compileIdSnapshot(obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2468
      JVMCIObject name_string = thisEnv->get_InstalledCode_name(obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2469
      const char* cstring = name_string.is_null() ? NULL : thisEnv->as_utf8_string(name_string);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2470
      // Create a new HotSpotNmethod instance in the peer runtime
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  2471
      result = peerEnv->new_HotSpotNmethod(mh, cstring, isDefault, compileIdSnapshot, JVMCI_CHECK_0);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2472
      if (nm == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2473
        // nmethod must have been unloaded
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2474
      } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2475
        // Link the new HotSpotNmethod to the nmethod
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2476
        peerEnv->initialize_installed_code(result, nm, JVMCI_CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2477
        // Only HotSpotNmethod instances in the HotSpot heap are tracked directly by the runtime.
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2478
        if (peerEnv->is_hotspot()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2479
          JVMCINMethodData* data = nm->jvmci_nmethod_data();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2480
          if (data == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2481
            JVMCI_THROW_MSG_0(IllegalArgumentException, "Cannot set HotSpotNmethod mirror for default nmethod");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2482
          }
55454
8892555795cd 8223794: applications/kitchensink/Kitchensink.java crash bad oop with Graal
kvn
parents: 55298
diff changeset
  2483
          if (data->get_nmethod_mirror(nm, /* phantom_ref */ false) != NULL) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2484
            JVMCI_THROW_MSG_0(IllegalArgumentException, "Cannot overwrite existing HotSpotNmethod mirror for nmethod");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2485
          }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2486
          oop nmethod_mirror = HotSpotJVMCI::resolve(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2487
          data->set_nmethod_mirror(nm, nmethod_mirror);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2488
        }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2489
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2490
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2491
  } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2492
    JVMCI_THROW_MSG_0(IllegalArgumentException,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2493
                err_msg("Cannot translate object of type: %s", thisEnv->klass_name(obj)));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2494
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2495
  return (jlong) peerEnv->make_global(result).as_jobject();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2496
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2497
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2498
C2V_VMENTRY_NULL(jobject, unhand, (JNIEnv* env, jobject, jlong obj_handle))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2499
  requireJVMCINativeLibrary(JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2500
  if (obj_handle == 0L) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2501
    return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2502
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2503
  jobject global_handle = (jobject) obj_handle;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2504
  JVMCIObject global_handle_obj = JVMCIENV->wrap((jobject) obj_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2505
  jobject result = JVMCIENV->make_local(global_handle_obj).as_jobject();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2506
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2507
  JVMCIENV->destroy_global(global_handle_obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2508
  return result;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2509
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2510
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2511
C2V_VMENTRY(void, updateHotSpotNmethod, (JNIEnv* env, jobject, jobject code_handle))
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2512
  JVMCIObject code = JVMCIENV->wrap(code_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2513
  // Execute this operation for the side effect of updating the InstalledCode state
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2514
  JVMCIENV->asNmethod(code);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2515
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2516
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2517
C2V_VMENTRY_NULL(jbyteArray, getCode, (JNIEnv* env, jobject, jobject code_handle))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2518
  JVMCIObject code = JVMCIENV->wrap(code_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2519
  CodeBlob* cb = JVMCIENV->asCodeBlob(code);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2520
  if (cb == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2521
    return NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2522
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2523
  int code_size = cb->code_size();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2524
  JVMCIPrimitiveArray result = JVMCIENV->new_byteArray(code_size, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2525
  JVMCIENV->copy_bytes_from((jbyte*) cb->code_begin(), result, 0, code_size);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2526
  return JVMCIENV->get_jbyteArray(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2527
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2528
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2529
C2V_VMENTRY_NULL(jobject, asReflectionExecutable, (JNIEnv* env, jobject, jobject jvmci_method))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2530
  requireInHotSpot("asReflectionExecutable", JVMCI_CHECK_NULL);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  2531
  methodHandle m(THREAD, JVMCIENV->asMethod(jvmci_method));
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2532
  oop executable;
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2533
  if (m->is_initializer()) {
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2534
    if (m->is_static_initializer()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2535
      JVMCI_THROW_MSG_NULL(IllegalArgumentException,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2536
          "Cannot create java.lang.reflect.Method for class initializer");
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2537
    }
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2538
    executable = Reflection::new_constructor(m, CHECK_NULL);
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2539
  } else {
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2540
    executable = Reflection::new_method(m, false, CHECK_NULL);
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2541
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2542
  return JNIHandles::make_local(THREAD, executable);
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2543
}
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2544
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2545
C2V_VMENTRY_NULL(jobject, asReflectionField, (JNIEnv* env, jobject, jobject jvmci_type, jint index))
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2546
  requireInHotSpot("asReflectionField", JVMCI_CHECK_NULL);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2547
  Klass* klass = JVMCIENV->asKlass(jvmci_type);
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2548
  if (!klass->is_instance_klass()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2549
    JVMCI_THROW_MSG_NULL(IllegalArgumentException,
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2550
        err_msg("Expected non-primitive type, got %s", klass->external_name()));
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2551
  }
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2552
  InstanceKlass* iklass = InstanceKlass::cast(klass);
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2553
  Array<u2>* fields = iklass->fields();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2554
  if (index < 0 ||index > fields->length()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2555
    JVMCI_THROW_MSG_NULL(IllegalArgumentException,
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2556
        err_msg("Field index %d out of bounds for %s", index, klass->external_name()));
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2557
  }
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2558
  fieldDescriptor fd(iklass, index);
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2559
  oop reflected = Reflection::new_field(&fd, CHECK_NULL);
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2560
  return JNIHandles::make_local(env, reflected);
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2561
}
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2562
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2563
C2V_VMENTRY_NULL(jobjectArray, getFailedSpeculations, (JNIEnv* env, jobject, jlong failed_speculations_address, jobjectArray current))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2564
  FailedSpeculation* head = *((FailedSpeculation**)(address) failed_speculations_address);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2565
  int result_length = 0;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2566
  for (FailedSpeculation* fs = head; fs != NULL; fs = fs->next()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2567
    result_length++;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2568
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2569
  int current_length = 0;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2570
  JVMCIObjectArray current_array = NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2571
  if (current != NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2572
    current_array = JVMCIENV->wrap(current);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2573
    current_length = JVMCIENV->get_length(current_array);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2574
    if (current_length == result_length) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2575
      // No new failures
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2576
      return current;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2577
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2578
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2579
  JVMCIObjectArray result = JVMCIENV->new_byte_array_array(result_length, JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2580
  int result_index = 0;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2581
  for (FailedSpeculation* fs = head; result_index < result_length; fs = fs->next()) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2582
    assert(fs != NULL, "npe");
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2583
    JVMCIPrimitiveArray entry;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2584
    if (result_index < current_length) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2585
      entry = (JVMCIPrimitiveArray) JVMCIENV->get_object_at(current_array, result_index);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2586
    } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2587
      entry = JVMCIENV->new_byteArray(fs->data_len(), JVMCI_CHECK_NULL);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2588
      JVMCIENV->copy_bytes_from((jbyte*) fs->data(), entry, 0, fs->data_len());
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2589
    }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2590
    JVMCIENV->put_object_at(result, result_index++, entry);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2591
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2592
  return JVMCIENV->get_jobjectArray(result);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2593
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2594
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2595
C2V_VMENTRY_0(jlong, getFailedSpeculationsAddress, (JNIEnv* env, jobject, jobject jvmci_method))
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
  2596
  methodHandle method(THREAD, JVMCIENV->asMethod(jvmci_method));
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2597
  MethodData* method_data = method->method_data();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2598
  if (method_data == NULL) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2599
    ClassLoaderData* loader_data = method->method_holder()->class_loader_data();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2600
    method_data = MethodData::allocate(loader_data, method, CHECK_0);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2601
    method->set_method_data(method_data);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2602
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2603
  return (jlong) method_data->get_failed_speculations_address();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2604
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2605
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2606
C2V_VMENTRY(void, releaseFailedSpeculations, (JNIEnv* env, jobject, jlong failed_speculations_address))
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2607
  FailedSpeculation::free_failed_speculations((FailedSpeculation**)(address) failed_speculations_address);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2608
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2609
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  2610
C2V_VMENTRY_0(jboolean, addFailedSpeculation, (JNIEnv* env, jobject, jlong failed_speculations_address, jbyteArray speculation_obj))
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2611
  JVMCIPrimitiveArray speculation_handle = JVMCIENV->wrap(speculation_obj);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2612
  int speculation_len = JVMCIENV->get_length(speculation_handle);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2613
  char* speculation = NEW_RESOURCE_ARRAY(char, speculation_len);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2614
  JVMCIENV->copy_bytes_to(speculation_handle, (jbyte*) speculation, 0, speculation_len);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2615
  return FailedSpeculation::add_failed_speculation(NULL, (FailedSpeculation**)(address) failed_speculations_address, (address) speculation, speculation_len);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2616
}
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2617
55463
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2618
C2V_VMENTRY(void, callSystemExit, (JNIEnv* env, jobject, jint status))
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2619
  JavaValue result(T_VOID);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2620
  JavaCallArguments jargs(1);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2621
  jargs.push_int(status);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2622
  JavaCalls::call_static(&result,
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2623
                       SystemDictionary::System_klass(),
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2624
                       vmSymbols::exit_method_name(),
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2625
                       vmSymbols::int_void_signature(),
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2626
                       &jargs,
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2627
                       CHECK);
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2628
}
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2629
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2630
#define CC (char*)  /*cast a literal from (const char*)*/
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2631
#define FN_PTR(f) CAST_FROM_FN_PTR(void*, &(c2v_ ## f))
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2632
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2633
#define STRING                  "Ljava/lang/String;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2634
#define OBJECT                  "Ljava/lang/Object;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2635
#define CLASS                   "Ljava/lang/Class;"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2636
#define OBJECTCONSTANT          "Ljdk/vm/ci/hotspot/HotSpotObjectConstantImpl;"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2637
#define HANDLECONSTANT          "Ljdk/vm/ci/hotspot/IndirectHotSpotObjectConstantImpl;"
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2638
#define EXECUTABLE              "Ljava/lang/reflect/Executable;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2639
#define STACK_TRACE_ELEMENT     "Ljava/lang/StackTraceElement;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2640
#define INSTALLED_CODE          "Ljdk/vm/ci/code/InstalledCode;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2641
#define TARGET_DESCRIPTION      "Ljdk/vm/ci/code/TargetDescription;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2642
#define BYTECODE_FRAME          "Ljdk/vm/ci/code/BytecodeFrame;"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2643
#define JAVACONSTANT            "Ljdk/vm/ci/meta/JavaConstant;"
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2644
#define INSPECTED_FRAME_VISITOR "Ljdk/vm/ci/code/stack/InspectedFrameVisitor;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2645
#define RESOLVED_METHOD         "Ljdk/vm/ci/meta/ResolvedJavaMethod;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2646
#define HS_RESOLVED_METHOD      "Ljdk/vm/ci/hotspot/HotSpotResolvedJavaMethodImpl;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2647
#define HS_RESOLVED_KLASS       "Ljdk/vm/ci/hotspot/HotSpotResolvedObjectTypeImpl;"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2648
#define HS_RESOLVED_TYPE        "Ljdk/vm/ci/hotspot/HotSpotResolvedJavaType;"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2649
#define HS_RESOLVED_FIELD       "Ljdk/vm/ci/hotspot/HotSpotResolvedJavaField;"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2650
#define HS_INSTALLED_CODE       "Ljdk/vm/ci/hotspot/HotSpotInstalledCode;"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2651
#define HS_NMETHOD              "Ljdk/vm/ci/hotspot/HotSpotNmethod;"
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2652
#define HS_CONSTANT_POOL        "Ljdk/vm/ci/hotspot/HotSpotConstantPool;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2653
#define HS_COMPILED_CODE        "Ljdk/vm/ci/hotspot/HotSpotCompiledCode;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2654
#define HS_CONFIG               "Ljdk/vm/ci/hotspot/HotSpotVMConfig;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2655
#define HS_METADATA             "Ljdk/vm/ci/hotspot/HotSpotMetaData;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2656
#define HS_STACK_FRAME_REF      "Ljdk/vm/ci/hotspot/HotSpotStackFrameReference;"
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2657
#define HS_SPECULATION_LOG      "Ljdk/vm/ci/hotspot/HotSpotSpeculationLog;"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2658
#define METASPACE_OBJECT        "Ljdk/vm/ci/hotspot/MetaspaceObject;"
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2659
#define REFLECTION_EXECUTABLE   "Ljava/lang/reflect/Executable;"
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2660
#define REFLECTION_FIELD        "Ljava/lang/reflect/Field;"
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2661
#define METASPACE_METHOD_DATA   "J"
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2662
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2663
JNINativeMethod CompilerToVM::methods[] = {
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2664
  {CC "getBytecode",                                  CC "(" HS_RESOLVED_METHOD ")[B",                                                      FN_PTR(getBytecode)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2665
  {CC "getExceptionTableStart",                       CC "(" HS_RESOLVED_METHOD ")J",                                                       FN_PTR(getExceptionTableStart)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2666
  {CC "getExceptionTableLength",                      CC "(" HS_RESOLVED_METHOD ")I",                                                       FN_PTR(getExceptionTableLength)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2667
  {CC "findUniqueConcreteMethod",                     CC "(" HS_RESOLVED_KLASS HS_RESOLVED_METHOD ")" HS_RESOLVED_METHOD,                   FN_PTR(findUniqueConcreteMethod)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2668
  {CC "getImplementor",                               CC "(" HS_RESOLVED_KLASS ")" HS_RESOLVED_KLASS,                                       FN_PTR(getImplementor)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2669
  {CC "getStackTraceElement",                         CC "(" HS_RESOLVED_METHOD "I)" STACK_TRACE_ELEMENT,                                   FN_PTR(getStackTraceElement)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2670
  {CC "methodIsIgnoredBySecurityStackWalk",           CC "(" HS_RESOLVED_METHOD ")Z",                                                       FN_PTR(methodIsIgnoredBySecurityStackWalk)},
47793
3dcd54513db1 8186478: [JVMCI] rename HotSpotResolvedJavaMethod#setNotInlineableOrCompileable
dnsimon
parents: 47765
diff changeset
  2671
  {CC "setNotInlinableOrCompilable",                  CC "(" HS_RESOLVED_METHOD ")V",                                                       FN_PTR(setNotInlinableOrCompilable)},
43476
b7404901db14 8172733: [JVMCI] add ResolvedJavaMethod.hasNeverInlineDirective
dnsimon
parents: 42650
diff changeset
  2672
  {CC "isCompilable",                                 CC "(" HS_RESOLVED_METHOD ")Z",                                                       FN_PTR(isCompilable)},
b7404901db14 8172733: [JVMCI] add ResolvedJavaMethod.hasNeverInlineDirective
dnsimon
parents: 42650
diff changeset
  2673
  {CC "hasNeverInlineDirective",                      CC "(" HS_RESOLVED_METHOD ")Z",                                                       FN_PTR(hasNeverInlineDirective)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2674
  {CC "shouldInlineMethod",                           CC "(" HS_RESOLVED_METHOD ")Z",                                                       FN_PTR(shouldInlineMethod)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2675
  {CC "lookupType",                                   CC "(" STRING HS_RESOLVED_KLASS "Z)" HS_RESOLVED_TYPE,                                FN_PTR(lookupType)},
55463
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2676
  {CC "getArrayType",                                 CC "(" HS_RESOLVED_TYPE ")" HS_RESOLVED_KLASS,                                        FN_PTR(getArrayType)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2677
  {CC "lookupClass",                                  CC "(" CLASS ")" HS_RESOLVED_TYPE,                                                    FN_PTR(lookupClass)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2678
  {CC "lookupNameInPool",                             CC "(" HS_CONSTANT_POOL "I)" STRING,                                                  FN_PTR(lookupNameInPool)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2679
  {CC "lookupNameAndTypeRefIndexInPool",              CC "(" HS_CONSTANT_POOL "I)I",                                                        FN_PTR(lookupNameAndTypeRefIndexInPool)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2680
  {CC "lookupSignatureInPool",                        CC "(" HS_CONSTANT_POOL "I)" STRING,                                                  FN_PTR(lookupSignatureInPool)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2681
  {CC "lookupKlassRefIndexInPool",                    CC "(" HS_CONSTANT_POOL "I)I",                                                        FN_PTR(lookupKlassRefIndexInPool)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2682
  {CC "lookupKlassInPool",                            CC "(" HS_CONSTANT_POOL "I)Ljava/lang/Object;",                                       FN_PTR(lookupKlassInPool)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2683
  {CC "lookupAppendixInPool",                         CC "(" HS_CONSTANT_POOL "I)" OBJECTCONSTANT,                                          FN_PTR(lookupAppendixInPool)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2684
  {CC "lookupMethodInPool",                           CC "(" HS_CONSTANT_POOL "IB)" HS_RESOLVED_METHOD,                                     FN_PTR(lookupMethodInPool)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2685
  {CC "constantPoolRemapInstructionOperandFromCache", CC "(" HS_CONSTANT_POOL "I)I",                                                        FN_PTR(constantPoolRemapInstructionOperandFromCache)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2686
  {CC "resolvePossiblyCachedConstantInPool",          CC "(" HS_CONSTANT_POOL "I)" OBJECTCONSTANT,                                          FN_PTR(resolvePossiblyCachedConstantInPool)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2687
  {CC "resolveTypeInPool",                            CC "(" HS_CONSTANT_POOL "I)" HS_RESOLVED_KLASS,                                       FN_PTR(resolveTypeInPool)},
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
  2688
  {CC "resolveFieldInPool",                           CC "(" HS_CONSTANT_POOL "I" HS_RESOLVED_METHOD "B[I)" HS_RESOLVED_KLASS,              FN_PTR(resolveFieldInPool)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2689
  {CC "resolveInvokeDynamicInPool",                   CC "(" HS_CONSTANT_POOL "I)V",                                                        FN_PTR(resolveInvokeDynamicInPool)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2690
  {CC "resolveInvokeHandleInPool",                    CC "(" HS_CONSTANT_POOL "I)V",                                                        FN_PTR(resolveInvokeHandleInPool)},
47668
fc4cfca10556 8132547: [AOT] support invokedynamic instructions
dlong
parents: 47580
diff changeset
  2691
  {CC "isResolvedInvokeHandleInPool",                 CC "(" HS_CONSTANT_POOL "I)I",                                                        FN_PTR(isResolvedInvokeHandleInPool)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2692
  {CC "resolveMethod",                                CC "(" HS_RESOLVED_KLASS HS_RESOLVED_METHOD HS_RESOLVED_KLASS ")" HS_RESOLVED_METHOD, FN_PTR(resolveMethod)},
40872
6364f752fdc5 8164214: [JVMCI] include VarHandle in signature polymorphic method test
dnsimon
parents: 40372
diff changeset
  2693
  {CC "getSignaturePolymorphicHolders",               CC "()[" STRING,                                                                      FN_PTR(getSignaturePolymorphicHolders)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2694
  {CC "getVtableIndexForInterfaceMethod",             CC "(" HS_RESOLVED_KLASS HS_RESOLVED_METHOD ")I",                                     FN_PTR(getVtableIndexForInterfaceMethod)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2695
  {CC "getClassInitializer",                          CC "(" HS_RESOLVED_KLASS ")" HS_RESOLVED_METHOD,                                      FN_PTR(getClassInitializer)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2696
  {CC "hasFinalizableSubclass",                       CC "(" HS_RESOLVED_KLASS ")Z",                                                        FN_PTR(hasFinalizableSubclass)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2697
  {CC "getMaxCallTargetOffset",                       CC "(J)J",                                                                            FN_PTR(getMaxCallTargetOffset)},
41325
050786119cb7 8165434: [JVMCI] remove uses of setAccessible
dnsimon
parents: 41051
diff changeset
  2698
  {CC "asResolvedJavaMethod",                         CC "(" EXECUTABLE ")" HS_RESOLVED_METHOD,                                             FN_PTR(asResolvedJavaMethod)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2699
  {CC "getResolvedJavaMethod",                        CC "(" OBJECTCONSTANT "J)" HS_RESOLVED_METHOD,                                        FN_PTR(getResolvedJavaMethod)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2700
  {CC "getConstantPool",                              CC "(" METASPACE_OBJECT ")" HS_CONSTANT_POOL,                                         FN_PTR(getConstantPool)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2701
  {CC "getResolvedJavaType0",                         CC "(Ljava/lang/Object;JZ)" HS_RESOLVED_KLASS,                                        FN_PTR(getResolvedJavaType0)},
39423
0f8dc3693499 8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents: 39421
diff changeset
  2702
  {CC "readConfiguration",                            CC "()[" OBJECT,                                                                      FN_PTR(readConfiguration)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2703
  {CC "installCode",                                  CC "(" TARGET_DESCRIPTION HS_COMPILED_CODE INSTALLED_CODE "J[B)I",                    FN_PTR(installCode)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2704
  {CC "getMetadata",                                  CC "(" TARGET_DESCRIPTION HS_COMPILED_CODE HS_METADATA ")I",                          FN_PTR(getMetadata)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2705
  {CC "resetCompilationStatistics",                   CC "()V",                                                                             FN_PTR(resetCompilationStatistics)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2706
  {CC "disassembleCodeBlob",                          CC "(" INSTALLED_CODE ")" STRING,                                                     FN_PTR(disassembleCodeBlob)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2707
  {CC "executeHotSpotNmethod",                        CC "([" OBJECT HS_NMETHOD ")" OBJECT,                                                 FN_PTR(executeHotSpotNmethod)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2708
  {CC "getLineNumberTable",                           CC "(" HS_RESOLVED_METHOD ")[J",                                                      FN_PTR(getLineNumberTable)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2709
  {CC "getLocalVariableTableStart",                   CC "(" HS_RESOLVED_METHOD ")J",                                                       FN_PTR(getLocalVariableTableStart)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2710
  {CC "getLocalVariableTableLength",                  CC "(" HS_RESOLVED_METHOD ")I",                                                       FN_PTR(getLocalVariableTableLength)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2711
  {CC "reprofile",                                    CC "(" HS_RESOLVED_METHOD ")V",                                                       FN_PTR(reprofile)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2712
  {CC "invalidateHotSpotNmethod",                     CC "(" HS_NMETHOD ")V",                                                               FN_PTR(invalidateHotSpotNmethod)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2713
  {CC "readUncompressedOop",                          CC "(J)" OBJECTCONSTANT,                                                              FN_PTR(readUncompressedOop)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2714
  {CC "collectCounters",                              CC "()[J",                                                                            FN_PTR(collectCounters)},
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55159
diff changeset
  2715
  {CC "getCountersSize",                              CC "()I",                                                                             FN_PTR(getCountersSize)},
58282
03fce7b04b42 8230395: Code checks for NULL value returned from NEW_C_HEAP_ARRAY which can not happen
dholmes
parents: 58273
diff changeset
  2716
  {CC "setCountersSize",                              CC "(I)V",                                                                            FN_PTR(setCountersSize)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2717
  {CC "allocateCompileId",                            CC "(" HS_RESOLVED_METHOD "I)I",                                                      FN_PTR(allocateCompileId)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2718
  {CC "isMature",                                     CC "(" METASPACE_METHOD_DATA ")Z",                                                    FN_PTR(isMature)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2719
  {CC "hasCompiledCodeForOSR",                        CC "(" HS_RESOLVED_METHOD "II)Z",                                                     FN_PTR(hasCompiledCodeForOSR)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2720
  {CC "getSymbol",                                    CC "(J)" STRING,                                                                      FN_PTR(getSymbol)},
49358
0dc249f5c260 8194490: [JVMCI] Move `iterateFrames` to C++
gdub
parents: 49351
diff changeset
  2721
  {CC "iterateFrames",                                CC "([" RESOLVED_METHOD "[" RESOLVED_METHOD "I" INSPECTED_FRAME_VISITOR ")" OBJECT,   FN_PTR(iterateFrames)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2722
  {CC "materializeVirtualObjects",                    CC "(" HS_STACK_FRAME_REF "Z)V",                                                      FN_PTR(materializeVirtualObjects)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2723
  {CC "shouldDebugNonSafepoints",                     CC "()Z",                                                                             FN_PTR(shouldDebugNonSafepoints)},
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2724
  {CC "writeDebugOutput",                             CC "([BIIZZ)I",                                                                       FN_PTR(writeDebugOutput)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2725
  {CC "flushDebugOutput",                             CC "()V",                                                                             FN_PTR(flushDebugOutput)},
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2726
  {CC "methodDataProfileDataSize",                    CC "(JI)I",                                                                           FN_PTR(methodDataProfileDataSize)},
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 41338
diff changeset
  2727
  {CC "getFingerprint",                               CC "(J)J",                                                                            FN_PTR(getFingerprint)},
45626
c4ea64135530 8182310: [AOT][JVMCI] Get host class of VM anonymous class
dnsimon
parents: 44092
diff changeset
  2728
  {CC "getHostClass",                                 CC "(" HS_RESOLVED_KLASS ")" HS_RESOLVED_KLASS,                                       FN_PTR(getHostClass)},
37282
3f55e4b3231c 8150690: C++11 user-defined literal syntax in jvmciCompilerToVM.cpp.
rraghavan
parents: 36842
diff changeset
  2729
  {CC "interpreterFrameSize",                         CC "(" BYTECODE_FRAME ")I",                                                           FN_PTR(interpreterFrameSize)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2730
  {CC "compileToBytecode",                            CC "(" OBJECTCONSTANT ")V",                                                           FN_PTR(compileToBytecode)},
43939
39f5b59549de 8173912: [JVMCI] fix memory overhead of JVMCI
dnsimon
parents: 43476
diff changeset
  2731
  {CC "getFlagValue",                                 CC "(" STRING ")" OBJECT,                                                             FN_PTR(getFlagValue)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2732
  {CC "getObjectAtAddress",                           CC "(J)" OBJECT,                                                                      FN_PTR(getObjectAtAddress)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2733
  {CC "getInterfaces",                                CC "(" HS_RESOLVED_KLASS ")[" HS_RESOLVED_KLASS,                                      FN_PTR(getInterfaces)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2734
  {CC "getComponentType",                             CC "(" HS_RESOLVED_KLASS ")" HS_RESOLVED_TYPE,                                        FN_PTR(getComponentType)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2735
  {CC "ensureInitialized",                            CC "(" HS_RESOLVED_KLASS ")V",                                                        FN_PTR(ensureInitialized)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2736
  {CC "getIdentityHashCode",                          CC "(" OBJECTCONSTANT ")I",                                                           FN_PTR(getIdentityHashCode)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2737
  {CC "isInternedString",                             CC "(" OBJECTCONSTANT ")Z",                                                           FN_PTR(isInternedString)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2738
  {CC "unboxPrimitive",                               CC "(" OBJECTCONSTANT ")" OBJECT,                                                     FN_PTR(unboxPrimitive)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2739
  {CC "boxPrimitive",                                 CC "(" OBJECT ")" OBJECTCONSTANT,                                                     FN_PTR(boxPrimitive)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2740
  {CC "getDeclaredConstructors",                      CC "(" HS_RESOLVED_KLASS ")[" RESOLVED_METHOD,                                        FN_PTR(getDeclaredConstructors)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2741
  {CC "getDeclaredMethods",                           CC "(" HS_RESOLVED_KLASS ")[" RESOLVED_METHOD,                                        FN_PTR(getDeclaredMethods)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2742
  {CC "readFieldValue",                               CC "(" HS_RESOLVED_KLASS HS_RESOLVED_FIELD "Z)" JAVACONSTANT,                         FN_PTR(readFieldValue)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2743
  {CC "readFieldValue",                               CC "(" OBJECTCONSTANT HS_RESOLVED_FIELD "Z)" JAVACONSTANT,                            FN_PTR(readFieldValue)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2744
  {CC "isInstance",                                   CC "(" HS_RESOLVED_KLASS OBJECTCONSTANT ")Z",                                         FN_PTR(isInstance)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2745
  {CC "isAssignableFrom",                             CC "(" HS_RESOLVED_KLASS HS_RESOLVED_KLASS ")Z",                                      FN_PTR(isAssignableFrom)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2746
  {CC "isTrustedForIntrinsics",                       CC "(" HS_RESOLVED_KLASS ")Z",                                                        FN_PTR(isTrustedForIntrinsics)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2747
  {CC "asJavaType",                                   CC "(" OBJECTCONSTANT ")" HS_RESOLVED_TYPE,                                           FN_PTR(asJavaType)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2748
  {CC "asString",                                     CC "(" OBJECTCONSTANT ")" STRING,                                                     FN_PTR(asString)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2749
  {CC "equals",                                       CC "(" OBJECTCONSTANT "J" OBJECTCONSTANT "J)Z",                                       FN_PTR(equals)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2750
  {CC "getJavaMirror",                                CC "(" HS_RESOLVED_TYPE ")" OBJECTCONSTANT,                                           FN_PTR(getJavaMirror)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2751
  {CC "getArrayLength",                               CC "(" OBJECTCONSTANT ")I",                                                           FN_PTR(getArrayLength)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2752
  {CC "readArrayElement",                             CC "(" OBJECTCONSTANT "I)Ljava/lang/Object;",                                         FN_PTR(readArrayElement)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2753
  {CC "arrayBaseOffset",                              CC "(Ljdk/vm/ci/meta/JavaKind;)I",                                                    FN_PTR(arrayBaseOffset)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2754
  {CC "arrayIndexScale",                              CC "(Ljdk/vm/ci/meta/JavaKind;)I",                                                    FN_PTR(arrayIndexScale)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2755
  {CC "getByte",                                      CC "(" OBJECTCONSTANT "J)B",                                                          FN_PTR(getByte)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2756
  {CC "getShort",                                     CC "(" OBJECTCONSTANT "J)S",                                                          FN_PTR(getShort)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2757
  {CC "getInt",                                       CC "(" OBJECTCONSTANT "J)I",                                                          FN_PTR(getInt)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2758
  {CC "getLong",                                      CC "(" OBJECTCONSTANT "J)J",                                                          FN_PTR(getLong)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2759
  {CC "getObject",                                    CC "(" OBJECTCONSTANT "J)" OBJECTCONSTANT,                                            FN_PTR(getObject)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2760
  {CC "deleteGlobalHandle",                           CC "(J)V",                                                                            FN_PTR(deleteGlobalHandle)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2761
  {CC "registerNativeMethods",                        CC "(" CLASS ")[J",                                                                   FN_PTR(registerNativeMethods)},
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2762
  {CC "isCurrentThreadAttached",                      CC "()Z",                                                                             FN_PTR(isCurrentThreadAttached)},
58793
81ad1da857f6 8232904: Update JVMCI
kvn
parents: 58722
diff changeset
  2763
  {CC "getCurrentJavaThread",                         CC "()J",                                                                             FN_PTR(getCurrentJavaThread)},
54732
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2764
  {CC "attachCurrentThread",                          CC "(Z)Z",                                                                            FN_PTR(attachCurrentThread)},
2d012a75d35c 8223332: Update JVMCI
kvn
parents: 54708
diff changeset
  2765
  {CC "detachCurrentThread",                          CC "()V",                                                                             FN_PTR(detachCurrentThread)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2766
  {CC "translate",                                    CC "(" OBJECT ")J",                                                                   FN_PTR(translate)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2767
  {CC "unhand",                                       CC "(J)" OBJECT,                                                                      FN_PTR(unhand)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2768
  {CC "updateHotSpotNmethod",                         CC "(" HS_NMETHOD ")V",                                                               FN_PTR(updateHotSpotNmethod)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2769
  {CC "getCode",                                      CC "(" HS_INSTALLED_CODE ")[B",                                                       FN_PTR(getCode)},
52645
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2770
  {CC "asReflectionExecutable",                       CC "(" HS_RESOLVED_METHOD ")" REFLECTION_EXECUTABLE,                                  FN_PTR(asReflectionExecutable)},
74cf02d5f6e2 8213907: [JVMCI] avoid Class.getDeclared* methods when converting JVMCI objects to reflection objects
dnsimon
parents: 52381
diff changeset
  2771
  {CC "asReflectionField",                            CC "(" HS_RESOLVED_KLASS "I)" REFLECTION_FIELD,                                       FN_PTR(asReflectionField)},
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2772
  {CC "getFailedSpeculations",                        CC "(J[[B)[[B",                                                                       FN_PTR(getFailedSpeculations)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2773
  {CC "getFailedSpeculationsAddress",                 CC "(" HS_RESOLVED_METHOD ")J",                                                       FN_PTR(getFailedSpeculationsAddress)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2774
  {CC "releaseFailedSpeculations",                    CC "(J)V",                                                                            FN_PTR(releaseFailedSpeculations)},
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
  2775
  {CC "addFailedSpeculation",                         CC "(J[B)Z",                                                                          FN_PTR(addFailedSpeculation)},
55463
31bf7b93df5d 8225810: Update JVMCI
kvn
parents: 55454
diff changeset
  2776
  {CC "callSystemExit",                               CC "(I)V",                                                                            FN_PTR(callSystemExit)},
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2777
};
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2778
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2779
int CompilerToVM::methods_count() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2780
  return sizeof(methods) / sizeof(JNINativeMethod);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
  2781
}