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