hotspot/src/share/vm/prims/jni.cpp
author minqi
Mon, 16 Sep 2013 15:35:04 -0700
changeset 19968 64f9d23af647
parent 19547 0f52d3bfe28c
child 20005 6fb8070af25d
permissions -rw-r--r--
7164841: Improvements to the GC log file rotation Summary: made changes to easily identify current log file in rotation. Parameterize the input with %t for time replacement in file name. Reviewed-by: ccheung, tschatzl, tamao, zgu Contributed-by: yumin.qi@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
16394
b5940f63d436 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
bpittore
parents: 15482
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
13958
f5598a86c223 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 13952
diff changeset
     3
 * Copyright (c) 2012 Red Hat, Inc.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
diff changeset
    22
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    26
#include "precompiled.hpp"
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
    27
#include "ci/ciReplay.hpp"
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12939
diff changeset
    28
#include "classfile/altHashing.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "classfile/classLoader.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    30
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    31
#include "classfile/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    32
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    33
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    34
#include "interpreter/linkResolver.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14585
diff changeset
    35
#include "utilities/macros.hpp"
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14585
diff changeset
    36
#if INCLUDE_ALL_GCS
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
    37
#include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14585
diff changeset
    38
#endif // INCLUDE_ALL_GCS
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13087
diff changeset
    39
#include "memory/allocation.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    40
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    41
#include "memory/gcLocker.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    42
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    43
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    44
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    45
#include "oops/instanceOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    46
#include "oops/markOop.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    47
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    48
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    49
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    50
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
    51
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    52
#include "oops/typeArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    53
#include "oops/typeArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    54
#include "prims/jni.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    55
#include "prims/jniCheck.hpp"
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 11247
diff changeset
    56
#include "prims/jniExport.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    57
#include "prims/jniFastGetField.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    58
#include "prims/jvm.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    59
#include "prims/jvm_misc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    60
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    61
#include "prims/jvmtiThreadState.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    62
#include "runtime/compilationPolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    63
#include "runtime/fieldDescriptor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    64
#include "runtime/fprofiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    65
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    66
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    67
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    68
#include "runtime/javaCalls.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    69
#include "runtime/jfieldIDWorkaround.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    70
#include "runtime/reflection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    71
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    72
#include "runtime/signature.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14490
diff changeset
    73
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    74
#include "runtime/vm_operations.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    75
#include "services/runtimeService.hpp"
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 11247
diff changeset
    76
#include "trace/tracing.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    77
#include "utilities/defaultStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    78
#include "utilities/dtrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    79
#include "utilities/events.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    80
#include "utilities/histogram.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    81
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    82
# include "os_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    83
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    84
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    85
# include "os_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    86
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    87
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    88
# include "os_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    89
#endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10546
diff changeset
    90
#ifdef TARGET_OS_FAMILY_bsd
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10546
diff changeset
    91
# include "os_bsd.inline.hpp"
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10546
diff changeset
    92
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
16394
b5940f63d436 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
bpittore
parents: 15482
diff changeset
    94
static jint CurrentVersion = JNI_VERSION_1_8;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// The DT_RETURN_MARK macros create a scoped object to fire the dtrace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// '-return' probe regardless of the return path is taken out of the function.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// Methods that have multiple return paths use this to avoid having to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// instrument each return path.  Methods that use CHECK or THROW must use this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// since those macros can cause an immedate uninstrumented return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// In order to get the return value, a reference to the variable containing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// the return value must be passed to the contructor of the object, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// the return value must be set before return (since the mark object has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// a reference to it).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// Example:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// DT_RETURN_MARK_DECL(SomeFunc, int);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// JNI_ENTRY(int, SomeFunc, ...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
//   int return_value = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
//   DT_RETURN_MARK(SomeFunc, int, (const int&)return_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
//   foo(CHECK_0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
//   return_value = 5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
//   return return_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// JNI_END
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   117
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
#define DT_RETURN_MARK_DECL(name, type)                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  HS_DTRACE_PROBE_DECL1(hotspot_jni, name##__return, type);                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  DTRACE_ONLY(                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    class DTraceReturnProbeMark_##name {                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
     public:                                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      const type& _ret_ref;                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
      DTraceReturnProbeMark_##name(const type& v) : _ret_ref(v) {}         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      ~DTraceReturnProbeMark_##name() {                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
        HS_DTRACE_PROBE1(hotspot_jni, name##__return, _ret_ref);           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      }                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    }                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// Void functions are simpler since there's no return value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#define DT_VOID_RETURN_MARK_DECL(name)                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  HS_DTRACE_PROBE_DECL0(hotspot_jni, name##__return);                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  DTRACE_ONLY(                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    class DTraceReturnProbeMark_##name {                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
     public:                                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      ~DTraceReturnProbeMark_##name() {                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
        HS_DTRACE_PROBE0(hotspot_jni, name##__return);                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
      }                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    }                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   142
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   143
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   144
#define DT_RETURN_MARK_DECL(name, type, probe)                             \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   145
  DTRACE_ONLY(                                                             \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   146
    class DTraceReturnProbeMark_##name {                                   \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   147
     public:                                                               \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   148
      const type& _ret_ref;                                                \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   149
      DTraceReturnProbeMark_##name(const type& v) : _ret_ref(v) {}         \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   150
      ~DTraceReturnProbeMark_##name() {                                    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   151
        probe;                                                             \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   152
      }                                                                    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   153
    }                                                                      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   154
  )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   155
// Void functions are simpler since there's no return value
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   156
#define DT_VOID_RETURN_MARK_DECL(name, probe)                              \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   157
  DTRACE_ONLY(                                                             \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   158
    class DTraceReturnProbeMark_##name {                                   \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   159
     public:                                                               \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   160
      ~DTraceReturnProbeMark_##name() {                                    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   161
        probe;                                                             \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   162
      }                                                                    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   163
    }                                                                      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   164
  )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   165
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// Place these macros in the function to mark the return.  Non-void
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// functions need the type and address of the return value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#define DT_RETURN_MARK(name, type, ref) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark(ref) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
#define DT_VOID_RETURN_MARK(name) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// Use these to select distinct code for floating-point vs. non-floating point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// situations.  Used from within common macros where we need slightly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// different behavior for Float/Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#define FP_SELECT_Boolean(intcode, fpcode) intcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#define FP_SELECT_Byte(intcode, fpcode)    intcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#define FP_SELECT_Char(intcode, fpcode)    intcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#define FP_SELECT_Short(intcode, fpcode)   intcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#define FP_SELECT_Object(intcode, fpcode)  intcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
#define FP_SELECT_Int(intcode, fpcode)     intcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#define FP_SELECT_Long(intcode, fpcode)    intcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
#define FP_SELECT_Float(intcode, fpcode)   fpcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
#define FP_SELECT_Double(intcode, fpcode)  fpcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
#define FP_SELECT(TypeName, intcode, fpcode) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  FP_SELECT_##TypeName(intcode, fpcode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
#define COMMA ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// Choose DT_RETURN_MARK macros  based on the type: float/double -> void
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// (dtrace doesn't do FP yet)
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   194
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
#define DT_RETURN_MARK_DECL_FOR(TypeName, name, type) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  FP_SELECT(TypeName, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    DT_RETURN_MARK_DECL(name, type), DT_VOID_RETURN_MARK_DECL(name) )
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   198
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   199
#define DT_RETURN_MARK_DECL_FOR(TypeName, name, type, probe)    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   200
  FP_SELECT(TypeName, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   201
    DT_RETURN_MARK_DECL(name, type, probe), DT_VOID_RETURN_MARK_DECL(name, probe) )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   202
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
#define DT_RETURN_MARK_FOR(TypeName, name, type, ref) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  FP_SELECT(TypeName, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    DT_RETURN_MARK(name, type, ref), DT_VOID_RETURN_MARK(name) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// out-of-line helpers for class jfieldIDWorkaround:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   210
bool jfieldIDWorkaround::is_valid_jfieldID(Klass* k, jfieldID id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  if (jfieldIDWorkaround::is_instance_jfieldID(k, id)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    uintptr_t as_uint = (uintptr_t) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    intptr_t offset = raw_instance_offset(id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    if (is_checked_jfieldID(id)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
      if (!klass_hash_ok(k, id)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   219
    return InstanceKlass::cast(k)->contains_field_offset(offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    JNIid* result = (JNIid*) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    return result != NULL && result->is_static_field_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return result != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   231
intptr_t jfieldIDWorkaround::encode_klass_hash(Klass* k, intptr_t offset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  if (offset <= small_offset_mask) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   233
    Klass* field_klass = k;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   234
    Klass* super_klass = field_klass->super();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   235
    // With compressed oops the most super class with nonstatic fields would
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   236
    // be the owner of fields embedded in the header.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   237
    while (InstanceKlass::cast(super_klass)->has_nonstatic_fields() &&
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   238
           InstanceKlass::cast(super_klass)->contains_field_offset(offset)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      field_klass = super_klass;   // super contains the field also
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   240
      super_klass = field_klass->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    debug_only(No_Safepoint_Verifier nosafepoint;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    uintptr_t klass_hash = field_klass->identity_hash();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    return ((klass_hash & klass_mask) << klass_shift) | checked_mask_in_place;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
#if 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      ResourceMark rm;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   250
      warning("VerifyJNIFields: long offset %d in %s", offset, k->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   258
bool jfieldIDWorkaround::klass_hash_ok(Klass* k, jfieldID id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  uintptr_t as_uint = (uintptr_t) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  intptr_t klass_hash = (as_uint >> klass_shift) & klass_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    debug_only(No_Safepoint_Verifier nosafepoint;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    // Could use a non-blocking query for identity_hash here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    if ((k->identity_hash() & klass_mask) == klass_hash)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      return true;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   266
    k = k->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  } while (k != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   271
void jfieldIDWorkaround::verify_instance_jfieldID(Klass* k, jfieldID id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  guarantee(jfieldIDWorkaround::is_instance_jfieldID(k, id), "must be an instance field" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  uintptr_t as_uint = (uintptr_t) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  intptr_t offset = raw_instance_offset(id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  if (VerifyJNIFields) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    if (is_checked_jfieldID(id)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      guarantee(klass_hash_ok(k, id),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    "Bug in native code: jfieldID class must match object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
#if 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  ResourceMark rm;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   284
  warning("VerifyJNIFields: unverified offset %d for %s", offset, k->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   290
  guarantee(InstanceKlass::cast(k)->contains_field_offset(offset),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      "Bug in native code: jfieldID offset must address interior of object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
// Pick a reasonable higher bound for local capacity requested
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
// for EnsureLocalCapacity and PushLocalFrame.  We don't want it too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
// high because a test (or very unusual application) may try to allocate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
// that many handles and run out of swap space.  An implementation is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
// permitted to allocate more handles than the ensured capacity, so this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// value is set high enough to prevent compatibility problems.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
const int MAX_REASONABLE_LOCAL_CAPACITY = 4*K;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// Wrapper to trace JNI functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  Histogram* JNIHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  static volatile jint JNIHistogram_lock = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  class JNITraceWrapper : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    JNITraceWrapper(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      if (TraceJNICalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
        va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
        va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
        tty->print("JNI ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
        tty->vprint_cr(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
        va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  class JNIHistogramElement : public HistogramElement {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
     JNIHistogramElement(const char* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  JNIHistogramElement::JNIHistogramElement(const char* elementName) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    _name = elementName;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    uintx count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    while (Atomic::cmpxchg(1, &JNIHistogram_lock, 0) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      while (OrderAccess::load_acquire(&JNIHistogram_lock) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
        count +=1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
        if ( (WarnOnStalledSpinLock > 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
          && (count % WarnOnStalledSpinLock == 0)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
          warning("JNIHistogram_lock seems to be stalled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    if(JNIHistogram == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      JNIHistogram = new Histogram("JNI Call Counts",100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    JNIHistogram->add_element(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    Atomic::dec(&JNIHistogram_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  #define JNICountWrapper(arg)                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
     static JNIHistogramElement* e = new JNIHistogramElement(arg); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      /* There is a MT-race condition in VC++. So we need to make sure that that e has been initialized */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
     if (e != NULL) e->increment_count()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  #define JNIWrapper(arg) JNICountWrapper(arg); JNITraceWrapper(arg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  #define JNIWrapper(arg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
// Implementation of JNI entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   361
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
DT_RETURN_MARK_DECL(DefineClass, jclass);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   363
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   364
DT_RETURN_MARK_DECL(DefineClass, jclass
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   365
                    , HOTSPOT_JNI_DEFINECLASS_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   366
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
JNI_ENTRY(jclass, jni_DefineClass(JNIEnv *env, const char *name, jobject loaderRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
                                  const jbyte *buf, jsize bufLen))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  JNIWrapper("DefineClass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   372
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  DTRACE_PROBE5(hotspot_jni, DefineClass__entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    env, name, loaderRef, buf, bufLen);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   375
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   376
  HOTSPOT_JNI_DEFINECLASS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   377
    env, (char*) name, loaderRef, (char*) buf, bufLen);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   378
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  jclass cls = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  DT_RETURN_MARK(DefineClass, jclass, (const jclass&)cls);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
12939
c0a910665895 7171703: JNI DefineClass crashes client VM when first parameter is NULL
fparain
parents: 11480
diff changeset
   382
  TempNewSymbol class_name = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // Since exceptions can be thrown, class initialization can take place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // if name is NULL no check for class name in .class stream has to be made.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  if (name != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    const int str_len = (int)strlen(name);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   387
    if (str_len > Symbol::max_length()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
      // It's impossible to create this class;  the name cannot fit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
      // into the constant pool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
      THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    }
12939
c0a910665895 7171703: JNI DefineClass crashes client VM when first parameter is NULL
fparain
parents: 11480
diff changeset
   392
    class_name = SymbolTable::new_symbol(name, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  ClassFileStream st((u1*) buf, bufLen, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  Handle class_loader (THREAD, JNIHandles::resolve(loaderRef));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  if (UsePerfData && !class_loader.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    // check whether the current caller thread holds the lock or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    // If not, increment the corresponding counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    if (ObjectSynchronizer::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
        query_lock_ownership((JavaThread*)THREAD, class_loader) !=
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
        ObjectSynchronizer::owner_self) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
      ClassLoader::sync_JNIDefineClassLockFreeCounter()->inc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   407
  Klass* k = SystemDictionary::resolve_from_stream(class_name, class_loader,
3820
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 2269
diff changeset
   408
                                                     Handle(), &st, true,
0a8fbbe180db 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 2269
diff changeset
   409
                                                     CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
2269
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
   411
  if (TraceClassResolution && k != NULL) {
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
   412
    trace_class_resolution(k);
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
   413
  }
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
   414
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  cls = (jclass)JNIHandles::make_local(
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   416
    env, k->java_mirror());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  return cls;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
static bool first_time_FindClass = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   424
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
DT_RETURN_MARK_DECL(FindClass, jclass);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   426
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   427
DT_RETURN_MARK_DECL(FindClass, jclass
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   428
                    , HOTSPOT_JNI_FINDCLASS_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   429
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
JNI_ENTRY(jclass, jni_FindClass(JNIEnv *env, const char *name))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  JNIWrapper("FindClass");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   433
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  DTRACE_PROBE2(hotspot_jni, FindClass__entry, env, name);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   435
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   436
  HOTSPOT_JNI_FINDCLASS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   437
                              env, (char *)name);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   438
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  jclass result = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  DT_RETURN_MARK(FindClass, jclass, (const jclass&)result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // Remember if we are the first invocation of jni_FindClass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  bool first_time = first_time_FindClass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  first_time_FindClass = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // Sanity check the name:  it cannot be null or larger than the maximum size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // name we can fit in the constant pool.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   449
  if (name == NULL || (int)strlen(name) > Symbol::max_length()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  //%note jni_3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  Handle loader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  Handle protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // Find calling class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  instanceKlassHandle k (THREAD, thread->security_get_caller_class(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  if (k.not_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    loader = Handle(THREAD, k->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    // Special handling to make sure JNI_OnLoad and JNI_OnUnload are executed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    // in the correct class context.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    if (loader.is_null() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
        k->name() == vmSymbols::java_lang_ClassLoader_NativeLibrary()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      JavaValue result(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      JavaCalls::call_static(&result, k,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   466
                                      vmSymbols::getFromClass_name(),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   467
                                      vmSymbols::void_class_signature(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
                                      thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
        Handle ex(thread, thread->pending_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
        CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
        THROW_HANDLE_0(ex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
      oop mirror = (oop) result.get_jobject();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
      loader = Handle(THREAD,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   476
        InstanceKlass::cast(java_lang_Class::as_Klass(mirror))->class_loader());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
      protection_domain = Handle(THREAD,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   478
        InstanceKlass::cast(java_lang_Class::as_Klass(mirror))->protection_domain());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    // We call ClassLoader.getSystemClassLoader to obtain the system class loader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    loader = Handle(THREAD, SystemDictionary::java_system_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   485
  TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  result = find_class_from_class_loader(env, sym, true, loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
                                        protection_domain, true, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
2269
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
   489
  if (TraceClassResolution && result != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   490
    trace_class_resolution(java_lang_Class::as_Klass(JNIHandles::resolve_non_null(result)));
2269
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
   491
  }
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
   492
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  // If we were the first invocation of jni_FindClass, we enable compilation again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // rather than just allowing invocation counter to overflow and decay.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // Controlled by flag DelayCompilationDuringStartup.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  if (first_time && !CompileTheWorld)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    CompilationPolicy::completed_vm_startup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   502
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
DT_RETURN_MARK_DECL(FromReflectedMethod, jmethodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   504
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   505
DT_RETURN_MARK_DECL(FromReflectedMethod, jmethodID
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   506
                    , HOTSPOT_JNI_FROMREFLECTEDMETHOD_RETURN((uintptr_t)_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   507
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
JNI_ENTRY(jmethodID, jni_FromReflectedMethod(JNIEnv *env, jobject method))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  JNIWrapper("FromReflectedMethod");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   511
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  DTRACE_PROBE2(hotspot_jni, FromReflectedMethod__entry, env, method);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   513
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   514
  HOTSPOT_JNI_FROMREFLECTEDMETHOD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   515
                                        env, method);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   516
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  jmethodID ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  DT_RETURN_MARK(FromReflectedMethod, jmethodID, (const jmethodID&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  // method is a handle to a java.lang.reflect.Method object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  oop reflected  = JNIHandles::resolve_non_null(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  oop mirror     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  int slot       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4561
diff changeset
   525
  if (reflected->klass() == SystemDictionary::reflect_Constructor_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    mirror = java_lang_reflect_Constructor::clazz(reflected);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    slot   = java_lang_reflect_Constructor::slot(reflected);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  } else {
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4561
diff changeset
   529
    assert(reflected->klass() == SystemDictionary::reflect_Method_klass(), "wrong type");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    mirror = java_lang_reflect_Method::clazz(reflected);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    slot   = java_lang_reflect_Method::slot(reflected);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   533
  Klass* k     = java_lang_Class::as_Klass(mirror);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  KlassHandle k1(THREAD, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  // Make sure class is initialized before handing id's out to methods
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   537
  k1()->initialize(CHECK_NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   538
  Method* m = InstanceKlass::cast(k1())->method_with_idnum(slot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  ret = m==NULL? NULL : m->jmethod_id();  // return NULL if reflected method deleted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   543
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
DT_RETURN_MARK_DECL(FromReflectedField, jfieldID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   545
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   546
DT_RETURN_MARK_DECL(FromReflectedField, jfieldID
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   547
                    , HOTSPOT_JNI_FROMREFLECTEDFIELD_RETURN((uintptr_t)_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   548
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
JNI_ENTRY(jfieldID, jni_FromReflectedField(JNIEnv *env, jobject field))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  JNIWrapper("FromReflectedField");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   552
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  DTRACE_PROBE2(hotspot_jni, FromReflectedField__entry, env, field);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   554
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   555
  HOTSPOT_JNI_FROMREFLECTEDFIELD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   556
                                       env, field);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   557
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  jfieldID ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  DT_RETURN_MARK(FromReflectedField, jfieldID, (const jfieldID&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // field is a handle to a java.lang.reflect.Field object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  oop reflected   = JNIHandles::resolve_non_null(field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  oop mirror      = java_lang_reflect_Field::clazz(reflected);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   564
  Klass* k      = java_lang_Class::as_Klass(mirror);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  int slot        = java_lang_reflect_Field::slot(reflected);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  int modifiers   = java_lang_reflect_Field::modifiers(reflected);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  KlassHandle k1(THREAD, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // Make sure class is initialized before handing id's out to fields
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   570
  k1()->initialize(CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  // First check if this is a static field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  if (modifiers & JVM_ACC_STATIC) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   574
    intptr_t offset = InstanceKlass::cast(k1())->field_offset( slot );
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   575
    JNIid* id = InstanceKlass::cast(k1())->jni_id_for(offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    assert(id != NULL, "corrupt Field object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    debug_only(id->set_is_static_field_id();)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   578
    // A jfieldID for a static field is a JNIid specifying the field holder and the offset within the Klass*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    ret = jfieldIDWorkaround::to_static_jfieldID(id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  // The slot is the index of the field description in the field-array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // The jfieldID is the offset of the field within the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // It may also have hash bits for k, if VerifyJNIFields is turned on.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   586
  intptr_t offset = InstanceKlass::cast(k1())->field_offset( slot );
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   587
  assert(InstanceKlass::cast(k1())->contains_field_offset(offset), "stay within object");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  ret = jfieldIDWorkaround::to_instance_jfieldID(k1(), offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   592
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
DT_RETURN_MARK_DECL(ToReflectedMethod, jobject);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   594
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   595
DT_RETURN_MARK_DECL(ToReflectedMethod, jobject
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   596
                    , HOTSPOT_JNI_TOREFLECTEDMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   597
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
JNI_ENTRY(jobject, jni_ToReflectedMethod(JNIEnv *env, jclass cls, jmethodID method_id, jboolean isStatic))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  JNIWrapper("ToReflectedMethod");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   601
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  DTRACE_PROBE4(hotspot_jni, ToReflectedMethod__entry, env, cls, method_id, isStatic);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   603
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   604
  HOTSPOT_JNI_TOREFLECTEDMETHOD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   605
                                      env, cls, (uintptr_t) method_id, isStatic);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   606
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  jobject ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  DT_RETURN_MARK(ToReflectedMethod, jobject, (const jobject&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   610
  methodHandle m (THREAD, Method::resolve_jmethod_id(method_id));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  assert(m->is_static() == (isStatic != 0), "jni_ToReflectedMethod access flags doesn't match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  oop reflection_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  if (m->is_initializer()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    reflection_method = Reflection::new_constructor(m, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    reflection_method = Reflection::new_method(m, UseNewReflection, false, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  ret = JNIHandles::make_local(env, reflection_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   622
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
DT_RETURN_MARK_DECL(GetSuperclass, jclass);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   624
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   625
DT_RETURN_MARK_DECL(GetSuperclass, jclass
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   626
                    , HOTSPOT_JNI_GETSUPERCLASS_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   627
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
JNI_ENTRY(jclass, jni_GetSuperclass(JNIEnv *env, jclass sub))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  JNIWrapper("GetSuperclass");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   631
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  DTRACE_PROBE2(hotspot_jni, GetSuperclass__entry, env, sub);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   633
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   634
  HOTSPOT_JNI_GETSUPERCLASS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   635
                                  env, sub);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   636
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  jclass obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  DT_RETURN_MARK(GetSuperclass, jclass, (const jclass&)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  oop mirror = JNIHandles::resolve_non_null(sub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  // primitive classes return NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  if (java_lang_Class::is_primitive(mirror)) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  // Rules of Class.getSuperClass as implemented by KLass::java_super:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  // arrays return Object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  // interfaces return NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // proper classes return Klass::super()
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   648
  Klass* k = java_lang_Class::as_Klass(mirror);
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   649
  if (k->is_interface()) return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  // return mirror for superclass
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   652
  Klass* super = k->java_super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  // super2 is the value computed by the compiler's getSuperClass intrinsic:
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   654
  debug_only(Klass* super2 = ( k->oop_is_array()
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4561
diff changeset
   655
                                 ? SystemDictionary::Object_klass()
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   656
                                 : k->super() ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  assert(super == super2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
         "java_super computation depends on interface, array, other super");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   659
  obj = (super == NULL) ? NULL : (jclass) JNIHandles::make_local(super->java_mirror());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
JNI_QUICK_ENTRY(jboolean, jni_IsAssignableFrom(JNIEnv *env, jclass sub, jclass super))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  JNIWrapper("IsSubclassOf");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   665
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  DTRACE_PROBE3(hotspot_jni, IsAssignableFrom__entry, env, sub, super);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   667
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   668
  HOTSPOT_JNI_ISASSIGNABLEFROM_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   669
                                     env, sub, super);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   670
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  oop sub_mirror   = JNIHandles::resolve_non_null(sub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  oop super_mirror = JNIHandles::resolve_non_null(super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  if (java_lang_Class::is_primitive(sub_mirror) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
      java_lang_Class::is_primitive(super_mirror)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    jboolean ret = (sub_mirror == super_mirror);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   676
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    DTRACE_PROBE1(hotspot_jni, IsAssignableFrom__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   678
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   679
    HOTSPOT_JNI_ISASSIGNABLEFROM_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   680
                                        ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   681
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   684
  Klass* sub_klass   = java_lang_Class::as_Klass(sub_mirror);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   685
  Klass* super_klass = java_lang_Class::as_Klass(super_mirror);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  assert(sub_klass != NULL && super_klass != NULL, "invalid arguments to jni_IsAssignableFrom");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   687
  jboolean ret = sub_klass->is_subtype_of(super_klass) ?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
                   JNI_TRUE : JNI_FALSE;
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   689
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  DTRACE_PROBE1(hotspot_jni, IsAssignableFrom__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   691
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   692
  HOTSPOT_JNI_ISASSIGNABLEFROM_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   693
                                      ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   694
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   698
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
DT_RETURN_MARK_DECL(Throw, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   700
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   701
DT_RETURN_MARK_DECL(Throw, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   702
                    , HOTSPOT_JNI_THROW_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   703
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
JNI_ENTRY(jint, jni_Throw(JNIEnv *env, jthrowable obj))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  JNIWrapper("Throw");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   707
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  DTRACE_PROBE2(hotspot_jni, Throw__entry, env, obj);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   709
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   710
  HOTSPOT_JNI_THROW_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   711
 env, obj);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   712
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  jint ret = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  DT_RETURN_MARK(Throw, jint, (const jint&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  THROW_OOP_(JNIHandles::resolve(obj), JNI_OK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   720
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
DT_RETURN_MARK_DECL(ThrowNew, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   722
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   723
DT_RETURN_MARK_DECL(ThrowNew, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   724
                    , HOTSPOT_JNI_THROWNEW_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   725
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
JNI_ENTRY(jint, jni_ThrowNew(JNIEnv *env, jclass clazz, const char *message))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  JNIWrapper("ThrowNew");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   729
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  DTRACE_PROBE3(hotspot_jni, ThrowNew__entry, env, clazz, message);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   731
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   732
  HOTSPOT_JNI_THROWNEW_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   733
                             env, clazz, (char *) message);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   734
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  jint ret = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  DT_RETURN_MARK(ThrowNew, jint, (const jint&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   738
  InstanceKlass* k = InstanceKlass::cast(java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   739
  Symbol*  name = k->name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  Handle class_loader (THREAD,  k->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  Handle protection_domain (THREAD, k->protection_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  THROW_MSG_LOADER_(name, (char *)message, class_loader, protection_domain, JNI_OK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
// JNI functions only transform a pending async exception to a synchronous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
// exception in ExceptionOccurred and ExceptionCheck calls, since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
// delivering an async exception in other places won't change the native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
// code's control flow and would be harmful when native code further calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
// JNI functions with a pending exception. Async exception is also checked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
// during the call, so ExceptionOccurred/ExceptionCheck won't return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
// false but deliver the async exception at the very end during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
// state transition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
static void jni_check_async_exceptions(JavaThread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  assert(thread == Thread::current(), "must be itself");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  thread->check_and_handle_async_exceptions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
JNI_ENTRY_NO_PRESERVE(jthrowable, jni_ExceptionOccurred(JNIEnv *env))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  JNIWrapper("ExceptionOccurred");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   763
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  DTRACE_PROBE1(hotspot_jni, ExceptionOccurred__entry, env);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   765
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   766
  HOTSPOT_JNI_EXCEPTIONOCCURRED_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   767
                                      env);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   768
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  jni_check_async_exceptions(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  oop exception = thread->pending_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  jthrowable ret = (jthrowable) JNIHandles::make_local(env, exception);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   772
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  DTRACE_PROBE1(hotspot_jni, ExceptionOccurred__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   774
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   775
  HOTSPOT_JNI_EXCEPTIONOCCURRED_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   776
                                       ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   777
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
JNI_ENTRY_NO_PRESERVE(void, jni_ExceptionDescribe(JNIEnv *env))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  JNIWrapper("ExceptionDescribe");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   784
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  DTRACE_PROBE1(hotspot_jni, ExceptionDescribe__entry, env);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   786
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   787
  HOTSPOT_JNI_EXCEPTIONDESCRIBE_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   788
                                      env);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   789
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  if (thread->has_pending_exception()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    Handle ex(thread, thread->pending_exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    thread->clear_pending_exception();
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4561
diff changeset
   793
    if (ex->is_a(SystemDictionary::ThreadDeath_klass())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
      // Don't print anything if we are being killed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
      jio_fprintf(defaultStream::error_stream(), "Exception ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
      if (thread != NULL && thread->threadObj() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
        ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
        jio_fprintf(defaultStream::error_stream(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
        "in thread \"%s\" ", thread->get_thread_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      }
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4561
diff changeset
   802
      if (ex->is_a(SystemDictionary::Throwable_klass())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
        JavaValue result(T_VOID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
        JavaCalls::call_virtual(&result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
                                ex,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
                                KlassHandle(THREAD,
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4561
diff changeset
   807
                                  SystemDictionary::Throwable_klass()),
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   808
                                vmSymbols::printStackTrace_name(),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
   809
                                vmSymbols::void_method_signature(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
                                THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
        // If an exception is thrown in the call it gets thrown away. Not much
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
        // we can do with it. The native code that calls this, does not check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
        // for the exception - hence, it might still be in the thread when DestroyVM gets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
        // called, potentially causing a few asserts to trigger - since no pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
        // is expected.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
        CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
        jio_fprintf(defaultStream::error_stream(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
        ". Uncaught exception of type %s.",
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   821
        ex->klass()->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   825
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  DTRACE_PROBE(hotspot_jni, ExceptionDescribe__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   827
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   828
  HOTSPOT_JNI_EXCEPTIONDESCRIBE_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   829
                                       );
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   830
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
JNI_QUICK_ENTRY(void, jni_ExceptionClear(JNIEnv *env))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  JNIWrapper("ExceptionClear");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   836
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  DTRACE_PROBE1(hotspot_jni, ExceptionClear__entry, env);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   838
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   839
  HOTSPOT_JNI_EXCEPTIONCLEAR_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   840
                                   env);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   841
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  // The jni code might be using this API to clear java thrown exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  // So just mark jvmti thread exception state as exception caught.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  JvmtiThreadState *state = JavaThread::current()->jvmti_thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  if (state != NULL && state->is_exception_detected()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    state->set_exception_caught();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  thread->clear_pending_exception();
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   850
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  DTRACE_PROBE(hotspot_jni, ExceptionClear__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   852
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   853
  HOTSPOT_JNI_EXCEPTIONCLEAR_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   854
                                    );
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   855
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
JNI_ENTRY(void, jni_FatalError(JNIEnv *env, const char *msg))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  JNIWrapper("FatalError");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   861
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  DTRACE_PROBE2(hotspot_jni, FatalError__entry, env, msg);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   863
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   864
  HOTSPOT_JNI_FATALERROR_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   865
                               env, (char *) msg);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   866
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  tty->print_cr("FATAL ERROR in native method: %s", msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  thread->print_stack();
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 360
diff changeset
   869
  os::abort(); // Dump core and abort
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
JNI_ENTRY(jint, jni_PushLocalFrame(JNIEnv *env, jint capacity))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  JNIWrapper("PushLocalFrame");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   875
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  DTRACE_PROBE2(hotspot_jni, PushLocalFrame__entry, env, capacity);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   877
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   878
  HOTSPOT_JNI_PUSHLOCALFRAME_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   879
                                   env, capacity);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   880
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  //%note jni_11
18486
77d72199179d 7007040: Check of capacity paramenters in JNI_PushLocalFrame is wrong
hseigel
parents: 18025
diff changeset
   882
  if (capacity < 0 || capacity > MAX_REASONABLE_LOCAL_CAPACITY) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   883
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    DTRACE_PROBE1(hotspot_jni, PushLocalFrame__return, JNI_ERR);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   885
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   886
    HOTSPOT_JNI_PUSHLOCALFRAME_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   887
                                      (uint32_t)JNI_ERR);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   888
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  JNIHandleBlock* old_handles = thread->active_handles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  JNIHandleBlock* new_handles = JNIHandleBlock::allocate_block(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  assert(new_handles != NULL, "should not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  new_handles->set_pop_frame_link(old_handles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  thread->set_active_handles(new_handles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  jint ret = JNI_OK;
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   897
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  DTRACE_PROBE1(hotspot_jni, PushLocalFrame__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   899
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   900
  HOTSPOT_JNI_PUSHLOCALFRAME_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   901
                                    ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   902
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
JNI_ENTRY(jobject, jni_PopLocalFrame(JNIEnv *env, jobject result))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  JNIWrapper("PopLocalFrame");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   909
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  DTRACE_PROBE2(hotspot_jni, PopLocalFrame__entry, env, result);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   911
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   912
  HOTSPOT_JNI_POPLOCALFRAME_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   913
                                  env, result);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   914
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  //%note jni_11
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  Handle result_handle(thread, JNIHandles::resolve(result));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  JNIHandleBlock* old_handles = thread->active_handles();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  JNIHandleBlock* new_handles = old_handles->pop_frame_link();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  if (new_handles != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    // As a sanity check we only release the handle blocks if the pop_frame_link is not NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
    // This way code will still work if PopLocalFrame is called without a corresponding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    // PushLocalFrame call. Note that we set the pop_frame_link to NULL explicitly, otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    // the release_block call will release the blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    thread->set_active_handles(new_handles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    old_handles->set_pop_frame_link(NULL);              // clear link we won't release new_handles below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    JNIHandleBlock::release_block(old_handles, thread); // may block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    result = JNIHandles::make_local(thread, result_handle());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   929
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  DTRACE_PROBE1(hotspot_jni, PopLocalFrame__return, result);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   931
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   932
  HOTSPOT_JNI_POPLOCALFRAME_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   933
                                   result);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   934
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
JNI_ENTRY(jobject, jni_NewGlobalRef(JNIEnv *env, jobject ref))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  JNIWrapper("NewGlobalRef");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   941
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  DTRACE_PROBE2(hotspot_jni, NewGlobalRef__entry, env, ref);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   943
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   944
  HOTSPOT_JNI_NEWGLOBALREF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   945
                                 env, ref);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   946
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  Handle ref_handle(thread, JNIHandles::resolve(ref));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  jobject ret = JNIHandles::make_global(ref_handle);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   949
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  DTRACE_PROBE1(hotspot_jni, NewGlobalRef__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   951
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   952
  HOTSPOT_JNI_NEWGLOBALREF_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   953
                                  ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   954
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
// Must be JNI_ENTRY (with HandleMark)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
JNI_ENTRY_NO_PRESERVE(void, jni_DeleteGlobalRef(JNIEnv *env, jobject ref))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  JNIWrapper("DeleteGlobalRef");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   961
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  DTRACE_PROBE2(hotspot_jni, DeleteGlobalRef__entry, env, ref);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   963
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   964
  HOTSPOT_JNI_DELETEGLOBALREF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   965
                                    env, ref);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   966
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  JNIHandles::destroy_global(ref);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   968
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  DTRACE_PROBE(hotspot_jni, DeleteGlobalRef__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   970
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   971
  HOTSPOT_JNI_DELETEGLOBALREF_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   972
                                     );
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   973
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
JNI_QUICK_ENTRY(void, jni_DeleteLocalRef(JNIEnv *env, jobject obj))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  JNIWrapper("DeleteLocalRef");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   978
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  DTRACE_PROBE2(hotspot_jni, DeleteLocalRef__entry, env, obj);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   980
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   981
  HOTSPOT_JNI_DELETELOCALREF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   982
                                   env, obj);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   983
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  JNIHandles::destroy_local(obj);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   985
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  DTRACE_PROBE(hotspot_jni, DeleteLocalRef__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   987
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   988
  HOTSPOT_JNI_DELETELOCALREF_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   989
                                    );
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   990
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
JNI_QUICK_ENTRY(jboolean, jni_IsSameObject(JNIEnv *env, jobject r1, jobject r2))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  JNIWrapper("IsSameObject");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   995
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  DTRACE_PROBE3(hotspot_jni, IsSameObject__entry, env, r1, r2);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   997
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   998
  HOTSPOT_JNI_ISSAMEOBJECT_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   999
                                 env, r1, r2);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1000
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  oop a = JNIHandles::resolve(r1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  oop b = JNIHandles::resolve(r2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  jboolean ret = (a == b) ? JNI_TRUE : JNI_FALSE;
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1004
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  DTRACE_PROBE1(hotspot_jni, IsSameObject__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1006
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1007
  HOTSPOT_JNI_ISSAMEOBJECT_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1008
                                  ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1009
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
JNI_ENTRY(jobject, jni_NewLocalRef(JNIEnv *env, jobject ref))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  JNIWrapper("NewLocalRef");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1016
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  DTRACE_PROBE2(hotspot_jni, NewLocalRef__entry, env, ref);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1018
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1019
  HOTSPOT_JNI_NEWLOCALREF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1020
                                env, ref);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1021
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  jobject ret = JNIHandles::make_local(env, JNIHandles::resolve(ref));
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1023
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  DTRACE_PROBE1(hotspot_jni, NewLocalRef__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1025
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1026
  HOTSPOT_JNI_NEWLOCALREF_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1027
                                 ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1028
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
JNI_LEAF(jint, jni_EnsureLocalCapacity(JNIEnv *env, jint capacity))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  JNIWrapper("EnsureLocalCapacity");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1034
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  DTRACE_PROBE2(hotspot_jni, EnsureLocalCapacity__entry, env, capacity);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1036
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1037
  HOTSPOT_JNI_ENSURELOCALCAPACITY_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1038
                                        env, capacity);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1039
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  jint ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  if (capacity >= 0 && capacity <= MAX_REASONABLE_LOCAL_CAPACITY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    ret = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
    ret = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1046
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  DTRACE_PROBE1(hotspot_jni, EnsureLocalCapacity__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1048
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1049
  HOTSPOT_JNI_ENSURELOCALCAPACITY_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1050
                                         ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1051
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
// Return the Handle Type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
JNI_LEAF(jobjectRefType, jni_GetObjectRefType(JNIEnv *env, jobject obj))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  JNIWrapper("GetObjectRefType");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1058
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  DTRACE_PROBE2(hotspot_jni, GetObjectRefType__entry, env, obj);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1060
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1061
  HOTSPOT_JNI_GETOBJECTREFTYPE_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1062
                                     env, obj);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1063
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  jobjectRefType ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  if (JNIHandles::is_local_handle(thread, obj) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
      JNIHandles::is_frame_handle(thread, obj))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    ret = JNILocalRefType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  else if (JNIHandles::is_global_handle(obj))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    ret = JNIGlobalRefType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  else if (JNIHandles::is_weak_global_handle(obj))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
    ret = JNIWeakGlobalRefType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
    ret = JNIInvalidRefType;
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1074
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  DTRACE_PROBE1(hotspot_jni, GetObjectRefType__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1076
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1077
  HOTSPOT_JNI_GETOBJECTREFTYPE_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1078
                                      (void *) ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1079
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
class JNI_ArgumentPusher : public SignatureIterator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  JavaCallArguments*  _arguments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  virtual void get_bool   () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  virtual void get_char   () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  virtual void get_short  () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  virtual void get_byte   () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  virtual void get_int    () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  virtual void get_long   () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  virtual void get_float  () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  virtual void get_double () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  virtual void get_object () = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1098
  JNI_ArgumentPusher(Symbol* signature) : SignatureIterator(signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
    this->_return_type = T_ILLEGAL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    _arguments = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  virtual void iterate( uint64_t fingerprint ) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  void set_java_argument_object(JavaCallArguments *arguments) { _arguments = arguments; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  inline void do_bool()                     { if (!is_return_type()) get_bool();   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  inline void do_char()                     { if (!is_return_type()) get_char();   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  inline void do_short()                    { if (!is_return_type()) get_short();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  inline void do_byte()                     { if (!is_return_type()) get_byte();   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  inline void do_int()                      { if (!is_return_type()) get_int();    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  inline void do_long()                     { if (!is_return_type()) get_long();   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  inline void do_float()                    { if (!is_return_type()) get_float();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  inline void do_double()                   { if (!is_return_type()) get_double(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  inline void do_object(int begin, int end) { if (!is_return_type()) get_object(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  inline void do_array(int begin, int end)  { if (!is_return_type()) get_object(); } // do_array uses get_object -- there is no get_array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  inline void do_void()                     { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  JavaCallArguments* arguments()     { return _arguments; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  void push_receiver(Handle h)       { _arguments->push_oop(h); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
class JNI_ArgumentPusherVaArg : public JNI_ArgumentPusher {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  va_list _ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  inline void get_bool()   { _arguments->push_int(va_arg(_ap, jint)); } // bool is coerced to int when using va_arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  inline void get_char()   { _arguments->push_int(va_arg(_ap, jint)); } // char is coerced to int when using va_arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  inline void get_short()  { _arguments->push_int(va_arg(_ap, jint)); } // short is coerced to int when using va_arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  inline void get_byte()   { _arguments->push_int(va_arg(_ap, jint)); } // byte is coerced to int when using va_arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  inline void get_int()    { _arguments->push_int(va_arg(_ap, jint)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  // each of these paths is exercized by the various jck Call[Static,Nonvirtual,][Void,Int,..]Method[A,V,] tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  inline void get_long()   { _arguments->push_long(va_arg(_ap, jlong)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  inline void get_float()  { _arguments->push_float((jfloat)va_arg(_ap, jdouble)); } // float is coerced to double w/ va_arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  inline void get_double() { _arguments->push_double(va_arg(_ap, jdouble)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  inline void get_object() { jobject l = va_arg(_ap, jobject);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
                             _arguments->push_oop(Handle((oop *)l, false)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  inline void set_ap(va_list rap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
#ifdef va_copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
    va_copy(_ap, rap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
#elif defined (__va_copy)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
    __va_copy(_ap, rap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    _ap = rap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
 public:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1154
  JNI_ArgumentPusherVaArg(Symbol* signature, va_list rap)
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1155
       : JNI_ArgumentPusher(signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
    set_ap(rap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1158
  JNI_ArgumentPusherVaArg(jmethodID method_id, va_list rap)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1159
      : JNI_ArgumentPusher(Method::resolve_jmethod_id(method_id)->signature()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
    set_ap(rap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  // Optimized path if we have the bitvector form of signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  void iterate( uint64_t fingerprint ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    if ( fingerprint == UCONST64(-1) ) SignatureIterator::iterate();// Must be too many arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
      _return_type = (BasicType)((fingerprint >> static_feature_size) &
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
                                  result_feature_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
      assert(fingerprint, "Fingerprint should not be 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
      fingerprint = fingerprint >> (static_feature_size + result_feature_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
      while ( 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
        switch ( fingerprint & parameter_feature_mask ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
          case bool_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
          case char_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
          case short_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
          case byte_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
          case int_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
            get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
          case obj_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
            get_object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
          case long_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
            get_long();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
          case float_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
            get_float();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
          case double_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
            get_double();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
          case done_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
          default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
            ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
        fingerprint >>= parameter_feature_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
class JNI_ArgumentPusherArray : public JNI_ArgumentPusher {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  const jvalue *_ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
  inline void get_bool()   { _arguments->push_int((jint)(_ap++)->z); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
  inline void get_char()   { _arguments->push_int((jint)(_ap++)->c); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  inline void get_short()  { _arguments->push_int((jint)(_ap++)->s); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
  inline void get_byte()   { _arguments->push_int((jint)(_ap++)->b); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
  inline void get_int()    { _arguments->push_int((jint)(_ap++)->i); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
  inline void get_long()   { _arguments->push_long((_ap++)->j);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
  inline void get_float()  { _arguments->push_float((_ap++)->f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
  inline void get_double() { _arguments->push_double((_ap++)->d);}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  inline void get_object() { _arguments->push_oop(Handle((oop *)(_ap++)->l, false)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  inline void set_ap(const jvalue *rap) { _ap = rap; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
 public:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1225
  JNI_ArgumentPusherArray(Symbol* signature, const jvalue *rap)
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1226
       : JNI_ArgumentPusher(signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    set_ap(rap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1229
  JNI_ArgumentPusherArray(jmethodID method_id, const jvalue *rap)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1230
      : JNI_ArgumentPusher(Method::resolve_jmethod_id(method_id)->signature()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
    set_ap(rap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
  // Optimized path if we have the bitvector form of signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  void iterate( uint64_t fingerprint ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
    if ( fingerprint == UCONST64(-1) ) SignatureIterator::iterate(); // Must be too many arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
      _return_type = (BasicType)((fingerprint >> static_feature_size) &
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
                                  result_feature_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
      assert(fingerprint, "Fingerprint should not be 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
      fingerprint = fingerprint >> (static_feature_size + result_feature_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
      while ( 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
        switch ( fingerprint & parameter_feature_mask ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
          case bool_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
            get_bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
          case char_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
            get_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
          case short_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
            get_short();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
          case byte_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
            get_byte();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
          case int_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
            get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
          case obj_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
            get_object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
          case long_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
            get_long();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
          case float_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
            get_float();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
          case double_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
            get_double();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
          case done_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
          default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
            ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
        fingerprint >>= parameter_feature_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
enum JNICallType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  JNI_STATIC,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
  JNI_VIRTUAL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  JNI_NONVIRTUAL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
static void jni_invoke_static(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1294
  methodHandle method(THREAD, Method::resolve_jmethod_id(method_id));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  // Create object to hold arguments for the JavaCall, and associate it with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  // the jni parser
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  int number_of_parameters = method->size_of_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
  JavaCallArguments java_args(number_of_parameters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
  args->set_java_argument_object(&java_args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
  assert(method->is_static(), "method should be static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  // Fill out JavaCallArguments object
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1306
  args->iterate( Fingerprinter(method).fingerprint() );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  // Initialize result type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
  result->set_type(args->get_ret_type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  // Invoke the method. Result is returned as oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
  JavaCalls::call(result, method, &java_args, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  // Convert result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
  if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
static void jni_invoke_nonstatic(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  oop recv = JNIHandles::resolve(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  if (recv == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
    THROW(vmSymbols::java_lang_NullPointerException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
  Handle h_recv(THREAD, recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
  int number_of_parameters;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1328
  Method* selected_method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1330
    Method* m = Method::resolve_jmethod_id(method_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
    number_of_parameters = m->size_of_parameters();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1332
    Klass* holder = m->method_holder();
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1333
    if (!(holder)->is_interface()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
      // non-interface call -- for that little speed boost, don't handlize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
      debug_only(No_Safepoint_Verifier nosafepoint;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
      if (call_type == JNI_VIRTUAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
        // jni_GetMethodID makes sure class is linked and initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
        // so m should have a valid vtable index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
        int vtbl_index = m->vtable_index();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1340
        if (vtbl_index != Method::nonvirtual_vtable_index) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1341
          Klass* k = h_recv->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
          // k might be an arrayKlassOop but all vtables start at
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
          // the same place. The cast is to avoid virtual call and assertion.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1344
          InstanceKlass *ik = (InstanceKlass*)k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
          selected_method = ik->method_at_vtable(vtbl_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
          // final method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
          selected_method = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
        // JNI_NONVIRTUAL call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
        selected_method = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
      // interface call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
      KlassHandle h_holder(THREAD, holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
      int itbl_index = m->cached_itable_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
      if (itbl_index == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
        itbl_index = klassItable::compute_itable_index(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
        m->set_cached_itable_index(itbl_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
        // the above may have grabbed a lock, 'm' and anything non-handlized can't be used again
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
      }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1364
      Klass* k = h_recv->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1365
      selected_method = InstanceKlass::cast(k)->method_at_itable(h_holder(), itbl_index, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  methodHandle method(THREAD, selected_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  // Create object to hold arguments for the JavaCall, and associate it with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  // the jni parser
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  JavaCallArguments java_args(number_of_parameters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  args->set_java_argument_object(&java_args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  // handle arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
  assert(!method->is_static(), "method should not be static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  args->push_receiver(h_recv); // Push jobject handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  // Fill out JavaCallArguments object
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1382
  args->iterate( Fingerprinter(method).fingerprint() );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  // Initialize result type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  result->set_type(args->get_ret_type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  // Invoke the method. Result is returned as oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  JavaCalls::call(result, method, &java_args, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  // Convert result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
    result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
static instanceOop alloc_object(jclass clazz, TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1397
  KlassHandle k(THREAD, java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1398
  k()->check_valid_for_instantiation(false, CHECK_NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1399
  InstanceKlass::cast(k())->initialize(CHECK_NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1400
  instanceOop ih = InstanceKlass::cast(k())->allocate_instance(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  return ih;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1404
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
DT_RETURN_MARK_DECL(AllocObject, jobject);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1406
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1407
DT_RETURN_MARK_DECL(AllocObject, jobject
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1408
                    , HOTSPOT_JNI_ALLOCOBJECT_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1409
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
JNI_ENTRY(jobject, jni_AllocObject(JNIEnv *env, jclass clazz))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
  JNIWrapper("AllocObject");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1414
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  DTRACE_PROBE2(hotspot_jni, AllocObject__entry, env, clazz);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1416
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1417
  HOTSPOT_JNI_ALLOCOBJECT_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1418
                                env, clazz);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1419
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  jobject ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  DT_RETURN_MARK(AllocObject, jobject, (const jobject&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  instanceOop i = alloc_object(clazz, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  ret = JNIHandles::make_local(env, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1428
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
DT_RETURN_MARK_DECL(NewObjectA, jobject);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1430
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1431
DT_RETURN_MARK_DECL(NewObjectA, jobject
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1432
                    , HOTSPOT_JNI_NEWOBJECTA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1433
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
JNI_ENTRY(jobject, jni_NewObjectA(JNIEnv *env, jclass clazz, jmethodID methodID, const jvalue *args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  JNIWrapper("NewObjectA");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1437
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
  DTRACE_PROBE3(hotspot_jni, NewObjectA__entry, env, clazz, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1439
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1440
  HOTSPOT_JNI_NEWOBJECTA_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1441
                               env, clazz, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1442
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  jobject obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
  DT_RETURN_MARK(NewObjectA, jobject, (const jobject)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
  instanceOop i = alloc_object(clazz, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  obj = JNIHandles::make_local(env, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1449
  JNI_ArgumentPusherArray ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1454
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
DT_RETURN_MARK_DECL(NewObjectV, jobject);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1456
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1457
DT_RETURN_MARK_DECL(NewObjectV, jobject
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1458
                    , HOTSPOT_JNI_NEWOBJECTV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1459
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
JNI_ENTRY(jobject, jni_NewObjectV(JNIEnv *env, jclass clazz, jmethodID methodID, va_list args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  JNIWrapper("NewObjectV");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1463
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  DTRACE_PROBE3(hotspot_jni, NewObjectV__entry, env, clazz, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1465
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1466
  HOTSPOT_JNI_NEWOBJECTV_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1467
                               env, clazz, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1468
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
  jobject obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  DT_RETURN_MARK(NewObjectV, jobject, (const jobject&)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  instanceOop i = alloc_object(clazz, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  obj = JNIHandles::make_local(env, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1475
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1480
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
DT_RETURN_MARK_DECL(NewObject, jobject);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1482
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1483
DT_RETURN_MARK_DECL(NewObject, jobject
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1484
                    , HOTSPOT_JNI_NEWOBJECT_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1485
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
JNI_ENTRY(jobject, jni_NewObject(JNIEnv *env, jclass clazz, jmethodID methodID, ...))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  JNIWrapper("NewObject");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1489
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
  DTRACE_PROBE3(hotspot_jni, NewObject__entry, env, clazz, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1491
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1492
  HOTSPOT_JNI_NEWOBJECT_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1493
                              env, clazz, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1494
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
  jobject obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
  DT_RETURN_MARK(NewObject, jobject, (const jobject&)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
  instanceOop i = alloc_object(clazz, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
  obj = JNIHandles::make_local(env, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
  va_list args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
  va_start(args, methodID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1503
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
  va_end(args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
JNI_ENTRY(jclass, jni_GetObjectClass(JNIEnv *env, jobject obj))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
  JNIWrapper("GetObjectClass");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1512
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
  DTRACE_PROBE2(hotspot_jni, GetObjectClass__entry, env, obj);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1514
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1515
  HOTSPOT_JNI_GETOBJECTCLASS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1516
                                   env, obj);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1517
#endif /* USDT2 */
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1518
  Klass* k = JNIHandles::resolve_non_null(obj)->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
  jclass ret =
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1520
    (jclass) JNIHandles::make_local(env, k->java_mirror());
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1521
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
  DTRACE_PROBE1(hotspot_jni, GetObjectClass__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1523
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1524
  HOTSPOT_JNI_GETOBJECTCLASS_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1525
                                    ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1526
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
JNI_QUICK_ENTRY(jboolean, jni_IsInstanceOf(JNIEnv *env, jobject obj, jclass clazz))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
  JNIWrapper("IsInstanceOf");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1532
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
  DTRACE_PROBE3(hotspot_jni, IsInstanceOf__entry, env, obj, clazz);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1534
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1535
  HOTSPOT_JNI_ISINSTANCEOF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1536
                                 env, obj, clazz);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1537
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
  jboolean ret = JNI_TRUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
  if (obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
    ret = JNI_FALSE;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1541
    Klass* k = java_lang_Class::as_Klass(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
      JNIHandles::resolve_non_null(clazz));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
    if (k != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
      ret = JNIHandles::resolve_non_null(obj)->is_a(k) ? JNI_TRUE : JNI_FALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1547
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
  DTRACE_PROBE1(hotspot_jni, IsInstanceOf__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1549
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1550
  HOTSPOT_JNI_ISINSTANCEOF_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1551
                                  ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1552
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
static jmethodID get_method_id(JNIEnv *env, jclass clazz, const char *name_str,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
                               const char *sig, bool is_static, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
  // %%%% This code should probably just call into a method in the LinkResolver
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
  // The class should have been loaded (we have an instance of the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  // passed in) so the method and signature should already be in the symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
  // table.  If they're not there, the method doesn't exist.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1564
  const char *name_to_probe = (name_str == NULL)
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1565
                        ? vmSymbols::object_initializer_name()->as_C_string()
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1566
                        : name_str;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1567
  TempNewSymbol name = SymbolTable::probe(name_to_probe, (int)strlen(name_to_probe));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1568
  TempNewSymbol signature = SymbolTable::probe(sig, (int)strlen(sig));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1569
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1570
  if (name == NULL || signature == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
    THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
  // Throw a NoSuchMethodError exception if we have an instance of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
  // primitive java.lang.Class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
  if (java_lang_Class::is_primitive(JNIHandles::resolve_non_null(clazz))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
    THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  KlassHandle klass(THREAD,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1581
               java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
  // Make sure class is linked and initialized before handing id's out to
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1584
  // Method*s.
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  1585
  klass()->initialize(CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1587
  Method* m;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1588
  if (name == vmSymbols::object_initializer_name() ||
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1589
      name == vmSymbols::class_initializer_name()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
    // Never search superclasses for constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
    if (klass->oop_is_instance()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1592
      m = InstanceKlass::cast(klass())->find_method(name, signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
      m = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
  } else {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1597
    m = klass->lookup_method(name, signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
    // Look up interfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
    if (m == NULL && klass->oop_is_instance()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1600
      m = InstanceKlass::cast(klass())->lookup_method_in_all_interfaces(name,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1601
                                                                   signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
  if (m == NULL || (m->is_static() != is_static)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
    THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
  return m->jmethod_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
JNI_ENTRY(jmethodID, jni_GetMethodID(JNIEnv *env, jclass clazz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
          const char *name, const char *sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
  JNIWrapper("GetMethodID");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1614
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
  DTRACE_PROBE4(hotspot_jni, GetMethodID__entry, env, clazz, name, sig);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1616
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1617
  HOTSPOT_JNI_GETMETHODID_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1618
                                env, clazz, (char *) name, (char *) sig);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1619
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
  jmethodID ret = get_method_id(env, clazz, name, sig, false, thread);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1621
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
  DTRACE_PROBE1(hotspot_jni, GetMethodID__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1623
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1624
  HOTSPOT_JNI_GETMETHODID_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1625
                                 (uintptr_t) ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1626
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
JNI_ENTRY(jmethodID, jni_GetStaticMethodID(JNIEnv *env, jclass clazz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
          const char *name, const char *sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
  JNIWrapper("GetStaticMethodID");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1634
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
  DTRACE_PROBE4(hotspot_jni, GetStaticMethodID__entry, env, clazz, name, sig);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1636
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1637
  HOTSPOT_JNI_GETSTATICMETHODID_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1638
                                      env, (char *) clazz, (char *) name, (char *)sig);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1639
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
  jmethodID ret = get_method_id(env, clazz, name, sig, true, thread);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1641
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
  DTRACE_PROBE1(hotspot_jni, GetStaticMethodID__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1643
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1644
  HOTSPOT_JNI_GETSTATICMETHODID_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1645
                                       (uintptr_t) ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1646
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
// Calling Methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1656
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
#define DEFINE_CALLMETHOD(ResultType, Result, Tag) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
  DT_RETURN_MARK_DECL_FOR(Result, Call##Result##Method, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
  DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodV, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodA, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
          jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
  JNIWrapper("Call" XSTR(Result) "Method"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
\
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1667
  DTRACE_PROBE3(hotspot_jni, Call##Result##Method__entry, env, obj, methodID); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
  ResultType ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
  DT_RETURN_MARK_FOR(Result, Call##Result##Method, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
  va_list args; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
  va_start(args, methodID); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1675
  JNI_ArgumentPusherVaArg ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
  va_end(args); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
JNI_END \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
          jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
  JNIWrapper("Call" XSTR(Result) "MethodV"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
\
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1687
  DTRACE_PROBE3(hotspot_jni, Call##Result##MethodV__entry, env, obj, methodID); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
  ResultType ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
  DT_RETURN_MARK_FOR(Result, Call##Result##MethodV, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1693
  JNI_ArgumentPusherVaArg ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
JNI_END \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
          jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
  JNIWrapper("Call" XSTR(Result) "MethodA"); \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1703
  DTRACE_PROBE3(hotspot_jni, Call##Result##MethodA__entry, env, obj, methodID); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
  ResultType ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
  DT_RETURN_MARK_FOR(Result, Call##Result##MethodA, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1709
  JNI_ArgumentPusherArray ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
// the runtime type of subword integral basic types is integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
DEFINE_CALLMETHOD(jboolean, Boolean, T_BOOLEAN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
DEFINE_CALLMETHOD(jbyte,    Byte,    T_BYTE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
DEFINE_CALLMETHOD(jchar,    Char,    T_CHAR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
DEFINE_CALLMETHOD(jshort,   Short,   T_SHORT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
DEFINE_CALLMETHOD(jobject,  Object,  T_OBJECT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
DEFINE_CALLMETHOD(jint,     Int,     T_INT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
DEFINE_CALLMETHOD(jlong,    Long,    T_LONG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
DEFINE_CALLMETHOD(jfloat,   Float,   T_FLOAT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
DEFINE_CALLMETHOD(jdouble,  Double,  T_DOUBLE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
DT_VOID_RETURN_MARK_DECL(CallVoidMethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
DT_VOID_RETURN_MARK_DECL(CallVoidMethodV);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
DT_VOID_RETURN_MARK_DECL(CallVoidMethodA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1731
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1732
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1733
#define DEFINE_CALLMETHOD(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1734
                          , EntryProbe, ReturnProbe)    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1735
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1736
  DT_RETURN_MARK_DECL_FOR(Result, Call##Result##Method, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1737
                          , ReturnProbe);                          \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1738
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1739
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1740
          jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1741
  JNIWrapper("Call" XSTR(Result) "Method"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1742
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1743
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1744
  ResultType ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1745
  DT_RETURN_MARK_FOR(Result, Call##Result##Method, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1746
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1747
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1748
  va_list args; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1749
  va_start(args, methodID); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1750
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1751
  JNI_ArgumentPusherVaArg ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1752
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1753
  va_end(args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1754
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1755
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1756
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1757
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1758
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1759
DEFINE_CALLMETHOD(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1760
                  , HOTSPOT_JNI_CALLBOOLEANMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1761
                  HOTSPOT_JNI_CALLBOOLEANMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1762
DEFINE_CALLMETHOD(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1763
                  , HOTSPOT_JNI_CALLBYTEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1764
                  HOTSPOT_JNI_CALLBYTEMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1765
DEFINE_CALLMETHOD(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1766
                  , HOTSPOT_JNI_CALLCHARMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1767
                  HOTSPOT_JNI_CALLCHARMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1768
DEFINE_CALLMETHOD(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1769
                  , HOTSPOT_JNI_CALLSHORTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1770
                  HOTSPOT_JNI_CALLSHORTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1771
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1772
DEFINE_CALLMETHOD(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1773
                  , HOTSPOT_JNI_CALLOBJECTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1774
                  HOTSPOT_JNI_CALLOBJECTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1775
DEFINE_CALLMETHOD(jint,     Int,     T_INT,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1776
                  HOTSPOT_JNI_CALLINTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1777
                  HOTSPOT_JNI_CALLINTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1778
DEFINE_CALLMETHOD(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1779
                  , HOTSPOT_JNI_CALLLONGMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1780
                  HOTSPOT_JNI_CALLLONGMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1781
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1782
DEFINE_CALLMETHOD(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1783
                  , HOTSPOT_JNI_CALLFLOATMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1784
                  HOTSPOT_JNI_CALLFLOATMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1785
DEFINE_CALLMETHOD(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1786
                  , HOTSPOT_JNI_CALLDOUBLEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1787
                  HOTSPOT_JNI_CALLDOUBLEMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1788
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1789
#define DEFINE_CALLMETHODV(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1790
                          , EntryProbe, ReturnProbe)    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1791
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1792
  DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodV, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1793
                          , ReturnProbe);                          \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1794
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1795
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1796
          jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1797
  JNIWrapper("Call" XSTR(Result) "MethodV"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1798
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1799
  EntryProbe;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1800
  ResultType ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1801
  DT_RETURN_MARK_FOR(Result, Call##Result##MethodV, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1802
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1803
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1804
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1805
  JNI_ArgumentPusherVaArg ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1806
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1807
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1808
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1809
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1810
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1811
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1812
DEFINE_CALLMETHODV(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1813
                  , HOTSPOT_JNI_CALLBOOLEANMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1814
                  HOTSPOT_JNI_CALLBOOLEANMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1815
DEFINE_CALLMETHODV(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1816
                  , HOTSPOT_JNI_CALLBYTEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1817
                  HOTSPOT_JNI_CALLBYTEMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1818
DEFINE_CALLMETHODV(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1819
                  , HOTSPOT_JNI_CALLCHARMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1820
                  HOTSPOT_JNI_CALLCHARMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1821
DEFINE_CALLMETHODV(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1822
                  , HOTSPOT_JNI_CALLSHORTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1823
                  HOTSPOT_JNI_CALLSHORTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1824
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1825
DEFINE_CALLMETHODV(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1826
                  , HOTSPOT_JNI_CALLOBJECTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1827
                  HOTSPOT_JNI_CALLOBJECTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1828
DEFINE_CALLMETHODV(jint,     Int,     T_INT,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1829
                  HOTSPOT_JNI_CALLINTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1830
                  HOTSPOT_JNI_CALLINTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1831
DEFINE_CALLMETHODV(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1832
                  , HOTSPOT_JNI_CALLLONGMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1833
                  HOTSPOT_JNI_CALLLONGMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1834
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1835
DEFINE_CALLMETHODV(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1836
                  , HOTSPOT_JNI_CALLFLOATMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1837
                  HOTSPOT_JNI_CALLFLOATMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1838
DEFINE_CALLMETHODV(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1839
                  , HOTSPOT_JNI_CALLDOUBLEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1840
                  HOTSPOT_JNI_CALLDOUBLEMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1841
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1842
#define DEFINE_CALLMETHODA(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1843
                          , EntryProbe, ReturnProbe)    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1844
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1845
  DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodA, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1846
                          , ReturnProbe);                          \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1847
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1848
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1849
          jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1850
  JNIWrapper("Call" XSTR(Result) "MethodA"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1851
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1852
  ResultType ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1853
  DT_RETURN_MARK_FOR(Result, Call##Result##MethodA, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1854
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1855
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1856
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1857
  JNI_ArgumentPusherArray ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1858
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1859
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1860
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1861
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1862
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1863
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1864
DEFINE_CALLMETHODA(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1865
                  , HOTSPOT_JNI_CALLBOOLEANMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1866
                  HOTSPOT_JNI_CALLBOOLEANMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1867
DEFINE_CALLMETHODA(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1868
                  , HOTSPOT_JNI_CALLBYTEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1869
                  HOTSPOT_JNI_CALLBYTEMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1870
DEFINE_CALLMETHODA(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1871
                  , HOTSPOT_JNI_CALLCHARMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1872
                  HOTSPOT_JNI_CALLCHARMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1873
DEFINE_CALLMETHODA(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1874
                  , HOTSPOT_JNI_CALLSHORTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1875
                  HOTSPOT_JNI_CALLSHORTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1876
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1877
DEFINE_CALLMETHODA(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1878
                  , HOTSPOT_JNI_CALLOBJECTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1879
                  HOTSPOT_JNI_CALLOBJECTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1880
DEFINE_CALLMETHODA(jint,     Int,     T_INT,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1881
                  HOTSPOT_JNI_CALLINTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1882
                  HOTSPOT_JNI_CALLINTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1883
DEFINE_CALLMETHODA(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1884
                  , HOTSPOT_JNI_CALLLONGMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1885
                  HOTSPOT_JNI_CALLLONGMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1886
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1887
DEFINE_CALLMETHODA(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1888
                  , HOTSPOT_JNI_CALLFLOATMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1889
                  HOTSPOT_JNI_CALLFLOATMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1890
DEFINE_CALLMETHODA(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1891
                  , HOTSPOT_JNI_CALLDOUBLEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1892
                  HOTSPOT_JNI_CALLDOUBLEMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1893
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1894
DT_VOID_RETURN_MARK_DECL(CallVoidMethod, HOTSPOT_JNI_CALLVOIDMETHOD_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1895
DT_VOID_RETURN_MARK_DECL(CallVoidMethodV, HOTSPOT_JNI_CALLVOIDMETHODV_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1896
DT_VOID_RETURN_MARK_DECL(CallVoidMethodA, HOTSPOT_JNI_CALLVOIDMETHODA_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1897
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1898
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1899
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
JNI_ENTRY(void, jni_CallVoidMethod(JNIEnv *env, jobject obj, jmethodID methodID, ...))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
  JNIWrapper("CallVoidMethod");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1902
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
  DTRACE_PROBE3(hotspot_jni, CallVoidMethod__entry, env, obj, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1904
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1905
  HOTSPOT_JNI_CALLVOIDMETHOD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1906
                                   env, obj, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1907
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
  DT_VOID_RETURN_MARK(CallVoidMethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
  va_list args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
  va_start(args, methodID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1913
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
  va_end(args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
JNI_ENTRY(void, jni_CallVoidMethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
  JNIWrapper("CallVoidMethodV");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1921
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
  DTRACE_PROBE3(hotspot_jni, CallVoidMethodV__entry, env, obj, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1923
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1924
  HOTSPOT_JNI_CALLVOIDMETHODV_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1925
                                    env, obj, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1926
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
  DT_VOID_RETURN_MARK(CallVoidMethodV);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1930
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
JNI_ENTRY(void, jni_CallVoidMethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
  JNIWrapper("CallVoidMethodA");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1937
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
  DTRACE_PROBE3(hotspot_jni, CallVoidMethodA__entry, env, obj, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1939
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1940
  HOTSPOT_JNI_CALLVOIDMETHODA_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1941
                                    env, obj, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1942
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
  DT_VOID_RETURN_MARK(CallVoidMethodA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1946
  JNI_ArgumentPusherArray ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  1951
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
#define DEFINE_CALLNONVIRTUALMETHOD(ResultType, Result, Tag) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
  DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##Method, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
  DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodV, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
  DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodA, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
          jni_CallNonvirtual##Result##Method(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
  JNIWrapper("CallNonvitual" XSTR(Result) "Method"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
  DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##Method__entry, env, obj, cls, methodID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
  ResultType ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
  DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##Method, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
  va_list args; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
  va_start(args, methodID); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1970
  JNI_ArgumentPusherVaArg ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
  va_end(args); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
JNI_END \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
          jni_CallNonvirtual##Result##MethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
  JNIWrapper("CallNonvitual" XSTR(Result) "#MethodV"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
  DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##MethodV__entry, env, obj, cls, methodID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
  ResultType ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
  DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodV, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  1986
  JNI_ArgumentPusherVaArg ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
JNI_END \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
          jni_CallNonvirtual##Result##MethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
  JNIWrapper("CallNonvitual" XSTR(Result) "MethodA"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##MethodA__entry, env, obj, cls, methodID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
  ResultType ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
  DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodA, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2001
  JNI_ArgumentPusherArray ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
// the runtime type of subword integral basic types is integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
DEFINE_CALLNONVIRTUALMETHOD(jboolean, Boolean, T_BOOLEAN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
DEFINE_CALLNONVIRTUALMETHOD(jbyte,    Byte,    T_BYTE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
DEFINE_CALLNONVIRTUALMETHOD(jchar,    Char,    T_CHAR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
DEFINE_CALLNONVIRTUALMETHOD(jshort,   Short,   T_SHORT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
DEFINE_CALLNONVIRTUALMETHOD(jobject,  Object,  T_OBJECT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
DEFINE_CALLNONVIRTUALMETHOD(jint,     Int,     T_INT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
DEFINE_CALLNONVIRTUALMETHOD(jlong,    Long,    T_LONG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
DEFINE_CALLNONVIRTUALMETHOD(jfloat,   Float,   T_FLOAT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
DEFINE_CALLNONVIRTUALMETHOD(jdouble,  Double,  T_DOUBLE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodV);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2024
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2025
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2026
#define DEFINE_CALLNONVIRTUALMETHOD(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2027
                                    , EntryProbe, ReturnProbe)      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2028
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2029
  DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##Method, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2030
                          , ReturnProbe);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2031
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2032
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2033
          jni_CallNonvirtual##Result##Method(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2034
  JNIWrapper("CallNonvitual" XSTR(Result) "Method"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2035
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2036
  EntryProbe;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2037
  ResultType ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2038
  DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##Method, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2039
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2040
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2041
  va_list args; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2042
  va_start(args, methodID); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2043
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2044
  JNI_ArgumentPusherVaArg ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2045
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2046
  va_end(args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2047
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2048
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2049
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2050
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2051
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2052
DEFINE_CALLNONVIRTUALMETHOD(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2053
                            , HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2054
                            HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2055
DEFINE_CALLNONVIRTUALMETHOD(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2056
                            , HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2057
                            HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2058
DEFINE_CALLNONVIRTUALMETHOD(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2059
                            , HOTSPOT_JNI_CALLNONVIRTUALCHARMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2060
                            HOTSPOT_JNI_CALLNONVIRTUALCHARMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2061
DEFINE_CALLNONVIRTUALMETHOD(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2062
                            , HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2063
                            HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2064
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2065
DEFINE_CALLNONVIRTUALMETHOD(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2066
                            , HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2067
                            HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2068
DEFINE_CALLNONVIRTUALMETHOD(jint,     Int,     T_INT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2069
                            , HOTSPOT_JNI_CALLNONVIRTUALINTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2070
                            HOTSPOT_JNI_CALLNONVIRTUALINTMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2071
DEFINE_CALLNONVIRTUALMETHOD(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2072
                            , HOTSPOT_JNI_CALLNONVIRTUALLONGMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2073
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2074
                            HOTSPOT_JNI_CALLNONVIRTUALLONGMETHOD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2075
DEFINE_CALLNONVIRTUALMETHOD(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2076
                            , HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2077
                            HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2078
DEFINE_CALLNONVIRTUALMETHOD(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2079
                            , HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2080
                            HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHOD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2081
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2082
#define DEFINE_CALLNONVIRTUALMETHODV(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2083
                                    , EntryProbe, ReturnProbe)      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2084
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2085
  DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodV, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2086
                          , ReturnProbe);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2087
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2088
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2089
          jni_CallNonvirtual##Result##MethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2090
  JNIWrapper("CallNonvitual" XSTR(Result) "MethodV"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2091
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2092
  EntryProbe;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2093
  ResultType ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2094
  DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodV, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2095
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2096
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2097
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2098
  JNI_ArgumentPusherVaArg ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2099
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2100
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2101
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2102
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2103
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2104
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2105
DEFINE_CALLNONVIRTUALMETHODV(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2106
                            , HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2107
                            HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODV_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2108
DEFINE_CALLNONVIRTUALMETHODV(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2109
                            , HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2110
                            HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODV_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2111
DEFINE_CALLNONVIRTUALMETHODV(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2112
                            , HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2113
                            HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODV_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2114
DEFINE_CALLNONVIRTUALMETHODV(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2115
                            , HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2116
                            HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODV_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2117
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2118
DEFINE_CALLNONVIRTUALMETHODV(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2119
                            , HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2120
                            HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODV_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2121
DEFINE_CALLNONVIRTUALMETHODV(jint,     Int,     T_INT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2122
                            , HOTSPOT_JNI_CALLNONVIRTUALINTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2123
                            HOTSPOT_JNI_CALLNONVIRTUALINTMETHODV_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2124
DEFINE_CALLNONVIRTUALMETHODV(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2125
                            , HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2126
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2127
                            HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODV_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2128
DEFINE_CALLNONVIRTUALMETHODV(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2129
                            , HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2130
                            HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODV_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2131
DEFINE_CALLNONVIRTUALMETHODV(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2132
                            , HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2133
                            HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODV_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2134
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2135
#define DEFINE_CALLNONVIRTUALMETHODA(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2136
                                    , EntryProbe, ReturnProbe)      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2137
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2138
  DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodA, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2139
                          , ReturnProbe);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2140
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2141
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2142
          jni_CallNonvirtual##Result##MethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2143
  JNIWrapper("CallNonvitual" XSTR(Result) "MethodA"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2144
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2145
  EntryProbe;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2146
  ResultType ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2147
  DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodA, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2148
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2149
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2150
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2151
  JNI_ArgumentPusherArray ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2152
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2153
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2154
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2155
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2156
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2157
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2158
DEFINE_CALLNONVIRTUALMETHODA(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2159
                            , HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2160
                            HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODA_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2161
DEFINE_CALLNONVIRTUALMETHODA(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2162
                            , HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2163
                            HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODA_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2164
DEFINE_CALLNONVIRTUALMETHODA(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2165
                            , HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2166
                            HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODA_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2167
DEFINE_CALLNONVIRTUALMETHODA(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2168
                            , HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2169
                            HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODA_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2170
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2171
DEFINE_CALLNONVIRTUALMETHODA(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2172
                            , HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2173
                            HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODA_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2174
DEFINE_CALLNONVIRTUALMETHODA(jint,     Int,     T_INT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2175
                            , HOTSPOT_JNI_CALLNONVIRTUALINTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2176
                            HOTSPOT_JNI_CALLNONVIRTUALINTMETHODA_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2177
DEFINE_CALLNONVIRTUALMETHODA(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2178
                            , HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2179
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2180
                            HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODA_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2181
DEFINE_CALLNONVIRTUALMETHODA(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2182
                            , HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2183
                            HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODA_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2184
DEFINE_CALLNONVIRTUALMETHODA(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2185
                            , HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2186
                            HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODA_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2187
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2188
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethod
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2189
                         , HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHOD_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2190
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodV
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2191
                         , HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODV_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2192
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodA
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2193
                         , HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODA_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2194
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2195
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
JNI_ENTRY(void, jni_CallNonvirtualVoidMethod(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
  JNIWrapper("CallNonvirtualVoidMethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2199
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
  DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethod__entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
               env, obj, cls, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2202
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2203
  HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHOD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2204
               env, obj, cls, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2205
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
  DT_VOID_RETURN_MARK(CallNonvirtualVoidMethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
  va_list args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
  va_start(args, methodID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2211
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
  va_end(args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
JNI_ENTRY(void, jni_CallNonvirtualVoidMethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
  JNIWrapper("CallNonvirtualVoidMethodV");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2220
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
  DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethodV__entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
               env, obj, cls, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2223
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2224
  HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODV_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2225
               env, obj, cls, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2226
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
  DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodV);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2230
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
JNI_ENTRY(void, jni_CallNonvirtualVoidMethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
  JNIWrapper("CallNonvirtualVoidMethodA");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2237
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
  DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethodA__entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
                env, obj, cls, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2240
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2241
  HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODA_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2242
                env, obj, cls, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2243
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
  DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2246
  JNI_ArgumentPusherArray ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
  jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2251
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
#define DEFINE_CALLSTATICMETHOD(ResultType, Result, Tag) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
  DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##Method, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
  DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodV, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
  DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodA, ResultType);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
          jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
  JNIWrapper("CallStatic" XSTR(Result) "Method"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
  DTRACE_PROBE3(hotspot_jni, CallStatic##Result##Method__entry, env, cls, methodID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
  ResultType ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
  DT_RETURN_MARK_FOR(Result, CallStatic##Result##Method, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
  va_list args; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
  va_start(args, methodID); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2270
  JNI_ArgumentPusherVaArg ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
  va_end(args); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
JNI_END \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
          jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
  JNIWrapper("CallStatic" XSTR(Result) "MethodV"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
  DTRACE_PROBE3(hotspot_jni, CallStatic##Result##MethodV__entry, env, cls, methodID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
  ResultType ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
  DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodV, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2286
  JNI_ArgumentPusherVaArg ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
JNI_END \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
JNI_ENTRY(ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
          jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
  JNIWrapper("CallStatic" XSTR(Result) "MethodA"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
  DTRACE_PROBE3(hotspot_jni, CallStatic##Result##MethodA__entry, env, cls, methodID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
  ResultType ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
  DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodA, ResultType, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
                     (const ResultType&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
  JavaValue jvalue(Tag); \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2301
  JNI_ArgumentPusherArray ap(methodID, args); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
  ret = jvalue.get_##ResultType(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
// the runtime type of subword integral basic types is integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
DEFINE_CALLSTATICMETHOD(jboolean, Boolean, T_BOOLEAN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
DEFINE_CALLSTATICMETHOD(jbyte,    Byte,    T_BYTE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
DEFINE_CALLSTATICMETHOD(jchar,    Char,    T_CHAR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
DEFINE_CALLSTATICMETHOD(jshort,   Short,   T_SHORT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
DEFINE_CALLSTATICMETHOD(jobject,  Object,  T_OBJECT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
DEFINE_CALLSTATICMETHOD(jint,     Int,     T_INT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
DEFINE_CALLSTATICMETHOD(jlong,    Long,    T_LONG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
DEFINE_CALLSTATICMETHOD(jfloat,   Float,   T_FLOAT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
DEFINE_CALLSTATICMETHOD(jdouble,  Double,  T_DOUBLE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodV);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2324
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2325
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2326
#define DEFINE_CALLSTATICMETHOD(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2327
                                , EntryProbe, ResultProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2328
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2329
  DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##Method, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2330
                          , ResultProbe);                               \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2331
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2332
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2333
          jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2334
  JNIWrapper("CallStatic" XSTR(Result) "Method"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2335
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2336
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2337
  ResultType ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2338
  DT_RETURN_MARK_FOR(Result, CallStatic##Result##Method, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2339
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2340
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2341
  va_list args; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2342
  va_start(args, methodID); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2343
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2344
  JNI_ArgumentPusherVaArg ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2345
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2346
  va_end(args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2347
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2348
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2349
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2350
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2351
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2352
DEFINE_CALLSTATICMETHOD(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2353
                        , HOTSPOT_JNI_CALLSTATICBOOLEANMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2354
                        HOTSPOT_JNI_CALLSTATICBOOLEANMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2355
DEFINE_CALLSTATICMETHOD(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2356
                        , HOTSPOT_JNI_CALLSTATICBYTEMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2357
                        HOTSPOT_JNI_CALLSTATICBYTEMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2358
DEFINE_CALLSTATICMETHOD(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2359
                        , HOTSPOT_JNI_CALLSTATICCHARMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2360
                        HOTSPOT_JNI_CALLSTATICCHARMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2361
DEFINE_CALLSTATICMETHOD(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2362
                        , HOTSPOT_JNI_CALLSTATICSHORTMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2363
                        HOTSPOT_JNI_CALLSTATICSHORTMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2364
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2365
DEFINE_CALLSTATICMETHOD(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2366
                        , HOTSPOT_JNI_CALLSTATICOBJECTMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2367
                        HOTSPOT_JNI_CALLSTATICOBJECTMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2368
DEFINE_CALLSTATICMETHOD(jint,     Int,     T_INT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2369
                        , HOTSPOT_JNI_CALLSTATICINTMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2370
                        HOTSPOT_JNI_CALLSTATICINTMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2371
DEFINE_CALLSTATICMETHOD(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2372
                        , HOTSPOT_JNI_CALLSTATICLONGMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2373
                        HOTSPOT_JNI_CALLSTATICLONGMETHOD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2374
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2375
DEFINE_CALLSTATICMETHOD(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2376
                        , HOTSPOT_JNI_CALLSTATICFLOATMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2377
                        HOTSPOT_JNI_CALLSTATICFLOATMETHOD_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2378
DEFINE_CALLSTATICMETHOD(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2379
                        , HOTSPOT_JNI_CALLSTATICDOUBLEMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2380
                        HOTSPOT_JNI_CALLSTATICDOUBLEMETHOD_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2381
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2382
#define DEFINE_CALLSTATICMETHODV(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2383
                                , EntryProbe, ResultProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2384
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2385
  DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodV, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2386
                          , ResultProbe);                               \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2387
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2388
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2389
          jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2390
  JNIWrapper("CallStatic" XSTR(Result) "MethodV"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2391
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2392
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2393
  ResultType ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2394
  DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodV, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2395
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2396
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2397
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2398
  JNI_ArgumentPusherVaArg ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2399
  /* Make sure class is initialized before trying to invoke its method */ \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2400
  KlassHandle k(THREAD, java_lang_Class::as_Klass(JNIHandles::resolve_non_null(cls))); \
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  2401
  k()->initialize(CHECK_0); \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2402
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2403
  va_end(args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2404
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2405
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2406
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2407
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2408
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2409
DEFINE_CALLSTATICMETHODV(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2410
                        , HOTSPOT_JNI_CALLSTATICBOOLEANMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2411
                        HOTSPOT_JNI_CALLSTATICBOOLEANMETHODV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2412
DEFINE_CALLSTATICMETHODV(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2413
                        , HOTSPOT_JNI_CALLSTATICBYTEMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2414
                        HOTSPOT_JNI_CALLSTATICBYTEMETHODV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2415
DEFINE_CALLSTATICMETHODV(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2416
                        , HOTSPOT_JNI_CALLSTATICCHARMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2417
                        HOTSPOT_JNI_CALLSTATICCHARMETHODV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2418
DEFINE_CALLSTATICMETHODV(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2419
                        , HOTSPOT_JNI_CALLSTATICSHORTMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2420
                        HOTSPOT_JNI_CALLSTATICSHORTMETHODV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2421
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2422
DEFINE_CALLSTATICMETHODV(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2423
                        , HOTSPOT_JNI_CALLSTATICOBJECTMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2424
                        HOTSPOT_JNI_CALLSTATICOBJECTMETHODV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2425
DEFINE_CALLSTATICMETHODV(jint,     Int,     T_INT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2426
                        , HOTSPOT_JNI_CALLSTATICINTMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2427
                        HOTSPOT_JNI_CALLSTATICINTMETHODV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2428
DEFINE_CALLSTATICMETHODV(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2429
                        , HOTSPOT_JNI_CALLSTATICLONGMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2430
                        HOTSPOT_JNI_CALLSTATICLONGMETHODV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2431
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2432
DEFINE_CALLSTATICMETHODV(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2433
                        , HOTSPOT_JNI_CALLSTATICFLOATMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2434
                        HOTSPOT_JNI_CALLSTATICFLOATMETHODV_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2435
DEFINE_CALLSTATICMETHODV(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2436
                        , HOTSPOT_JNI_CALLSTATICDOUBLEMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2437
                        HOTSPOT_JNI_CALLSTATICDOUBLEMETHODV_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2438
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2439
#define DEFINE_CALLSTATICMETHODA(ResultType, Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2440
                                , EntryProbe, ResultProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2441
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2442
  DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodA, ResultType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2443
                          , ResultProbe);                               \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2444
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2445
JNI_ENTRY(ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2446
          jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2447
  JNIWrapper("CallStatic" XSTR(Result) "MethodA"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2448
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2449
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2450
  ResultType ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2451
  DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodA, ResultType, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2452
                     (const ResultType&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2453
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2454
  JavaValue jvalue(Tag); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2455
  JNI_ArgumentPusherArray ap(methodID, args); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2456
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2457
  ret = jvalue.get_##ResultType(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2458
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2459
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2460
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2461
// the runtime type of subword integral basic types is integer
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2462
DEFINE_CALLSTATICMETHODA(jboolean, Boolean, T_BOOLEAN
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2463
                        , HOTSPOT_JNI_CALLSTATICBOOLEANMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2464
                        HOTSPOT_JNI_CALLSTATICBOOLEANMETHODA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2465
DEFINE_CALLSTATICMETHODA(jbyte,    Byte,    T_BYTE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2466
                        , HOTSPOT_JNI_CALLSTATICBYTEMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2467
                        HOTSPOT_JNI_CALLSTATICBYTEMETHODA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2468
DEFINE_CALLSTATICMETHODA(jchar,    Char,    T_CHAR
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2469
                        , HOTSPOT_JNI_CALLSTATICCHARMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2470
                        HOTSPOT_JNI_CALLSTATICCHARMETHODA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2471
DEFINE_CALLSTATICMETHODA(jshort,   Short,   T_SHORT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2472
                        , HOTSPOT_JNI_CALLSTATICSHORTMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2473
                        HOTSPOT_JNI_CALLSTATICSHORTMETHODA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2474
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2475
DEFINE_CALLSTATICMETHODA(jobject,  Object,  T_OBJECT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2476
                        , HOTSPOT_JNI_CALLSTATICOBJECTMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2477
                        HOTSPOT_JNI_CALLSTATICOBJECTMETHODA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2478
DEFINE_CALLSTATICMETHODA(jint,     Int,     T_INT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2479
                        , HOTSPOT_JNI_CALLSTATICINTMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2480
                        HOTSPOT_JNI_CALLSTATICINTMETHODA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2481
DEFINE_CALLSTATICMETHODA(jlong,    Long,    T_LONG
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2482
                        , HOTSPOT_JNI_CALLSTATICLONGMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2483
                        HOTSPOT_JNI_CALLSTATICLONGMETHODA_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2484
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2485
DEFINE_CALLSTATICMETHODA(jfloat,   Float,   T_FLOAT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2486
                        , HOTSPOT_JNI_CALLSTATICFLOATMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2487
                        HOTSPOT_JNI_CALLSTATICFLOATMETHODA_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2488
DEFINE_CALLSTATICMETHODA(jdouble,  Double,  T_DOUBLE
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2489
                        , HOTSPOT_JNI_CALLSTATICDOUBLEMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2490
                        HOTSPOT_JNI_CALLSTATICDOUBLEMETHODA_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2491
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2492
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethod
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2493
                         , HOTSPOT_JNI_CALLSTATICVOIDMETHOD_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2494
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodV
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2495
                         , HOTSPOT_JNI_CALLSTATICVOIDMETHODV_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2496
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodA
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2497
                         , HOTSPOT_JNI_CALLSTATICVOIDMETHODA_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2498
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2499
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
JNI_ENTRY(void, jni_CallStaticVoidMethod(JNIEnv *env, jclass cls, jmethodID methodID, ...))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  JNIWrapper("CallStaticVoidMethod");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2502
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
  DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethod__entry, env, cls, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2504
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2505
  HOTSPOT_JNI_CALLSTATICVOIDMETHOD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2506
                                         env, cls, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2507
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
  DT_VOID_RETURN_MARK(CallStaticVoidMethod);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
  va_list args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
  va_start(args, methodID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2513
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
  va_end(args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
JNI_ENTRY(void, jni_CallStaticVoidMethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
  JNIWrapper("CallStaticVoidMethodV");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2521
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
  DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethodV__entry, env, cls, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2523
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2524
  HOTSPOT_JNI_CALLSTATICVOIDMETHODV_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2525
                                          env, cls, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2526
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
  DT_VOID_RETURN_MARK(CallStaticVoidMethodV);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2530
  JNI_ArgumentPusherVaArg ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
JNI_ENTRY(void, jni_CallStaticVoidMethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
  JNIWrapper("CallStaticVoidMethodA");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2537
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
  DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethodA__entry, env, cls, methodID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2539
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2540
  HOTSPOT_JNI_CALLSTATICVOIDMETHODA_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2541
                                          env, cls, (uintptr_t) methodID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2542
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
  DT_VOID_RETURN_MARK(CallStaticVoidMethodA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
  JavaValue jvalue(T_VOID);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2546
  JNI_ArgumentPusherArray ap(methodID, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
  jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
// Accessing Fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2556
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
DT_RETURN_MARK_DECL(GetFieldID, jfieldID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2558
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2559
DT_RETURN_MARK_DECL(GetFieldID, jfieldID
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2560
                    , HOTSPOT_JNI_GETFIELDID_RETURN((uintptr_t)_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2561
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
JNI_ENTRY(jfieldID, jni_GetFieldID(JNIEnv *env, jclass clazz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
          const char *name, const char *sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
  JNIWrapper("GetFieldID");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2566
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
  DTRACE_PROBE4(hotspot_jni, GetFieldID__entry, env, clazz, name, sig);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2568
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2569
  HOTSPOT_JNI_GETFIELDID_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2570
                               env, clazz, (char *) name, (char *) sig);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2571
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
  jfieldID ret = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
  DT_RETURN_MARK(GetFieldID, jfieldID, (const jfieldID&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
  // The class should have been loaded (we have an instance of the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
  // passed in) so the field and signature should already be in the symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
  // table.  If they're not there, the field doesn't exist.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2578
  TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2579
  TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2580
  if (fieldname == NULL || signame == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
    THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
  KlassHandle k(THREAD,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2584
                java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
  // Make sure class is initialized before handing id's out to fields
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  2586
  k()->initialize(CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
  fieldDescriptor fd;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  2589
  if (!k()->oop_is_instance() ||
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2590
      !InstanceKlass::cast(k())->find_field(fieldname, signame, false, &fd)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
    THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
  // A jfieldID for a non-static field is simply the offset of the field within the instanceOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
  // It may also have hash bits for k, if VerifyJNIFields is turned on.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
  ret = jfieldIDWorkaround::to_instance_jfieldID(k(), fd.offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
JNI_ENTRY(jobject, jni_GetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
  JNIWrapper("GetObjectField");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2603
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
  DTRACE_PROBE3(hotspot_jni, GetObjectField__entry, env, obj, fieldID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2605
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2606
  HOTSPOT_JNI_GETOBJECTFIELD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2607
                                   env, obj, (uintptr_t) fieldID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2608
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
  oop o = JNIHandles::resolve_non_null(obj);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2610
  Klass* k = o->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
  int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
  // Keep JVMTI addition small and only check enabled flag here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
  // jni_GetField_probe() assumes that is okay to create handles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
  if (JvmtiExport::should_post_field_access()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
    o = JvmtiExport::jni_GetField_probe(thread, obj, o, k, fieldID, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
  jobject ret = JNIHandles::make_local(env, o->obj_field(offset));
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14585
diff changeset
  2618
#if INCLUDE_ALL_GCS
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2619
  // If G1 is enabled and we are accessing the value of the referent
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2620
  // field in a reference object then we need to register a non-null
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2621
  // referent with the SATB barrier.
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2622
  if (UseG1GC) {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2623
    bool needs_barrier = false;
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2624
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2625
    if (ret != NULL &&
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2626
        offset == java_lang_ref_Reference::referent_offset &&
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2627
        InstanceKlass::cast(k)->reference_type() != REF_NONE) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2628
      assert(InstanceKlass::cast(k)->is_subclass_of(SystemDictionary::Reference_klass()), "sanity");
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2629
      needs_barrier = true;
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2630
    }
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2631
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2632
    if (needs_barrier) {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2633
      oop referent = JNIHandles::resolve(ret);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2634
      G1SATBCardTableModRefBS::enqueue(referent);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2635
    }
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8725
diff changeset
  2636
  }
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14585
diff changeset
  2637
#endif // INCLUDE_ALL_GCS
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2638
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
  DTRACE_PROBE1(hotspot_jni, GetObjectField__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2640
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2641
HOTSPOT_JNI_GETOBJECTFIELD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2642
                                  ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2643
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2648
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
#define DEFINE_GETFIELD(Return,Fieldname,Result) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
  DT_RETURN_MARK_DECL_FOR(Result, Get##Result##Field, Return);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
JNI_QUICK_ENTRY(Return, jni_Get##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
  JNIWrapper("Get" XSTR(Result) "Field"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
  DTRACE_PROBE3(hotspot_jni, Get##Result##Field__entry, env, obj, fieldID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
  Return ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
  DT_RETURN_MARK_FOR(Result, Get##Result##Field, Return, (const Return&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
  oop o = JNIHandles::resolve_non_null(obj); \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2661
  Klass* k = o->klass(); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
  int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
  /* Keep JVMTI addition small and only check enabled flag here.       */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
  /* jni_GetField_probe_nh() assumes that is not okay to create handles */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
  /* and creates a ResetNoHandleMark.                                   */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2666
  if (JvmtiExport::should_post_field_access()) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
    o = JvmtiExport::jni_GetField_probe_nh(thread, obj, o, k, fieldID, false); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
  ret = o->Fieldname##_field(offset); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
  return ret; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
DEFINE_GETFIELD(jboolean, bool,   Boolean)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
DEFINE_GETFIELD(jbyte,    byte,   Byte)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
DEFINE_GETFIELD(jchar,    char,   Char)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
DEFINE_GETFIELD(jshort,   short,  Short)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
DEFINE_GETFIELD(jint,     int,    Int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
DEFINE_GETFIELD(jlong,    long,   Long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
DEFINE_GETFIELD(jfloat,   float,  Float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
DEFINE_GETFIELD(jdouble,  double, Double)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2682
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2683
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2684
#define DEFINE_GETFIELD(Return,Fieldname,Result \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2685
  , EntryProbe, ReturnProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2686
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2687
  DT_RETURN_MARK_DECL_FOR(Result, Get##Result##Field, Return \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2688
  , ReturnProbe); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2689
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2690
JNI_QUICK_ENTRY(Return, jni_Get##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2691
  JNIWrapper("Get" XSTR(Result) "Field"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2692
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2693
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2694
  Return ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2695
  DT_RETURN_MARK_FOR(Result, Get##Result##Field, Return, (const Return&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2696
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2697
  oop o = JNIHandles::resolve_non_null(obj); \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2698
  Klass* k = o->klass(); \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2699
  int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);  \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2700
  /* Keep JVMTI addition small and only check enabled flag here.       */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2701
  /* jni_GetField_probe_nh() assumes that is not okay to create handles */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2702
  /* and creates a ResetNoHandleMark.                                   */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2703
  if (JvmtiExport::should_post_field_access()) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2704
    o = JvmtiExport::jni_GetField_probe_nh(thread, obj, o, k, fieldID, false); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2705
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2706
  ret = o->Fieldname##_field(offset); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2707
  return ret; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2708
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2709
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2710
DEFINE_GETFIELD(jboolean, bool,   Boolean
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2711
                , HOTSPOT_JNI_GETBOOLEANFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2712
                HOTSPOT_JNI_GETBOOLEANFIELD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2713
DEFINE_GETFIELD(jbyte,    byte,   Byte
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2714
                , HOTSPOT_JNI_GETBYTEFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2715
                HOTSPOT_JNI_GETBYTEFIELD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2716
DEFINE_GETFIELD(jchar,    char,   Char
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2717
                , HOTSPOT_JNI_GETCHARFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2718
                HOTSPOT_JNI_GETCHARFIELD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2719
DEFINE_GETFIELD(jshort,   short,  Short
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2720
                , HOTSPOT_JNI_GETSHORTFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2721
                HOTSPOT_JNI_GETSHORTFIELD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2722
DEFINE_GETFIELD(jint,     int,    Int
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2723
                , HOTSPOT_JNI_GETINTFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2724
                HOTSPOT_JNI_GETINTFIELD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2725
DEFINE_GETFIELD(jlong,    long,   Long
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2726
                , HOTSPOT_JNI_GETLONGFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2727
                HOTSPOT_JNI_GETLONGFIELD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2728
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2729
DEFINE_GETFIELD(jfloat,   float,  Float
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2730
                , HOTSPOT_JNI_GETFLOATFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2731
                HOTSPOT_JNI_GETFLOATFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2732
DEFINE_GETFIELD(jdouble,  double, Double
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2733
                , HOTSPOT_JNI_GETDOUBLEFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2734
                HOTSPOT_JNI_GETDOUBLEFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2735
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2736
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
address jni_GetBooleanField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
  return (address)jni_GetBooleanField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
address jni_GetByteField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
  return (address)jni_GetByteField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
address jni_GetCharField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
  return (address)jni_GetCharField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
address jni_GetShortField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
  return (address)jni_GetShortField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
address jni_GetIntField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
  return (address)jni_GetIntField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
address jni_GetLongField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
  return (address)jni_GetLongField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
address jni_GetFloatField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
  return (address)jni_GetFloatField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
address jni_GetDoubleField_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
  return (address)jni_GetDoubleField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
JNI_QUICK_ENTRY(void, jni_SetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID, jobject value))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
  JNIWrapper("SetObjectField");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2764
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
  DTRACE_PROBE4(hotspot_jni, SetObjectField__entry, env, obj, fieldID, value);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2766
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2767
  HOTSPOT_JNI_SETOBJECTFIELD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2768
                                   env, obj, (uintptr_t) fieldID, value);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2769
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
  oop o = JNIHandles::resolve_non_null(obj);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2771
  Klass* k = o->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
  int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
  // Keep JVMTI addition small and only check enabled flag here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
  // jni_SetField_probe_nh() assumes that is not okay to create handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
  // and creates a ResetNoHandleMark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
  if (JvmtiExport::should_post_field_modification()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
    jvalue field_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
    field_value.l = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
    o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, 'L', (jvalue *)&field_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
  o->obj_field_put(offset, JNIHandles::resolve(value));
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2782
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
  DTRACE_PROBE(hotspot_jni, SetObjectField__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2784
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2785
  HOTSPOT_JNI_SETOBJECTFIELD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2786
);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2787
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2790
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
#define DEFINE_SETFIELD(Argument,Fieldname,Result,SigType,unionType) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
JNI_QUICK_ENTRY(void, jni_Set##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID, Argument value)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
  JNIWrapper("Set" XSTR(Result) "Field"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
\
13958
f5598a86c223 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 13952
diff changeset
  2796
  FP_SELECT_##Result( \
f5598a86c223 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 13952
diff changeset
  2797
    DTRACE_PROBE4(hotspot_jni, Set##Result##Field__entry, env, obj, fieldID, value), \
f5598a86c223 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 13952
diff changeset
  2798
    DTRACE_PROBE3(hotspot_jni, Set##Result##Field__entry, env, obj, fieldID)); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
  oop o = JNIHandles::resolve_non_null(obj); \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2801
  Klass* k = o->klass(); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
  int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
  /* Keep JVMTI addition small and only check enabled flag here.       */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
  /* jni_SetField_probe_nh() assumes that is not okay to create handles */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
  /* and creates a ResetNoHandleMark.                                   */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
  if (JvmtiExport::should_post_field_modification()) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
    jvalue field_value; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
    field_value.unionType = value; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
    o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, SigType, (jvalue *)&field_value); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
  o->Fieldname##_field_put(offset, value); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
  DTRACE_PROBE(hotspot_jni, Set##Result##Field__return);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
DEFINE_SETFIELD(jboolean, bool,   Boolean, 'Z', z)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
DEFINE_SETFIELD(jbyte,    byte,   Byte,    'B', b)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
DEFINE_SETFIELD(jchar,    char,   Char,    'C', c)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
DEFINE_SETFIELD(jshort,   short,  Short,   'S', s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
DEFINE_SETFIELD(jint,     int,    Int,     'I', i)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
DEFINE_SETFIELD(jlong,    long,   Long,    'J', j)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
DEFINE_SETFIELD(jfloat,   float,  Float,   'F', f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
DEFINE_SETFIELD(jdouble,  double, Double,  'D', d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2824
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2825
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2826
#define DEFINE_SETFIELD(Argument,Fieldname,Result,SigType,unionType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2827
                        , EntryProbe, ReturnProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2828
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2829
JNI_QUICK_ENTRY(void, jni_Set##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID, Argument value)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2830
  JNIWrapper("Set" XSTR(Result) "Field"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2831
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2832
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2833
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2834
  oop o = JNIHandles::resolve_non_null(obj); \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2835
  Klass* k = o->klass(); \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2836
  int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);  \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2837
  /* Keep JVMTI addition small and only check enabled flag here.       */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2838
  /* jni_SetField_probe_nh() assumes that is not okay to create handles */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2839
  /* and creates a ResetNoHandleMark.                                   */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2840
  if (JvmtiExport::should_post_field_modification()) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2841
    jvalue field_value; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2842
    field_value.unionType = value; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2843
    o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, SigType, (jvalue *)&field_value); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2844
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2845
  o->Fieldname##_field_put(offset, value); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2846
  ReturnProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2847
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2848
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2849
DEFINE_SETFIELD(jboolean, bool,   Boolean, 'Z', z
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2850
                , HOTSPOT_JNI_SETBOOLEANFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2851
                HOTSPOT_JNI_SETBOOLEANFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2852
DEFINE_SETFIELD(jbyte,    byte,   Byte,    'B', b
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2853
                , HOTSPOT_JNI_SETBYTEFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2854
                HOTSPOT_JNI_SETBYTEFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2855
DEFINE_SETFIELD(jchar,    char,   Char,    'C', c
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2856
                , HOTSPOT_JNI_SETCHARFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2857
                HOTSPOT_JNI_SETCHARFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2858
DEFINE_SETFIELD(jshort,   short,  Short,   'S', s
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2859
                , HOTSPOT_JNI_SETSHORTFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2860
                HOTSPOT_JNI_SETSHORTFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2861
DEFINE_SETFIELD(jint,     int,    Int,     'I', i
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2862
                , HOTSPOT_JNI_SETINTFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2863
                HOTSPOT_JNI_SETINTFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2864
DEFINE_SETFIELD(jlong,    long,   Long,    'J', j
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2865
                , HOTSPOT_JNI_SETLONGFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2866
                HOTSPOT_JNI_SETLONGFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2867
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2868
DEFINE_SETFIELD(jfloat,   float,  Float,   'F', f
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2869
                , HOTSPOT_JNI_SETFLOATFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2870
                HOTSPOT_JNI_SETFLOATFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2871
DEFINE_SETFIELD(jdouble,  double, Double,  'D', d
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2872
                , HOTSPOT_JNI_SETDOUBLEFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2873
                HOTSPOT_JNI_SETDOUBLEFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2874
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2875
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2876
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
DT_RETURN_MARK_DECL(ToReflectedField, jobject);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2878
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2879
DT_RETURN_MARK_DECL(ToReflectedField, jobject
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2880
                    , HOTSPOT_JNI_TOREFLECTEDFIELD_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2881
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
JNI_ENTRY(jobject, jni_ToReflectedField(JNIEnv *env, jclass cls, jfieldID fieldID, jboolean isStatic))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
  JNIWrapper("ToReflectedField");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2885
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
  DTRACE_PROBE4(hotspot_jni, ToReflectedField__entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
                env, cls, fieldID, isStatic);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2888
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2889
  HOTSPOT_JNI_TOREFLECTEDFIELD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2890
                env, cls, (uintptr_t) fieldID, isStatic);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2891
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
  jobject ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
  DT_RETURN_MARK(ToReflectedField, jobject, (const jobject&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
  fieldDescriptor fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
  bool found = false;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2897
  Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(cls));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
  assert(jfieldIDWorkaround::is_static_jfieldID(fieldID) == (isStatic != 0), "invalid fieldID");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
  if (isStatic) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2902
    // Static field. The fieldID a JNIid specifying the field holder and the offset within the Klass*.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
    JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
    assert(id->is_static_field_id(), "invalid static field id");
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
  2905
    found = id->find_local_field(&fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
    // Non-static field. The fieldID is really the offset of the field within the instanceOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
    int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2909
    found = InstanceKlass::cast(k)->find_field_from_offset(offset, false, &fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2910
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
  assert(found, "bad fieldID passed into jni_ToReflectedField");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
  oop reflected = Reflection::new_field(&fd, UseNewReflection, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
  ret = JNIHandles::make_local(env, reflected);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
// Accessing Static Fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
//
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2921
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
DT_RETURN_MARK_DECL(GetStaticFieldID, jfieldID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2923
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2924
DT_RETURN_MARK_DECL(GetStaticFieldID, jfieldID
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2925
                    , HOTSPOT_JNI_GETSTATICFIELDID_RETURN((uintptr_t)_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2926
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
JNI_ENTRY(jfieldID, jni_GetStaticFieldID(JNIEnv *env, jclass clazz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
          const char *name, const char *sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
  JNIWrapper("GetStaticFieldID");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2931
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
  DTRACE_PROBE4(hotspot_jni, GetStaticFieldID__entry, env, clazz, name, sig);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2933
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2934
  HOTSPOT_JNI_GETSTATICFIELDID_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2935
                                     env, clazz, (char *) name, (char *) sig);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2936
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
  jfieldID ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
  DT_RETURN_MARK(GetStaticFieldID, jfieldID, (const jfieldID&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2940
  // The class should have been loaded (we have an instance of the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
  // passed in) so the field and signature should already be in the symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
  // table.  If they're not there, the field doesn't exist.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2943
  TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2944
  TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  2945
  if (fieldname == NULL || signame == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
    THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2948
  KlassHandle k(THREAD,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2949
                java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
  // Make sure class is initialized before handing id's out to static fields
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  2951
  k()->initialize(CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2953
  fieldDescriptor fd;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  2954
  if (!k()->oop_is_instance() ||
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2955
      !InstanceKlass::cast(k())->find_field(fieldname, signame, true, &fd)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
    THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2959
  // A jfieldID for a static field is a JNIid specifying the field holder and the offset within the Klass*
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13977
diff changeset
  2960
  JNIid* id = fd.field_holder()->jni_id_for(fd.offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
  debug_only(id->set_is_static_field_id();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
  2963
  debug_only(id->verify(fd.field_holder()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
  ret = jfieldIDWorkaround::to_static_jfieldID(id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
JNI_ENTRY(jobject, jni_GetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
  JNIWrapper("GetStaticObjectField");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2972
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2973
  DTRACE_PROBE3(hotspot_jni, GetStaticObjectField__entry, env, clazz, fieldID);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2974
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2975
  HOTSPOT_JNI_GETSTATICOBJECTFIELD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2976
                                         env, clazz, (uintptr_t) fieldID);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2977
#endif /* USDT2 */
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
  2978
#if INCLUDE_JNI_CHECK
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2979
  DEBUG_ONLY(Klass* param_k = jniCheck::validate_class(thread, clazz);)
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
  2980
#endif // INCLUDE_JNI_CHECK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2981
  JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2982
  assert(id->is_static_field_id(), "invalid static field id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2983
  // Keep JVMTI addition small and only check enabled flag here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2984
  // jni_GetField_probe() assumes that is okay to create handles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2985
  if (JvmtiExport::should_post_field_access()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2986
    JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2987
  }
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
  2988
  jobject ret = JNIHandles::make_local(id->holder()->java_mirror()->obj_field(id->offset()));
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2989
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
  DTRACE_PROBE1(hotspot_jni, GetStaticObjectField__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2991
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2992
  HOTSPOT_JNI_GETSTATICOBJECTFIELD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2993
                                          ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2994
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2995
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2996
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  2998
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2999
#define DEFINE_GETSTATICFIELD(Return,Fieldname,Result) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3000
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3001
  DT_RETURN_MARK_DECL_FOR(Result, GetStatic##Result##Field, Return);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
JNI_ENTRY(Return, jni_GetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3004
  JNIWrapper("GetStatic" XSTR(Result) "Field"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3005
  DTRACE_PROBE3(hotspot_jni, GetStatic##Result##Field__entry, env, clazz, fieldID);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3006
  Return ret = 0;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3007
  DT_RETURN_MARK_FOR(Result, GetStatic##Result##Field, Return, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3008
                     (const Return&)ret);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3009
  JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3010
  assert(id->is_static_field_id(), "invalid static field id"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3011
  /* Keep JVMTI addition small and only check enabled flag here. */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3012
  /* jni_GetField_probe() assumes that is okay to create handles. */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3013
  if (JvmtiExport::should_post_field_access()) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3014
    JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3015
  } \
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
  3016
  ret = id->holder()->java_mirror()-> Fieldname##_field (id->offset()); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3017
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3018
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3020
DEFINE_GETSTATICFIELD(jboolean, bool,   Boolean)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3021
DEFINE_GETSTATICFIELD(jbyte,    byte,   Byte)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3022
DEFINE_GETSTATICFIELD(jchar,    char,   Char)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3023
DEFINE_GETSTATICFIELD(jshort,   short,  Short)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3024
DEFINE_GETSTATICFIELD(jint,     int,    Int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3025
DEFINE_GETSTATICFIELD(jlong,    long,   Long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3026
DEFINE_GETSTATICFIELD(jfloat,   float,  Float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3027
DEFINE_GETSTATICFIELD(jdouble,  double, Double)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3028
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3029
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3030
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3031
#define DEFINE_GETSTATICFIELD(Return,Fieldname,Result \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3032
                              , EntryProbe, ReturnProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3033
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3034
  DT_RETURN_MARK_DECL_FOR(Result, GetStatic##Result##Field, Return \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3035
                          , ReturnProbe);                                          \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3036
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3037
JNI_ENTRY(Return, jni_GetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3038
  JNIWrapper("GetStatic" XSTR(Result) "Field"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3039
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3040
  Return ret = 0;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3041
  DT_RETURN_MARK_FOR(Result, GetStatic##Result##Field, Return, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3042
                     (const Return&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3043
  JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3044
  assert(id->is_static_field_id(), "invalid static field id"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3045
  /* Keep JVMTI addition small and only check enabled flag here. */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3046
  /* jni_GetField_probe() assumes that is okay to create handles. */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3047
  if (JvmtiExport::should_post_field_access()) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3048
    JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3049
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3050
  ret = id->holder()->java_mirror()-> Fieldname##_field (id->offset()); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3051
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3052
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3053
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3054
DEFINE_GETSTATICFIELD(jboolean, bool,   Boolean
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3055
                      , HOTSPOT_JNI_GETSTATICBOOLEANFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICBOOLEANFIELD_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3056
DEFINE_GETSTATICFIELD(jbyte,    byte,   Byte
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3057
                      , HOTSPOT_JNI_GETSTATICBYTEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),    HOTSPOT_JNI_GETSTATICBYTEFIELD_RETURN(_ret_ref)   )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3058
DEFINE_GETSTATICFIELD(jchar,    char,   Char
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3059
                      , HOTSPOT_JNI_GETSTATICCHARFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),    HOTSPOT_JNI_GETSTATICCHARFIELD_RETURN(_ret_ref)   )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3060
DEFINE_GETSTATICFIELD(jshort,   short,  Short
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3061
                      , HOTSPOT_JNI_GETSTATICSHORTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),   HOTSPOT_JNI_GETSTATICSHORTFIELD_RETURN(_ret_ref)  )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3062
DEFINE_GETSTATICFIELD(jint,     int,    Int
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3063
                      , HOTSPOT_JNI_GETSTATICINTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),     HOTSPOT_JNI_GETSTATICINTFIELD_RETURN(_ret_ref)    )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3064
DEFINE_GETSTATICFIELD(jlong,    long,   Long
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3065
                      , HOTSPOT_JNI_GETSTATICLONGFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),    HOTSPOT_JNI_GETSTATICLONGFIELD_RETURN(_ret_ref)   )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3066
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3067
DEFINE_GETSTATICFIELD(jfloat,   float,  Float
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3068
                      , HOTSPOT_JNI_GETSTATICFLOATFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),   HOTSPOT_JNI_GETSTATICFLOATFIELD_RETURN()          )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3069
DEFINE_GETSTATICFIELD(jdouble,  double, Double
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3070
                      , HOTSPOT_JNI_GETSTATICDOUBLEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),  HOTSPOT_JNI_GETSTATICDOUBLEFIELD_RETURN()         )
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3071
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3073
JNI_ENTRY(void, jni_SetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID, jobject value))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3074
  JNIWrapper("SetStaticObjectField");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3075
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3076
  DTRACE_PROBE4(hotspot_jni, SetStaticObjectField__entry, env, clazz, fieldID, value);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3077
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3078
 HOTSPOT_JNI_SETSTATICOBJECTFIELD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3079
                                        env, clazz, (uintptr_t) fieldID, value);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3080
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3081
  JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
  assert(id->is_static_field_id(), "invalid static field id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
  // Keep JVMTI addition small and only check enabled flag here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3084
  // jni_SetField_probe() assumes that is okay to create handles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3085
  if (JvmtiExport::should_post_field_modification()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3086
    jvalue field_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3087
    field_value.l = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3088
    JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, 'L', (jvalue *)&field_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
  }
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
  3090
  id->holder()->java_mirror()->obj_field_put(id->offset(), JNIHandles::resolve(value));
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3091
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3092
  DTRACE_PROBE(hotspot_jni, SetStaticObjectField__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3093
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3094
  HOTSPOT_JNI_SETSTATICOBJECTFIELD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3095
                                          );
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3096
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3097
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3099
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3100
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
#define DEFINE_SETSTATICFIELD(Argument,Fieldname,Result,SigType,unionType) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3102
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3103
JNI_ENTRY(void, jni_SetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID, Argument value)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3104
  JNIWrapper("SetStatic" XSTR(Result) "Field"); \
13958
f5598a86c223 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 13952
diff changeset
  3105
  FP_SELECT_##Result( \
f5598a86c223 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 13952
diff changeset
  3106
     DTRACE_PROBE4(hotspot_jni, SetStatic##Result##Field__entry, env, clazz, fieldID, value), \
f5598a86c223 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 13952
diff changeset
  3107
     DTRACE_PROBE3(hotspot_jni, SetStatic##Result##Field__entry, env, clazz, fieldID)); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3109
  JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
  assert(id->is_static_field_id(), "invalid static field id"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3111
  /* Keep JVMTI addition small and only check enabled flag here. */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
  /* jni_SetField_probe() assumes that is okay to create handles. */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3113
  if (JvmtiExport::should_post_field_modification()) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
    jvalue field_value; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
    field_value.unionType = value; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
    JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, SigType, (jvalue *)&field_value); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3117
  } \
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
  3118
  id->holder()->java_mirror()-> Fieldname##_field_put (id->offset(), value); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3119
  DTRACE_PROBE(hotspot_jni, SetStatic##Result##Field__return);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3120
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3122
DEFINE_SETSTATICFIELD(jboolean, bool,   Boolean, 'Z', z)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
DEFINE_SETSTATICFIELD(jbyte,    byte,   Byte,    'B', b)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
DEFINE_SETSTATICFIELD(jchar,    char,   Char,    'C', c)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
DEFINE_SETSTATICFIELD(jshort,   short,  Short,   'S', s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
DEFINE_SETSTATICFIELD(jint,     int,    Int,     'I', i)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3127
DEFINE_SETSTATICFIELD(jlong,    long,   Long,    'J', j)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3128
DEFINE_SETSTATICFIELD(jfloat,   float,  Float,   'F', f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3129
DEFINE_SETSTATICFIELD(jdouble,  double, Double,  'D', d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3130
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3131
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3132
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3133
#define DEFINE_SETSTATICFIELD(Argument,Fieldname,Result,SigType,unionType \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3134
                              , EntryProbe, ReturnProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3135
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3136
JNI_ENTRY(void, jni_SetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID, Argument value)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3137
  JNIWrapper("SetStatic" XSTR(Result) "Field"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3138
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3139
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3140
  JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3141
  assert(id->is_static_field_id(), "invalid static field id"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3142
  /* Keep JVMTI addition small and only check enabled flag here. */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3143
  /* jni_SetField_probe() assumes that is okay to create handles. */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3144
  if (JvmtiExport::should_post_field_modification()) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3145
    jvalue field_value; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3146
    field_value.unionType = value; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3147
    JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, SigType, (jvalue *)&field_value); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3148
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3149
  id->holder()->java_mirror()-> Fieldname##_field_put (id->offset(), value); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3150
  ReturnProbe;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3151
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3152
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3153
DEFINE_SETSTATICFIELD(jboolean, bool,   Boolean, 'Z', z
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3154
                      , HOTSPOT_JNI_SETBOOLEANFIELD_ENTRY(env, clazz, (uintptr_t)fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3155
                      HOTSPOT_JNI_SETBOOLEANFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3156
DEFINE_SETSTATICFIELD(jbyte,    byte,   Byte,    'B', b
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3157
                      , HOTSPOT_JNI_SETSTATICBYTEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3158
                      HOTSPOT_JNI_SETSTATICBYTEFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3159
DEFINE_SETSTATICFIELD(jchar,    char,   Char,    'C', c
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3160
                      , HOTSPOT_JNI_SETSTATICCHARFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3161
                      HOTSPOT_JNI_SETSTATICCHARFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3162
DEFINE_SETSTATICFIELD(jshort,   short,  Short,   'S', s
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3163
                      , HOTSPOT_JNI_SETSTATICSHORTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3164
                      HOTSPOT_JNI_SETSTATICSHORTFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3165
DEFINE_SETSTATICFIELD(jint,     int,    Int,     'I', i
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3166
                      , HOTSPOT_JNI_SETSTATICINTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3167
                      HOTSPOT_JNI_SETSTATICINTFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3168
DEFINE_SETSTATICFIELD(jlong,    long,   Long,    'J', j
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3169
                      , HOTSPOT_JNI_SETSTATICLONGFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3170
                      HOTSPOT_JNI_SETSTATICLONGFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3171
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3172
DEFINE_SETSTATICFIELD(jfloat,   float,  Float,   'F', f
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3173
                      , HOTSPOT_JNI_SETSTATICFLOATFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3174
                      HOTSPOT_JNI_SETSTATICFLOATFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3175
DEFINE_SETSTATICFIELD(jdouble,  double, Double,  'D', d
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3176
                      , HOTSPOT_JNI_SETSTATICDOUBLEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3177
                      HOTSPOT_JNI_SETSTATICDOUBLEFIELD_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3178
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3179
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3180
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
// String Operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
// Unicode Interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3185
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3186
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3187
DT_RETURN_MARK_DECL(NewString, jstring);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3188
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3189
DT_RETURN_MARK_DECL(NewString, jstring
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3190
                    , HOTSPOT_JNI_NEWSTRING_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3191
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3193
JNI_ENTRY(jstring, jni_NewString(JNIEnv *env, const jchar *unicodeChars, jsize len))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3194
  JNIWrapper("NewString");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3195
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3196
  DTRACE_PROBE3(hotspot_jni, NewString__entry, env, unicodeChars, len);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3197
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3198
 HOTSPOT_JNI_NEWSTRING_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3199
                             env, (uint16_t *) unicodeChars, len);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3200
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3201
  jstring ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
  DT_RETURN_MARK(NewString, jstring, (const jstring&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3203
  oop string=java_lang_String::create_oop_from_unicode((jchar*) unicodeChars, len, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3204
  ret = (jstring) JNIHandles::make_local(env, string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3206
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3209
JNI_QUICK_ENTRY(jsize, jni_GetStringLength(JNIEnv *env, jstring string))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
  JNIWrapper("GetStringLength");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3211
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3212
  DTRACE_PROBE2(hotspot_jni, GetStringLength__entry, env, string);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3213
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3214
  HOTSPOT_JNI_GETSTRINGLENGTH_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3215
                                    env, string);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3216
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3217
  jsize ret = java_lang_String::length(JNIHandles::resolve_non_null(string));
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3218
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3219
  DTRACE_PROBE1(hotspot_jni, GetStringLength__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3220
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3221
 HOTSPOT_JNI_GETSTRINGLENGTH_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3222
                                    ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3223
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3224
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3225
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3227
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3228
JNI_QUICK_ENTRY(const jchar*, jni_GetStringChars(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3229
  JNIEnv *env, jstring string, jboolean *isCopy))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3230
  JNIWrapper("GetStringChars");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3231
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3232
  DTRACE_PROBE3(hotspot_jni, GetStringChars__entry, env, string, isCopy);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3233
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3234
 HOTSPOT_JNI_GETSTRINGCHARS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3235
                                  env, string, (uintptr_t *) isCopy);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3236
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3237
  oop s = JNIHandles::resolve_non_null(string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3238
  int s_len = java_lang_String::length(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3239
  typeArrayOop s_value = java_lang_String::value(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3240
  int s_offset = java_lang_String::offset(s);
19545
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3241
  jchar* buf = NEW_C_HEAP_ARRAY_RETURN_NULL(jchar, s_len + 1, mtInternal);  // add one for zero termination
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3242
  /* JNI Specification states return NULL on OOM */
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3243
  if (buf != NULL) {
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3244
    if (s_len > 0) {
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3245
      memcpy(buf, s_value->char_at_addr(s_offset), sizeof(jchar)*s_len);
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3246
    }
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3247
    buf[s_len] = 0;
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3248
    //%note jni_5
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3249
    if (isCopy != NULL) {
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3250
      *isCopy = JNI_TRUE;
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3251
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3252
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3253
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3254
  DTRACE_PROBE1(hotspot_jni, GetStringChars__return, buf);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3255
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3256
  HOTSPOT_JNI_GETSTRINGCHARS_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3257
                                    buf);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3258
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3259
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3260
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3263
JNI_QUICK_ENTRY(void, jni_ReleaseStringChars(JNIEnv *env, jstring str, const jchar *chars))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3264
  JNIWrapper("ReleaseStringChars");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3265
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
  DTRACE_PROBE3(hotspot_jni, ReleaseStringChars__entry, env, str, chars);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3267
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3268
  HOTSPOT_JNI_RELEASESTRINGCHARS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3269
                                       env, str, (uint16_t *) chars);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3270
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3271
  //%note jni_6
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3272
  if (chars != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3273
    // Since String objects are supposed to be immutable, don't copy any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3274
    // new data back.  A bad user will have to go after the char array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3275
    FreeHeap((void*) chars);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3276
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3277
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3278
  DTRACE_PROBE(hotspot_jni, ReleaseStringChars__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3279
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3280
  HOTSPOT_JNI_RELEASESTRINGCHARS_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3281
);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3282
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3283
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3286
// UTF Interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3287
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3288
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3289
DT_RETURN_MARK_DECL(NewStringUTF, jstring);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3290
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3291
DT_RETURN_MARK_DECL(NewStringUTF, jstring
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3292
                    , HOTSPOT_JNI_NEWSTRINGUTF_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3293
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
JNI_ENTRY(jstring, jni_NewStringUTF(JNIEnv *env, const char *bytes))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
  JNIWrapper("NewStringUTF");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3297
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3298
  DTRACE_PROBE2(hotspot_jni, NewStringUTF__entry, env, bytes);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3299
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3300
  HOTSPOT_JNI_NEWSTRINGUTF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3301
                                 env, (char *) bytes);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3302
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3303
  jstring ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3304
  DT_RETURN_MARK(NewStringUTF, jstring, (const jstring&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3305
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
  oop result = java_lang_String::create_oop_from_str((char*) bytes, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
  ret = (jstring) JNIHandles::make_local(env, result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3309
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
JNI_ENTRY(jsize, jni_GetStringUTFLength(JNIEnv *env, jstring string))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
  JNIWrapper("GetStringUTFLength");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3314
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
  DTRACE_PROBE2(hotspot_jni, GetStringUTFLength__entry, env, string);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3316
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3317
 HOTSPOT_JNI_GETSTRINGUTFLENGTH_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3318
                                      env, string);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3319
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
  jsize ret = java_lang_String::utf8_length(JNIHandles::resolve_non_null(string));
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3321
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
  DTRACE_PROBE1(hotspot_jni, GetStringUTFLength__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3323
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3324
  HOTSPOT_JNI_GETSTRINGUTFLENGTH_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3325
                                        ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3326
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3327
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3328
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
JNI_ENTRY(const char*, jni_GetStringUTFChars(JNIEnv *env, jstring string, jboolean *isCopy))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
  JNIWrapper("GetStringUTFChars");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3333
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
  DTRACE_PROBE3(hotspot_jni, GetStringUTFChars__entry, env, string, isCopy);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3335
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3336
 HOTSPOT_JNI_GETSTRINGUTFCHARS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3337
                                     env, string, (uintptr_t *) isCopy);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3338
#endif /* USDT2 */
7414
940d84ca7fca 6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents: 7405
diff changeset
  3339
  oop java_string = JNIHandles::resolve_non_null(string);
940d84ca7fca 6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents: 7405
diff changeset
  3340
  size_t length = java_lang_String::utf8_length(java_string);
19545
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3341
  /* JNI Specification states return NULL on OOM */
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3342
  char* result = AllocateHeap(length + 1, mtInternal, 0, AllocFailStrategy::RETURN_NULL);
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3343
  if (result != NULL) {
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3344
    java_lang_String::as_utf8_string(java_string, result, (int) length + 1);
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3345
    if (isCopy != NULL) {
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3346
      *isCopy = JNI_TRUE;
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3347
    }
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3348
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3349
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
  DTRACE_PROBE1(hotspot_jni, GetStringUTFChars__return, result);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3351
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3352
 HOTSPOT_JNI_GETSTRINGUTFCHARS_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3353
                                      result);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3354
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3355
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3359
JNI_LEAF(void, jni_ReleaseStringUTFChars(JNIEnv *env, jstring str, const char *chars))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
  JNIWrapper("ReleaseStringUTFChars");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3361
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
  DTRACE_PROBE3(hotspot_jni, ReleaseStringUTFChars__entry, env, str, chars);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3363
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3364
 HOTSPOT_JNI_RELEASESTRINGUTFCHARS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3365
                                         env, str, (char *) chars);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3366
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
  if (chars != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
    FreeHeap((char*) chars);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3369
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3370
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3371
  DTRACE_PROBE(hotspot_jni, ReleaseStringUTFChars__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3372
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3373
HOTSPOT_JNI_RELEASESTRINGUTFCHARS_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3374
);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3375
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3376
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3379
JNI_QUICK_ENTRY(jsize, jni_GetArrayLength(JNIEnv *env, jarray array))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3380
  JNIWrapper("GetArrayLength");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3381
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3382
  DTRACE_PROBE2(hotspot_jni, GetArrayLength__entry, env, array);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3383
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3384
 HOTSPOT_JNI_GETARRAYLENGTH_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3385
                                  env, array);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3386
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3387
  arrayOop a = arrayOop(JNIHandles::resolve_non_null(array));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3388
  assert(a->is_array(), "must be array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3389
  jsize ret = a->length();
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3390
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3391
  DTRACE_PROBE1(hotspot_jni, GetArrayLength__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3392
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3393
 HOTSPOT_JNI_GETARRAYLENGTH_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3394
                                   ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3395
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3396
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3397
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3398
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
// Object Array Operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3403
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3404
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3405
DT_RETURN_MARK_DECL(NewObjectArray, jobjectArray);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3406
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3407
DT_RETURN_MARK_DECL(NewObjectArray, jobjectArray
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3408
                    , HOTSPOT_JNI_NEWOBJECTARRAY_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3409
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
JNI_ENTRY(jobjectArray, jni_NewObjectArray(JNIEnv *env, jsize length, jclass elementClass, jobject initialElement))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
  JNIWrapper("NewObjectArray");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3413
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
  DTRACE_PROBE4(hotspot_jni, NewObjectArray__entry, env, length, elementClass, initialElement);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3415
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3416
 HOTSPOT_JNI_NEWOBJECTARRAY_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3417
                                  env, length, elementClass, initialElement);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3418
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
  jobjectArray ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3420
  DT_RETURN_MARK(NewObjectArray, jobjectArray, (const jobjectArray&)ret);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3421
  KlassHandle ek(THREAD, java_lang_Class::as_Klass(JNIHandles::resolve_non_null(elementClass)));
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  3422
  Klass* ako = ek()->array_klass(CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
  KlassHandle ak = KlassHandle(THREAD, ako);
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  3424
  ObjArrayKlass::cast(ak())->initialize(CHECK_NULL);
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  3425
  objArrayOop result = ObjArrayKlass::cast(ak())->allocate(length, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
  oop initial_value = JNIHandles::resolve(initialElement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
  if (initial_value != NULL) {  // array already initialized with NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
    for (int index = 0; index < length; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
      result->obj_at_put(index, initial_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
  ret = (jobjectArray) JNIHandles::make_local(env, result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3435
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3436
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3437
DT_RETURN_MARK_DECL(GetObjectArrayElement, jobject);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3438
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3439
DT_RETURN_MARK_DECL(GetObjectArrayElement, jobject
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3440
                    , HOTSPOT_JNI_GETOBJECTARRAYELEMENT_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3441
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
JNI_ENTRY(jobject, jni_GetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
  JNIWrapper("GetObjectArrayElement");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3445
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
  DTRACE_PROBE3(hotspot_jni, GetObjectArrayElement__entry, env, array, index);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3447
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3448
 HOTSPOT_JNI_GETOBJECTARRAYELEMENT_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3449
                                         env, array, index);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3450
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
  jobject ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
  DT_RETURN_MARK(GetObjectArrayElement, jobject, (const jobject&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
  objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
  if (a->is_within_bounds(index)) {
4089
14bd2cd13a2c 6893483: DTrace probe return values for a couple JNI methods are wrong
kamg
parents: 3820
diff changeset
  3455
    ret = JNIHandles::make_local(env, a->obj_at(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3456
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3458
    char buf[jintAsStringSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3459
    sprintf(buf, "%d", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3460
    THROW_MSG_0(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3462
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3464
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
DT_VOID_RETURN_MARK_DECL(SetObjectArrayElement);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3466
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3467
DT_VOID_RETURN_MARK_DECL(SetObjectArrayElement
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3468
                         , HOTSPOT_JNI_SETOBJECTARRAYELEMENT_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3469
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3471
JNI_ENTRY(void, jni_SetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index, jobject value))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
  JNIWrapper("SetObjectArrayElement");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3473
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3474
  DTRACE_PROBE4(hotspot_jni, SetObjectArrayElement__entry, env, array, index, value);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3475
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3476
 HOTSPOT_JNI_SETOBJECTARRAYELEMENT_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3477
                                         env, array, index, value);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3478
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
  DT_VOID_RETURN_MARK(SetObjectArrayElement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
  objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
  oop v = JNIHandles::resolve(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
  if (a->is_within_bounds(index)) {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  3484
    if (v == NULL || v->is_a(ObjArrayKlass::cast(a->klass())->element_klass())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
      a->obj_at_put(index, v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
      THROW(vmSymbols::java_lang_ArrayStoreException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
    char buf[jintAsStringSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
    sprintf(buf, "%d", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
    THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3496
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3497
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
#define DEFINE_NEWSCALARARRAY(Return,Allocator,Result) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
\
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3500
  DT_RETURN_MARK_DECL(New##Result##Array, Return); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3501
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3502
JNI_ENTRY(Return, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
          jni_New##Result##Array(JNIEnv *env, jsize len)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
  JNIWrapper("New" XSTR(Result) "Array"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
  DTRACE_PROBE2(hotspot_jni, New##Result##Array__entry, env, len);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
  Return ret = NULL;\
4089
14bd2cd13a2c 6893483: DTrace probe return values for a couple JNI methods are wrong
kamg
parents: 3820
diff changeset
  3507
  DT_RETURN_MARK(New##Result##Array, Return, (const Return&)ret);\
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
  oop obj= oopFactory::Allocator(len, CHECK_0); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
  ret = (Return) JNIHandles::make_local(env, obj); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3511
  return ret;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3514
DEFINE_NEWSCALARARRAY(jbooleanArray, new_boolArray,   Boolean)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
DEFINE_NEWSCALARARRAY(jbyteArray,    new_byteArray,   Byte)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
DEFINE_NEWSCALARARRAY(jshortArray,   new_shortArray,  Short)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
DEFINE_NEWSCALARARRAY(jcharArray,    new_charArray,   Char)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3518
DEFINE_NEWSCALARARRAY(jintArray,     new_intArray,    Int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
DEFINE_NEWSCALARARRAY(jlongArray,    new_longArray,   Long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
DEFINE_NEWSCALARARRAY(jfloatArray,   new_singleArray, Float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
DEFINE_NEWSCALARARRAY(jdoubleArray,  new_doubleArray, Double)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3523
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3524
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3525
#define DEFINE_NEWSCALARARRAY(Return,Allocator,Result \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3526
                              ,EntryProbe,ReturnProbe)  \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3527
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3528
  DT_RETURN_MARK_DECL(New##Result##Array, Return \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3529
                      , ReturnProbe); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3530
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3531
JNI_ENTRY(Return, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3532
          jni_New##Result##Array(JNIEnv *env, jsize len)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3533
  JNIWrapper("New" XSTR(Result) "Array"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3534
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3535
  Return ret = NULL;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3536
  DT_RETURN_MARK(New##Result##Array, Return, (const Return&)ret);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3537
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3538
  oop obj= oopFactory::Allocator(len, CHECK_0); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3539
  ret = (Return) JNIHandles::make_local(env, obj); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3540
  return ret;\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3541
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3542
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3543
DEFINE_NEWSCALARARRAY(jbooleanArray, new_boolArray,   Boolean,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3544
                      HOTSPOT_JNI_NEWBOOLEANARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3545
                      HOTSPOT_JNI_NEWBOOLEANARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3546
DEFINE_NEWSCALARARRAY(jbyteArray,    new_byteArray,   Byte,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3547
                      HOTSPOT_JNI_NEWBYTEARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3548
                      HOTSPOT_JNI_NEWBYTEARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3549
DEFINE_NEWSCALARARRAY(jshortArray,   new_shortArray,  Short,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3550
                      HOTSPOT_JNI_NEWSHORTARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3551
                      HOTSPOT_JNI_NEWSHORTARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3552
DEFINE_NEWSCALARARRAY(jcharArray,    new_charArray,   Char,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3553
                      HOTSPOT_JNI_NEWCHARARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3554
                      HOTSPOT_JNI_NEWCHARARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3555
DEFINE_NEWSCALARARRAY(jintArray,     new_intArray,    Int,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3556
                      HOTSPOT_JNI_NEWINTARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3557
                      HOTSPOT_JNI_NEWINTARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3558
DEFINE_NEWSCALARARRAY(jlongArray,    new_longArray,   Long,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3559
                      HOTSPOT_JNI_NEWLONGARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3560
                      HOTSPOT_JNI_NEWLONGARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3561
DEFINE_NEWSCALARARRAY(jfloatArray,   new_singleArray, Float,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3562
                      HOTSPOT_JNI_NEWFLOATARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3563
                      HOTSPOT_JNI_NEWFLOATARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3564
DEFINE_NEWSCALARARRAY(jdoubleArray,  new_doubleArray, Double,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3565
                      HOTSPOT_JNI_NEWDOUBLEARRAY_ENTRY(env, len),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3566
                      HOTSPOT_JNI_NEWDOUBLEARRAY_RETURN(_ret_ref))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3567
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
// Return an address which will fault if the caller writes to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
static char* get_bad_address() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
  static char* bad_address = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
  if (bad_address == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
    size_t size = os::vm_allocation_granularity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
    bad_address = os::reserve_memory(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
    if (bad_address != NULL) {
1664
fc9ed50498fb 6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents: 823
diff changeset
  3577
      os::protect_memory(bad_address, size, os::MEM_PROT_READ,
fc9ed50498fb 6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents: 823
diff changeset
  3578
                         /*is_committed*/false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
  return bad_address;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3585
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
#define DEFINE_GETSCALARARRAYELEMENTS(ElementTag,ElementType,Result, Tag) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
JNI_QUICK_ENTRY(ElementType*, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
          jni_Get##Result##ArrayElements(JNIEnv *env, ElementType##Array array, jboolean *isCopy)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
  JNIWrapper("Get" XSTR(Result) "ArrayElements"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
  DTRACE_PROBE3(hotspot_jni, Get##Result##ArrayElements__entry, env, array, isCopy);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
  /* allocate an chunk of memory in c land */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
  typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
  ElementType* result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
  int len = a->length(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
  if (len == 0) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
    /* Empty array: legal but useless, can't return NULL. \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
     * Return a pointer to something useless. \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3599
     * Avoid asserts in typeArrayOop. */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3600
    result = (ElementType*)get_bad_address(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3601
  } else { \
19545
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3602
    /* JNI Specification states return NULL on OOM */                    \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3603
    result = NEW_C_HEAP_ARRAY_RETURN_NULL(ElementType, len, mtInternal); \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3604
    if (result != NULL) {                                                \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3605
      /* copy the array to the c chunk */                                \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3606
      memcpy(result, a->Tag##_at_addr(0), sizeof(ElementType)*len);      \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3607
      if (isCopy) {                                                      \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3608
        *isCopy = JNI_TRUE;                                              \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3609
      }                                                                  \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3610
    }                                                                    \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
  DTRACE_PROBE1(hotspot_jni, Get##Result##ArrayElements__return, result);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
  return result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
DEFINE_GETSCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
DEFINE_GETSCALARARRAYELEMENTS(T_BYTE,    jbyte,    Byte,    byte)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
DEFINE_GETSCALARARRAYELEMENTS(T_SHORT,   jshort,   Short,   short)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
DEFINE_GETSCALARARRAYELEMENTS(T_CHAR,    jchar,    Char,    char)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
DEFINE_GETSCALARARRAYELEMENTS(T_INT,     jint,     Int,     int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
DEFINE_GETSCALARARRAYELEMENTS(T_LONG,    jlong,    Long,    long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
DEFINE_GETSCALARARRAYELEMENTS(T_FLOAT,   jfloat,   Float,   float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
DEFINE_GETSCALARARRAYELEMENTS(T_DOUBLE,  jdouble,  Double,  double)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3625
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3626
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3627
#define DEFINE_GETSCALARARRAYELEMENTS(ElementTag,ElementType,Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3628
                                      , EntryProbe, ReturnProbe) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3629
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3630
JNI_QUICK_ENTRY(ElementType*, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3631
          jni_Get##Result##ArrayElements(JNIEnv *env, ElementType##Array array, jboolean *isCopy)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3632
  JNIWrapper("Get" XSTR(Result) "ArrayElements"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3633
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3634
  /* allocate an chunk of memory in c land */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3635
  typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3636
  ElementType* result; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3637
  int len = a->length(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3638
  if (len == 0) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3639
    /* Empty array: legal but useless, can't return NULL. \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3640
     * Return a pointer to something useless. \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3641
     * Avoid asserts in typeArrayOop. */ \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3642
    result = (ElementType*)get_bad_address(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3643
  } else { \
19545
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3644
    /* JNI Specification states return NULL on OOM */                    \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3645
    result = NEW_C_HEAP_ARRAY_RETURN_NULL(ElementType, len, mtInternal); \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3646
    if (result != NULL) {                                                \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3647
      /* copy the array to the c chunk */                                \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3648
      memcpy(result, a->Tag##_at_addr(0), sizeof(ElementType)*len);      \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3649
      if (isCopy) {                                                      \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3650
        *isCopy = JNI_TRUE;                                              \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3651
      }                                                                  \
409c50cf1e5d 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 18683
diff changeset
  3652
    }                                                                    \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3653
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3654
  ReturnProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3655
  return result; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3656
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3657
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3658
DEFINE_GETSCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3659
                              , HOTSPOT_JNI_GETBOOLEANARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3660
                              HOTSPOT_JNI_GETBOOLEANARRAYELEMENTS_RETURN((uintptr_t*)result))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3661
DEFINE_GETSCALARARRAYELEMENTS(T_BYTE,    jbyte,    Byte,    byte
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3662
                              , HOTSPOT_JNI_GETBYTEARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3663
                              HOTSPOT_JNI_GETBYTEARRAYELEMENTS_RETURN((char*)result))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3664
DEFINE_GETSCALARARRAYELEMENTS(T_SHORT,   jshort,   Short,   short
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3665
                              , HOTSPOT_JNI_GETSHORTARRAYELEMENTS_ENTRY(env, (uint16_t*) array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3666
                              HOTSPOT_JNI_GETSHORTARRAYELEMENTS_RETURN((uint16_t*)result))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3667
DEFINE_GETSCALARARRAYELEMENTS(T_CHAR,    jchar,    Char,    char
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3668
                              , HOTSPOT_JNI_GETCHARARRAYELEMENTS_ENTRY(env, (uint16_t*) array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3669
                              HOTSPOT_JNI_GETCHARARRAYELEMENTS_RETURN(result))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3670
DEFINE_GETSCALARARRAYELEMENTS(T_INT,     jint,     Int,     int
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3671
                              , HOTSPOT_JNI_GETINTARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3672
                              HOTSPOT_JNI_GETINTARRAYELEMENTS_RETURN((uint32_t*)result))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3673
DEFINE_GETSCALARARRAYELEMENTS(T_LONG,    jlong,    Long,    long
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3674
                              , HOTSPOT_JNI_GETLONGARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3675
                              HOTSPOT_JNI_GETLONGARRAYELEMENTS_RETURN(((uintptr_t*)result)))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3676
// Float and double probes don't return value because dtrace doesn't currently support it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3677
DEFINE_GETSCALARARRAYELEMENTS(T_FLOAT,   jfloat,   Float,   float
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3678
                              , HOTSPOT_JNI_GETFLOATARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3679
                              HOTSPOT_JNI_GETFLOATARRAYELEMENTS_RETURN(result))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3680
DEFINE_GETSCALARARRAYELEMENTS(T_DOUBLE,  jdouble,  Double,  double
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3681
                              , HOTSPOT_JNI_GETDOUBLEARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3682
                              HOTSPOT_JNI_GETDOUBLEARRAYELEMENTS_RETURN(result))
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3683
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3684
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3685
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
#define DEFINE_RELEASESCALARARRAYELEMENTS(ElementTag,ElementType,Result,Tag) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3688
JNI_QUICK_ENTRY(void, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3689
          jni_Release##Result##ArrayElements(JNIEnv *env, ElementType##Array array, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
                                             ElementType *buf, jint mode)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
  JNIWrapper("Release" XSTR(Result) "ArrayElements"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
  DTRACE_PROBE4(hotspot_jni, Release##Result##ArrayElements__entry, env, array, buf, mode);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
  typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
  int len = a->length(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
  if (len != 0) {   /* Empty array:  nothing to free or copy. */  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
    if ((mode == 0) || (mode == JNI_COMMIT)) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3697
      memcpy(a->Tag##_at_addr(0), buf, sizeof(ElementType)*len); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3698
    } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3699
    if ((mode == 0) || (mode == JNI_ABORT)) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3700
      FreeHeap(buf); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3701
    } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3702
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
  DTRACE_PROBE(hotspot_jni, Release##Result##ArrayElements__return);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3704
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
DEFINE_RELEASESCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3707
DEFINE_RELEASESCALARARRAYELEMENTS(T_BYTE,    jbyte,    Byte,    byte)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
DEFINE_RELEASESCALARARRAYELEMENTS(T_SHORT,   jshort,   Short,   short)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3709
DEFINE_RELEASESCALARARRAYELEMENTS(T_CHAR,    jchar,    Char,    char)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3710
DEFINE_RELEASESCALARARRAYELEMENTS(T_INT,     jint,     Int,     int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3711
DEFINE_RELEASESCALARARRAYELEMENTS(T_LONG,    jlong,    Long,    long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3712
DEFINE_RELEASESCALARARRAYELEMENTS(T_FLOAT,   jfloat,   Float,   float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3713
DEFINE_RELEASESCALARARRAYELEMENTS(T_DOUBLE,  jdouble,  Double,  double)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3714
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3715
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3716
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3717
#define DEFINE_RELEASESCALARARRAYELEMENTS(ElementTag,ElementType,Result,Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3718
                                          , EntryProbe, ReturnProbe);\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3719
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3720
JNI_QUICK_ENTRY(void, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3721
          jni_Release##Result##ArrayElements(JNIEnv *env, ElementType##Array array, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3722
                                             ElementType *buf, jint mode)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3723
  JNIWrapper("Release" XSTR(Result) "ArrayElements"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3724
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3725
  typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3726
  int len = a->length(); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3727
  if (len != 0) {   /* Empty array:  nothing to free or copy. */  \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3728
    if ((mode == 0) || (mode == JNI_COMMIT)) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3729
      memcpy(a->Tag##_at_addr(0), buf, sizeof(ElementType)*len); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3730
    } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3731
    if ((mode == 0) || (mode == JNI_ABORT)) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3732
      FreeHeap(buf); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3733
    } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3734
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3735
  ReturnProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3736
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3737
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3738
DEFINE_RELEASESCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3739
                                  , HOTSPOT_JNI_RELEASEBOOLEANARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3740
                                  HOTSPOT_JNI_RELEASEBOOLEANARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3741
DEFINE_RELEASESCALARARRAYELEMENTS(T_BYTE,    jbyte,    Byte,    byte
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3742
                                  , HOTSPOT_JNI_RELEASEBYTEARRAYELEMENTS_ENTRY(env, array, (char *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3743
                                  HOTSPOT_JNI_RELEASEBYTEARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3744
DEFINE_RELEASESCALARARRAYELEMENTS(T_SHORT,   jshort,   Short,   short
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3745
                                  ,  HOTSPOT_JNI_RELEASESHORTARRAYELEMENTS_ENTRY(env, array, (uint16_t *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3746
                                  HOTSPOT_JNI_RELEASESHORTARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3747
DEFINE_RELEASESCALARARRAYELEMENTS(T_CHAR,    jchar,    Char,    char
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3748
                                  ,  HOTSPOT_JNI_RELEASECHARARRAYELEMENTS_ENTRY(env, array, (uint16_t *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3749
                                  HOTSPOT_JNI_RELEASECHARARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3750
DEFINE_RELEASESCALARARRAYELEMENTS(T_INT,     jint,     Int,     int
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3751
                                  , HOTSPOT_JNI_RELEASEINTARRAYELEMENTS_ENTRY(env, array, (uint32_t *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3752
                                  HOTSPOT_JNI_RELEASEINTARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3753
DEFINE_RELEASESCALARARRAYELEMENTS(T_LONG,    jlong,    Long,    long
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3754
                                  , HOTSPOT_JNI_RELEASELONGARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3755
                                  HOTSPOT_JNI_RELEASELONGARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3756
DEFINE_RELEASESCALARARRAYELEMENTS(T_FLOAT,   jfloat,   Float,   float
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3757
                                  , HOTSPOT_JNI_RELEASEFLOATARRAYELEMENTS_ENTRY(env, array, (float *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3758
                                  HOTSPOT_JNI_RELEASEFLOATARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3759
DEFINE_RELEASESCALARARRAYELEMENTS(T_DOUBLE,  jdouble,  Double,  double
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3760
                                  , HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_ENTRY(env, array, (double *) buf, mode),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3761
                                  HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3762
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3763
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3764
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
#define DEFINE_GETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
  DT_VOID_RETURN_MARK_DECL(Get##Result##ArrayRegion);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
JNI_ENTRY(void, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
jni_Get##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3770
             jsize len, ElementType *buf)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3771
  JNIWrapper("Get" XSTR(Result) "ArrayRegion"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
  DTRACE_PROBE5(hotspot_jni, Get##Result##ArrayRegion__entry, env, array, start, len, buf);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
  DT_VOID_RETURN_MARK(Get##Result##ArrayRegion); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
  typeArrayOop src = typeArrayOop(JNIHandles::resolve_non_null(array)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
  if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)src->length())) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3776
    THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
  } else { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
    if (len > 0) { \
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  3779
      int sc = TypeArrayKlass::cast(src->klass())->log2_element_size(); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
      memcpy((u_char*) buf, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
             (u_char*) src->Tag##_at_addr(start), \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3782
             len << sc);                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3783
    } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3784
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3785
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3786
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
DEFINE_GETSCALARARRAYREGION(T_BOOLEAN, jboolean,Boolean, bool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3788
DEFINE_GETSCALARARRAYREGION(T_BYTE,    jbyte,   Byte,    byte)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3789
DEFINE_GETSCALARARRAYREGION(T_SHORT,   jshort,  Short,   short)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3790
DEFINE_GETSCALARARRAYREGION(T_CHAR,    jchar,   Char,    char)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
DEFINE_GETSCALARARRAYREGION(T_INT,     jint,    Int,     int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
DEFINE_GETSCALARARRAYREGION(T_LONG,    jlong,   Long,    long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3793
DEFINE_GETSCALARARRAYREGION(T_FLOAT,   jfloat,  Float,   float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3794
DEFINE_GETSCALARARRAYREGION(T_DOUBLE,  jdouble, Double,  double)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3795
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3796
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3797
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3798
#define DEFINE_GETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3799
                                    , EntryProbe, ReturnProbe); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3800
  DT_VOID_RETURN_MARK_DECL(Get##Result##ArrayRegion \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3801
                           , ReturnProbe); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3802
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3803
JNI_ENTRY(void, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3804
jni_Get##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3805
             jsize len, ElementType *buf)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3806
  JNIWrapper("Get" XSTR(Result) "ArrayRegion"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3807
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3808
  DT_VOID_RETURN_MARK(Get##Result##ArrayRegion); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3809
  typeArrayOop src = typeArrayOop(JNIHandles::resolve_non_null(array)); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3810
  if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)src->length())) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3811
    THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3812
  } else { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3813
    if (len > 0) { \
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  3814
      int sc = TypeArrayKlass::cast(src->klass())->log2_element_size(); \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3815
      memcpy((u_char*) buf, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3816
             (u_char*) src->Tag##_at_addr(start), \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3817
             len << sc);                          \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3818
    } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3819
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3820
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3821
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3822
DEFINE_GETSCALARARRAYREGION(T_BOOLEAN, jboolean,Boolean, bool
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3823
                            , HOTSPOT_JNI_GETBOOLEANARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3824
                            HOTSPOT_JNI_GETBOOLEANARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3825
DEFINE_GETSCALARARRAYREGION(T_BYTE,    jbyte,   Byte,    byte
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3826
                            ,  HOTSPOT_JNI_GETBYTEARRAYREGION_ENTRY(env, array, start, len, (char *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3827
                            HOTSPOT_JNI_GETBYTEARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3828
DEFINE_GETSCALARARRAYREGION(T_SHORT,   jshort,  Short,   short
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3829
                            , HOTSPOT_JNI_GETSHORTARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3830
                            HOTSPOT_JNI_GETSHORTARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3831
DEFINE_GETSCALARARRAYREGION(T_CHAR,    jchar,   Char,    char
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3832
                            ,  HOTSPOT_JNI_GETCHARARRAYREGION_ENTRY(env, array, start, len, (uint16_t*) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3833
                            HOTSPOT_JNI_GETCHARARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3834
DEFINE_GETSCALARARRAYREGION(T_INT,     jint,    Int,     int
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3835
                            , HOTSPOT_JNI_GETINTARRAYREGION_ENTRY(env, array, start, len, (uint32_t*) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3836
                            HOTSPOT_JNI_GETINTARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3837
DEFINE_GETSCALARARRAYREGION(T_LONG,    jlong,   Long,    long
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3838
                            ,  HOTSPOT_JNI_GETLONGARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3839
                            HOTSPOT_JNI_GETLONGARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3840
DEFINE_GETSCALARARRAYREGION(T_FLOAT,   jfloat,  Float,   float
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3841
                            , HOTSPOT_JNI_GETFLOATARRAYREGION_ENTRY(env, array, start, len, (float *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3842
                            HOTSPOT_JNI_GETFLOATARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3843
DEFINE_GETSCALARARRAYREGION(T_DOUBLE,  jdouble, Double,  double
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3844
                            , HOTSPOT_JNI_GETDOUBLEARRAYREGION_ENTRY(env, array, start, len, (double *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3845
                            HOTSPOT_JNI_GETDOUBLEARRAYREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3846
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3847
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3848
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3849
#define DEFINE_SETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3850
  DT_VOID_RETURN_MARK_DECL(Set##Result##ArrayRegion);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
JNI_ENTRY(void, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
jni_Set##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
             jsize len, const ElementType *buf)) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
  JNIWrapper("Set" XSTR(Result) "ArrayRegion"); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
  DTRACE_PROBE5(hotspot_jni, Set##Result##ArrayRegion__entry, env, array, start, len, buf);\
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
  DT_VOID_RETURN_MARK(Set##Result##ArrayRegion); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
  typeArrayOop dst = typeArrayOop(JNIHandles::resolve_non_null(array)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
  if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)dst->length())) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
    THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
  } else { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
    if (len > 0) { \
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  3863
      int sc = TypeArrayKlass::cast(dst->klass())->log2_element_size(); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3864
      memcpy((u_char*) dst->Tag##_at_addr(start), \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
             (u_char*) buf, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
             len << sc);    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
    } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
DEFINE_SETSCALARARRAYREGION(T_BOOLEAN, jboolean, Boolean, bool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
DEFINE_SETSCALARARRAYREGION(T_BYTE,    jbyte,    Byte,    byte)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3873
DEFINE_SETSCALARARRAYREGION(T_SHORT,   jshort,   Short,   short)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
DEFINE_SETSCALARARRAYREGION(T_CHAR,    jchar,    Char,    char)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
DEFINE_SETSCALARARRAYREGION(T_INT,     jint,     Int,     int)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
DEFINE_SETSCALARARRAYREGION(T_LONG,    jlong,    Long,    long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
DEFINE_SETSCALARARRAYREGION(T_FLOAT,   jfloat,   Float,   float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
DEFINE_SETSCALARARRAYREGION(T_DOUBLE,  jdouble,  Double,  double)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3880
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3881
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3882
#define DEFINE_SETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3883
                                    , EntryProbe, ReturnProbe); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3884
  DT_VOID_RETURN_MARK_DECL(Set##Result##ArrayRegion \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3885
                           ,ReturnProbe);           \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3886
\
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3887
JNI_ENTRY(void, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3888
jni_Set##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3889
             jsize len, const ElementType *buf)) \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3890
  JNIWrapper("Set" XSTR(Result) "ArrayRegion"); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3891
  EntryProbe; \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3892
  DT_VOID_RETURN_MARK(Set##Result##ArrayRegion); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3893
  typeArrayOop dst = typeArrayOop(JNIHandles::resolve_non_null(array)); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3894
  if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)dst->length())) { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3895
    THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3896
  } else { \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3897
    if (len > 0) { \
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  3898
      int sc = TypeArrayKlass::cast(dst->klass())->log2_element_size(); \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3899
      memcpy((u_char*) dst->Tag##_at_addr(start), \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3900
             (u_char*) buf, \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3901
             len << sc);    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3902
    } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3903
  } \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3904
JNI_END
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3905
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3906
DEFINE_SETSCALARARRAYREGION(T_BOOLEAN, jboolean, Boolean, bool
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3907
                            , HOTSPOT_JNI_SETBOOLEANARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *)buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3908
                            HOTSPOT_JNI_SETBOOLEANARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3909
DEFINE_SETSCALARARRAYREGION(T_BYTE,    jbyte,    Byte,    byte
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3910
                            , HOTSPOT_JNI_SETBYTEARRAYREGION_ENTRY(env, array, start, len, (char *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3911
                            HOTSPOT_JNI_SETBYTEARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3912
DEFINE_SETSCALARARRAYREGION(T_SHORT,   jshort,   Short,   short
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3913
                            , HOTSPOT_JNI_SETSHORTARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3914
                            HOTSPOT_JNI_SETSHORTARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3915
DEFINE_SETSCALARARRAYREGION(T_CHAR,    jchar,    Char,    char
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3916
                            , HOTSPOT_JNI_SETCHARARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3917
                            HOTSPOT_JNI_SETCHARARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3918
DEFINE_SETSCALARARRAYREGION(T_INT,     jint,     Int,     int
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3919
                            , HOTSPOT_JNI_SETINTARRAYREGION_ENTRY(env, array, start, len, (uint32_t *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3920
                            HOTSPOT_JNI_SETINTARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3921
DEFINE_SETSCALARARRAYREGION(T_LONG,    jlong,    Long,    long
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3922
                            , HOTSPOT_JNI_SETLONGARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3923
                            HOTSPOT_JNI_SETLONGARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3924
DEFINE_SETSCALARARRAYREGION(T_FLOAT,   jfloat,   Float,   float
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3925
                            , HOTSPOT_JNI_SETFLOATARRAYREGION_ENTRY(env, array, start, len, (float *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3926
                            HOTSPOT_JNI_SETFLOATARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3927
DEFINE_SETSCALARARRAYREGION(T_DOUBLE,  jdouble,  Double,  double
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3928
                            , HOTSPOT_JNI_SETDOUBLEARRAYREGION_ENTRY(env, array, start, len, (double *) buf),
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3929
                            HOTSPOT_JNI_SETDOUBLEARRAYREGION_RETURN())
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3930
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  3931
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
// Interception of natives
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3935
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
// The RegisterNatives call being attempted tried to register with a method that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
// is not native.  Ask JVM TI what prefixes have been specified.  Then check
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
// to see if the native method is now wrapped with the prefixes.  See the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
// SetNativeMethodPrefix(es) functions in the JVM TI Spec for details.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3941
static Method* find_prefixed_native(KlassHandle k,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  3942
                                      Symbol* name, Symbol* signature, TRAPS) {
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
  3943
#if INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
  ResourceMark rm(THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3945
  Method* method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
  int name_len = name->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
  char* name_str = name->as_utf8();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
  int prefix_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3949
  char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3950
  for (int i = 0; i < prefix_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
    char* prefix = prefixes[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
    int prefix_len = (int)strlen(prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3953
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3954
    // try adding this prefix to the method name and see if it matches another method name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3955
    int trial_len = name_len + prefix_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3956
    char* trial_name_str = NEW_RESOURCE_ARRAY(char, trial_len + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3957
    strcpy(trial_name_str, prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
    strcat(trial_name_str, name_str);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  3959
    TempNewSymbol trial_name = SymbolTable::probe(trial_name_str, trial_len);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  3960
    if (trial_name == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3961
      continue; // no such symbol, so this prefix wasn't used, try the next prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3962
    }
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  3963
    method = k()->lookup_method(trial_name, signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3964
    if (method == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3965
      continue; // signature doesn't match, try the next prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3966
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3967
    if (method->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3968
      method->set_is_prefixed_native();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3969
      return method; // wahoo, we found a prefixed version of the method, return it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3970
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3971
    // found as non-native, so prefix is good, add it, probably just need more prefixes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3972
    name_len = trial_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3973
    name_str = trial_name_str;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3974
  }
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
  3975
#endif // INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3976
  return NULL; // not found
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3977
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3978
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  3979
static bool register_native(KlassHandle k, Symbol* name, Symbol* signature, address entry, TRAPS) {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  3980
  Method* method = k()->lookup_method(name, signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3981
  if (method == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3982
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3983
    stringStream st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3984
    st.print("Method %s name or signature does not match",
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  3985
             Method::name_and_sig_as_C_string(k(), name, signature));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3986
    THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3987
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3988
  if (!method->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3989
    // trying to register to a non-native method, see if a JVM TI agent has added prefix(es)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3990
    method = find_prefixed_native(k, name, signature, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3991
    if (method == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3992
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3993
      stringStream st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
      st.print("Method %s is not declared as native",
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  3995
               Method::name_and_sig_as_C_string(k(), name, signature));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
      THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4000
  if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
    method->set_native_function(entry,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4002
      Method::native_bind_event_is_interesting);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4003
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4004
    method->clear_native_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4005
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4006
  if (PrintJNIResolving) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4007
    ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4008
    tty->print_cr("[Registering JNI native method %s.%s]",
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13977
diff changeset
  4009
      method->method_holder()->external_name(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4010
      method->name()->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4011
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4012
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4013
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4014
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4015
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4016
DT_RETURN_MARK_DECL(RegisterNatives, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4017
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4018
DT_RETURN_MARK_DECL(RegisterNatives, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4019
                    , HOTSPOT_JNI_REGISTERNATIVES_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4020
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
JNI_ENTRY(jint, jni_RegisterNatives(JNIEnv *env, jclass clazz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4023
                                    const JNINativeMethod *methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4024
                                    jint nMethods))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
  JNIWrapper("RegisterNatives");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4026
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
  DTRACE_PROBE4(hotspot_jni, RegisterNatives__entry, env, clazz, methods, nMethods);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4028
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4029
  HOTSPOT_JNI_REGISTERNATIVES_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4030
                                    env, clazz, (void *) methods, nMethods);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4031
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4032
  jint ret = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4033
  DT_RETURN_MARK(RegisterNatives, jint, (const jint&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4034
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4035
  KlassHandle h_k(thread, java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4037
  for (int index = 0; index < nMethods; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4038
    const char* meth_name = methods[index].name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4039
    const char* meth_sig = methods[index].signature;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4040
    int meth_name_len = (int)strlen(meth_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4042
    // The class should have been loaded (we have an instance of the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
    // passed in) so the method and signature should already be in the symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4044
    // table.  If they're not there, the method doesn't exist.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  4045
    TempNewSymbol  name = SymbolTable::probe(meth_name, meth_name_len);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  4046
    TempNewSymbol  signature = SymbolTable::probe(meth_sig, (int)strlen(meth_sig));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  4047
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  4048
    if (name == NULL || signature == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4049
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4050
      stringStream st;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  4051
      st.print("Method %s.%s%s not found", h_k()->external_name(), meth_name, meth_sig);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4052
      // Must return negative value on failure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4053
      THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4054
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4056
    bool res = register_native(h_k, name, signature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4057
                               (address) methods[index].fnPtr, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4058
    if (!res) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4059
      ret = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4060
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4061
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4062
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4063
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4064
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4067
JNI_ENTRY(jint, jni_UnregisterNatives(JNIEnv *env, jclass clazz))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4068
  JNIWrapper("UnregisterNatives");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4069
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4070
  DTRACE_PROBE2(hotspot_jni, UnregisterNatives__entry, env, clazz);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4071
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4072
 HOTSPOT_JNI_UNREGISTERNATIVES_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4073
                                     env, clazz);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4074
#endif /* USDT2 */
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4075
  Klass* k   = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
  //%note jni_2
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
  4077
  if (k->oop_is_instance()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4078
    for (int index = 0; index < InstanceKlass::cast(k)->methods()->length(); index++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4079
      Method* m = InstanceKlass::cast(k)->methods()->at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4080
      if (m->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4081
        m->clear_native_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4082
        m->set_signature_handler(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4083
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4084
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4085
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4086
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4087
  DTRACE_PROBE1(hotspot_jni, UnregisterNatives__return, 0);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4088
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4089
 HOTSPOT_JNI_UNREGISTERNATIVES_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4090
                                      0);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4091
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4092
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4093
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4096
// Monitor functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4097
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4098
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4099
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4100
DT_RETURN_MARK_DECL(MonitorEnter, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4101
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4102
DT_RETURN_MARK_DECL(MonitorEnter, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4103
                    , HOTSPOT_JNI_MONITORENTER_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4104
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4106
JNI_ENTRY(jint, jni_MonitorEnter(JNIEnv *env, jobject jobj))
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4107
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4108
  DTRACE_PROBE2(hotspot_jni, MonitorEnter__entry, env, jobj);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4109
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4110
 HOTSPOT_JNI_MONITORENTER_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4111
                                env, jobj);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4112
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
  jint ret = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
  DT_RETURN_MARK(MonitorEnter, jint, (const jint&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4116
  // If the object is null, we can't do anything with it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
  if (jobj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
    THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4121
  Handle obj(thread, JNIHandles::resolve_non_null(jobj));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
  ObjectSynchronizer::jni_enter(obj, CHECK_(JNI_ERR));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
  ret = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4124
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4127
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4128
DT_RETURN_MARK_DECL(MonitorExit, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4129
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4130
DT_RETURN_MARK_DECL(MonitorExit, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4131
                    , HOTSPOT_JNI_MONITOREXIT_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4132
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4134
JNI_ENTRY(jint, jni_MonitorExit(JNIEnv *env, jobject jobj))
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4135
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4136
  DTRACE_PROBE2(hotspot_jni, MonitorExit__entry, env, jobj);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4137
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4138
 HOTSPOT_JNI_MONITOREXIT_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4139
                               env, jobj);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4140
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4141
  jint ret = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4142
  DT_RETURN_MARK(MonitorExit, jint, (const jint&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4143
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4144
  // Don't do anything with a null object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
  if (jobj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4146
    THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4149
  Handle obj(THREAD, JNIHandles::resolve_non_null(jobj));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4150
  ObjectSynchronizer::jni_exit(obj(), CHECK_(JNI_ERR));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4151
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4152
  ret = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4153
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4154
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
// Extensions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4159
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4160
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4161
DT_VOID_RETURN_MARK_DECL(GetStringRegion);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4162
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4163
DT_VOID_RETURN_MARK_DECL(GetStringRegion
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4164
                         , HOTSPOT_JNI_GETSTRINGREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4165
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4166
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
JNI_ENTRY(void, jni_GetStringRegion(JNIEnv *env, jstring string, jsize start, jsize len, jchar *buf))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
  JNIWrapper("GetStringRegion");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4169
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4170
  DTRACE_PROBE5(hotspot_jni, GetStringRegion__entry, env, string, start, len, buf);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4171
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4172
 HOTSPOT_JNI_GETSTRINGREGION_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4173
                                   env, string, start, len, buf);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4174
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4175
  DT_VOID_RETURN_MARK(GetStringRegion);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4176
  oop s = JNIHandles::resolve_non_null(string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4177
  int s_len = java_lang_String::length(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4178
  if (start < 0 || len < 0 || start + len > s_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4179
    THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4180
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4181
    if (len > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4182
      int s_offset = java_lang_String::offset(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4183
      typeArrayOop s_value = java_lang_String::value(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
      memcpy(buf, s_value->char_at_addr(s_offset+start), sizeof(jchar)*len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4188
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4189
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4190
DT_VOID_RETURN_MARK_DECL(GetStringUTFRegion);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4191
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4192
DT_VOID_RETURN_MARK_DECL(GetStringUTFRegion
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4193
                         , HOTSPOT_JNI_GETSTRINGUTFREGION_RETURN());
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4194
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4196
JNI_ENTRY(void, jni_GetStringUTFRegion(JNIEnv *env, jstring string, jsize start, jsize len, char *buf))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4197
  JNIWrapper("GetStringUTFRegion");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4198
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4199
  DTRACE_PROBE5(hotspot_jni, GetStringUTFRegion__entry, env, string, start, len, buf);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4200
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4201
 HOTSPOT_JNI_GETSTRINGUTFREGION_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4202
                                      env, string, start, len, buf);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4203
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
  DT_VOID_RETURN_MARK(GetStringUTFRegion);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
  oop s = JNIHandles::resolve_non_null(string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
  int s_len = java_lang_String::length(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4207
  if (start < 0 || len < 0 || start + len > s_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4208
    THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4209
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
    //%note jni_7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
    if (len > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4212
      ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4213
      char *utf_region = java_lang_String::as_utf8_string(s, start, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
      int utf_len = (int)strlen(utf_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
      memcpy(buf, utf_region, utf_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
      buf[utf_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4218
      // JDK null-terminates the buffer even in len is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4219
      if (buf != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4220
        buf[0] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4221
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4222
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4224
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4227
JNI_ENTRY(void*, jni_GetPrimitiveArrayCritical(JNIEnv *env, jarray array, jboolean *isCopy))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4228
  JNIWrapper("GetPrimitiveArrayCritical");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4229
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
  DTRACE_PROBE3(hotspot_jni, GetPrimitiveArrayCritical__entry, env, array, isCopy);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4231
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4232
 HOTSPOT_JNI_GETPRIMITIVEARRAYCRITICAL_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4233
                                             env, array, (uintptr_t *) isCopy);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4234
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4235
  GC_locker::lock_critical(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4236
  if (isCopy != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4237
    *isCopy = JNI_FALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4239
  oop a = JNIHandles::resolve_non_null(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
  assert(a->is_array(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4241
  BasicType type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
  if (a->is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
    type = T_OBJECT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
  } else {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  4245
    type = TypeArrayKlass::cast(a->klass())->element_type();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
  void* ret = arrayOop(a)->base(type);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4248
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
  DTRACE_PROBE1(hotspot_jni, GetPrimitiveArrayCritical__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4250
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4251
 HOTSPOT_JNI_GETPRIMITIVEARRAYCRITICAL_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4252
                                              ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4253
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4254
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4258
JNI_ENTRY(void, jni_ReleasePrimitiveArrayCritical(JNIEnv *env, jarray array, void *carray, jint mode))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
  JNIWrapper("ReleasePrimitiveArrayCritical");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4260
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
  DTRACE_PROBE4(hotspot_jni, ReleasePrimitiveArrayCritical__entry, env, array, carray, mode);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4262
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4263
  HOTSPOT_JNI_RELEASEPRIMITIVEARRAYCRITICAL_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4264
                                                  env, array, carray, mode);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4265
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4266
  // The array, carray and mode arguments are ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
  GC_locker::unlock_critical(thread);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4268
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4269
  DTRACE_PROBE(hotspot_jni, ReleasePrimitiveArrayCritical__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4270
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4271
HOTSPOT_JNI_RELEASEPRIMITIVEARRAYCRITICAL_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4272
);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4273
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
JNI_ENTRY(const jchar*, jni_GetStringCritical(JNIEnv *env, jstring string, jboolean *isCopy))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
  JNIWrapper("GetStringCritical");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4279
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
  DTRACE_PROBE3(hotspot_jni, GetStringCritical__entry, env, string, isCopy);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4281
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4282
  HOTSPOT_JNI_GETSTRINGCRITICAL_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4283
                                      env, string, (uintptr_t *) isCopy);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4284
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4285
  GC_locker::lock_critical(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4286
  if (isCopy != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4287
    *isCopy = JNI_FALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4288
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4289
  oop s = JNIHandles::resolve_non_null(string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4290
  int s_len = java_lang_String::length(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4291
  typeArrayOop s_value = java_lang_String::value(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4292
  int s_offset = java_lang_String::offset(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4293
  const jchar* ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4294
  if (s_len > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4295
    ret = s_value->char_at_addr(s_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4296
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4297
    ret = (jchar*) s_value->base(T_CHAR);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4298
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4299
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4300
  DTRACE_PROBE1(hotspot_jni, GetStringCritical__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4301
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4302
 HOTSPOT_JNI_GETSTRINGCRITICAL_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4303
                                      (uint16_t *) ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4304
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4305
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4306
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4307
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4309
JNI_ENTRY(void, jni_ReleaseStringCritical(JNIEnv *env, jstring str, const jchar *chars))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4310
  JNIWrapper("ReleaseStringCritical");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4311
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4312
  DTRACE_PROBE3(hotspot_jni, ReleaseStringCritical__entry, env, str, chars);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4313
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4314
  HOTSPOT_JNI_RELEASESTRINGCRITICAL_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4315
                                          env, str, (uint16_t *) chars);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4316
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4317
  // The str and chars arguments are ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4318
  GC_locker::unlock_critical(thread);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4319
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4320
  DTRACE_PROBE(hotspot_jni, ReleaseStringCritical__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4321
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4322
HOTSPOT_JNI_RELEASESTRINGCRITICAL_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4323
);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4324
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4325
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4327
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4328
JNI_ENTRY(jweak, jni_NewWeakGlobalRef(JNIEnv *env, jobject ref))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4329
  JNIWrapper("jni_NewWeakGlobalRef");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4330
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4331
  DTRACE_PROBE2(hotspot_jni, NewWeakGlobalRef__entry, env, ref);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4332
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4333
 HOTSPOT_JNI_NEWWEAKGLOBALREF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4334
                                    env, ref);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4335
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4336
  Handle ref_handle(thread, JNIHandles::resolve(ref));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4337
  jweak ret = JNIHandles::make_weak_global(ref_handle);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4338
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4339
  DTRACE_PROBE1(hotspot_jni, NewWeakGlobalRef__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4340
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4341
 HOTSPOT_JNI_NEWWEAKGLOBALREF_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4342
                                     ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4343
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4344
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4345
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4346
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4347
// Must be JNI_ENTRY (with HandleMark)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4348
JNI_ENTRY(void, jni_DeleteWeakGlobalRef(JNIEnv *env, jweak ref))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4349
  JNIWrapper("jni_DeleteWeakGlobalRef");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4350
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4351
  DTRACE_PROBE2(hotspot_jni, DeleteWeakGlobalRef__entry, env, ref);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4352
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4353
  HOTSPOT_JNI_DELETEWEAKGLOBALREF_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4354
                                        env, ref);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4355
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4356
  JNIHandles::destroy_weak_global(ref);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4357
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4358
  DTRACE_PROBE(hotspot_jni, DeleteWeakGlobalRef__return);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4359
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4360
  HOTSPOT_JNI_DELETEWEAKGLOBALREF_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4361
                                         );
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4362
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4363
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4365
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4366
JNI_QUICK_ENTRY(jboolean, jni_ExceptionCheck(JNIEnv *env))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4367
  JNIWrapper("jni_ExceptionCheck");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4368
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4369
  DTRACE_PROBE1(hotspot_jni, ExceptionCheck__entry, env);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4370
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4371
 HOTSPOT_JNI_EXCEPTIONCHECK_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4372
                                  env);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4373
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4374
  jni_check_async_exceptions(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4375
  jboolean ret = (thread->has_pending_exception()) ? JNI_TRUE : JNI_FALSE;
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4376
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4377
  DTRACE_PROBE1(hotspot_jni, ExceptionCheck__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4378
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4379
 HOTSPOT_JNI_EXCEPTIONCHECK_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4380
                                   ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4381
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4382
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4383
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4384
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4386
// Initialization state for three routines below relating to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4387
// java.nio.DirectBuffers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4388
static          jint directBufferSupportInitializeStarted = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4389
static volatile jint directBufferSupportInitializeEnded   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4390
static volatile jint directBufferSupportInitializeFailed  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4391
static jclass    bufferClass                 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4392
static jclass    directBufferClass           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4393
static jclass    directByteBufferClass       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4394
static jmethodID directByteBufferConstructor = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4395
static jfieldID  directBufferAddressField    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4396
static jfieldID  bufferCapacityField         = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4398
static jclass lookupOne(JNIEnv* env, const char* name, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4399
  Handle loader;            // null (bootstrap) loader
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4400
  Handle protection_domain; // null protection domain
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4401
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7414
diff changeset
  4402
  TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL);
2269
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
  4403
  jclass result =  find_class_from_class_loader(env, sym, true, loader, protection_domain, true, CHECK_NULL);
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
  4404
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
  4405
  if (TraceClassResolution && result != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4406
    trace_class_resolution(java_lang_Class::as_Klass(JNIHandles::resolve_non_null(result)));
2269
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
  4407
  }
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 2105
diff changeset
  4408
  return result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4411
// These lookups are done with the NULL (bootstrap) ClassLoader to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4412
// circumvent any security checks that would be done by jni_FindClass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4413
JNI_ENTRY(bool, lookupDirectBufferClasses(JNIEnv* env))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4414
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4415
  if ((bufferClass           = lookupOne(env, "java/nio/Buffer", thread))           == NULL) { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4416
  if ((directBufferClass     = lookupOne(env, "sun/nio/ch/DirectBuffer", thread))   == NULL) { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4417
  if ((directByteBufferClass = lookupOne(env, "java/nio/DirectByteBuffer", thread)) == NULL) { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4418
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4419
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4420
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4423
static bool initializeDirectBufferSupport(JNIEnv* env, JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4424
  if (directBufferSupportInitializeFailed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4425
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4426
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4427
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4428
  if (Atomic::cmpxchg(1, &directBufferSupportInitializeStarted, 0) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4429
    if (!lookupDirectBufferClasses(env)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4430
      directBufferSupportInitializeFailed = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4431
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4432
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4434
    // Make global references for these
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4435
    bufferClass           = (jclass) env->NewGlobalRef(bufferClass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4436
    directBufferClass     = (jclass) env->NewGlobalRef(directBufferClass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4437
    directByteBufferClass = (jclass) env->NewGlobalRef(directByteBufferClass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4438
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4439
    // Get needed field and method IDs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4440
    directByteBufferConstructor = env->GetMethodID(directByteBufferClass, "<init>", "(JI)V");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4441
    directBufferAddressField    = env->GetFieldID(bufferClass, "address", "J");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4442
    bufferCapacityField         = env->GetFieldID(bufferClass, "capacity", "I");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4443
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4444
    if ((directByteBufferConstructor == NULL) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4445
        (directBufferAddressField    == NULL) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4446
        (bufferCapacityField         == NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4447
      directBufferSupportInitializeFailed = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4448
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4449
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4450
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4451
    directBufferSupportInitializeEnded = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4452
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4453
    while (!directBufferSupportInitializeEnded && !directBufferSupportInitializeFailed) {
1897
d49193ae5111 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 1664
diff changeset
  4454
      // Set state as yield_all can call os:sleep. On Solaris, yield_all calls
d49193ae5111 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 1664
diff changeset
  4455
      // os::sleep which requires the VM state transition. On other platforms, it
d49193ae5111 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 1664
diff changeset
  4456
      // is not necessary. The following call to change the VM state is purposely
d49193ae5111 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 1664
diff changeset
  4457
      // put inside the loop to avoid potential deadlock when multiple threads
d49193ae5111 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 1664
diff changeset
  4458
      // try to call this method. See 6791815 for more details.
d49193ae5111 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 1664
diff changeset
  4459
      ThreadInVMfromNative tivn(thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4460
      os::yield_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4461
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4464
  return !directBufferSupportInitializeFailed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4465
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4466
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4467
extern "C" jobject JNICALL jni_NewDirectByteBuffer(JNIEnv *env, void* address, jlong capacity)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4468
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4469
  // thread_from_jni_environment() will block if VM is gone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4470
  JavaThread* thread = JavaThread::thread_from_jni_environment(env);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4472
  JNIWrapper("jni_NewDirectByteBuffer");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4473
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4474
  DTRACE_PROBE3(hotspot_jni, NewDirectByteBuffer__entry, env, address, capacity);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4475
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4476
 HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4477
                                       env, address, capacity);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4478
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4480
  if (!directBufferSupportInitializeEnded) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4481
    if (!initializeDirectBufferSupport(env, thread)) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4482
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4483
      DTRACE_PROBE1(hotspot_jni, NewDirectByteBuffer__return, NULL);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4484
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4485
      HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4486
                                             NULL);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4487
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4488
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4489
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4490
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4492
  // Being paranoid about accidental sign extension on address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4493
  jlong addr = (jlong) ((uintptr_t) address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4494
  // NOTE that package-private DirectByteBuffer constructor currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4495
  // takes int capacity
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4496
  jint  cap  = (jint)  capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4497
  jobject ret = env->NewObject(directByteBufferClass, directByteBufferConstructor, addr, cap);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4498
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4499
  DTRACE_PROBE1(hotspot_jni, NewDirectByteBuffer__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4500
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4501
  HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4502
                                         ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4503
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4504
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4505
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4506
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4507
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4508
DT_RETURN_MARK_DECL(GetDirectBufferAddress, void*);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4509
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4510
DT_RETURN_MARK_DECL(GetDirectBufferAddress, void*
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4511
                    , HOTSPOT_JNI_GETDIRECTBUFFERADDRESS_RETURN((void*) _ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4512
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4514
extern "C" void* JNICALL jni_GetDirectBufferAddress(JNIEnv *env, jobject buf)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4515
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4516
  // thread_from_jni_environment() will block if VM is gone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4517
  JavaThread* thread = JavaThread::thread_from_jni_environment(env);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4518
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4519
  JNIWrapper("jni_GetDirectBufferAddress");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4520
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4521
  DTRACE_PROBE2(hotspot_jni, GetDirectBufferAddress__entry, env, buf);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4522
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4523
  HOTSPOT_JNI_GETDIRECTBUFFERADDRESS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4524
                                           env, buf);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4525
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4526
  void* ret = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4527
  DT_RETURN_MARK(GetDirectBufferAddress, void*, (const void*&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4529
  if (!directBufferSupportInitializeEnded) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4530
    if (!initializeDirectBufferSupport(env, thread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4531
      return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4532
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4534
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4535
  if ((buf != NULL) && (!env->IsInstanceOf(buf, directBufferClass))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4536
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4537
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4538
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4539
  ret = (void*)(intptr_t)env->GetLongField(buf, directBufferAddressField);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4540
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4541
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4542
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4543
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4544
DT_RETURN_MARK_DECL(GetDirectBufferCapacity, jlong);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4545
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4546
DT_RETURN_MARK_DECL(GetDirectBufferCapacity, jlong
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4547
                    , HOTSPOT_JNI_GETDIRECTBUFFERCAPACITY_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4548
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4550
extern "C" jlong JNICALL jni_GetDirectBufferCapacity(JNIEnv *env, jobject buf)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4551
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4552
  // thread_from_jni_environment() will block if VM is gone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4553
  JavaThread* thread = JavaThread::thread_from_jni_environment(env);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4554
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4555
  JNIWrapper("jni_GetDirectBufferCapacity");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4556
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4557
  DTRACE_PROBE2(hotspot_jni, GetDirectBufferCapacity__entry, env, buf);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4558
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4559
  HOTSPOT_JNI_GETDIRECTBUFFERCAPACITY_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4560
                                            env, buf);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4561
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4562
  jlong ret = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4563
  DT_RETURN_MARK(GetDirectBufferCapacity, jlong, (const jlong&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4565
  if (!directBufferSupportInitializeEnded) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4566
    if (!initializeDirectBufferSupport(env, thread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4567
      ret = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4568
      return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4569
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4570
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4572
  if (buf == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4573
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4574
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4576
  if (!env->IsInstanceOf(buf, directBufferClass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4577
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4578
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4579
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4580
  // NOTE that capacity is currently an int in the implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4581
  ret = env->GetIntField(buf, bufferCapacityField);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4582
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4583
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4586
JNI_LEAF(jint, jni_GetVersion(JNIEnv *env))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4587
  JNIWrapper("GetVersion");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4588
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4589
  DTRACE_PROBE1(hotspot_jni, GetVersion__entry, env);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4590
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4591
  HOTSPOT_JNI_GETVERSION_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4592
                               env);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4593
#endif /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4594
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4595
  DTRACE_PROBE1(hotspot_jni, GetVersion__return, CurrentVersion);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4596
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4597
  HOTSPOT_JNI_GETVERSION_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4598
                                CurrentVersion);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4599
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4600
  return CurrentVersion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4601
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4603
extern struct JavaVM_ main_vm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4604
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4605
JNI_LEAF(jint, jni_GetJavaVM(JNIEnv *env, JavaVM **vm))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4606
  JNIWrapper("jni_GetJavaVM");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4607
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4608
  DTRACE_PROBE2(hotspot_jni, GetJavaVM__entry, env, vm);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4609
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4610
  HOTSPOT_JNI_GETJAVAVM_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4611
                              env, (void **) vm);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4612
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4613
  *vm  = (JavaVM *)(&main_vm);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4614
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4615
  DTRACE_PROBE1(hotspot_jni, GetJavaVM__return, JNI_OK);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4616
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4617
  HOTSPOT_JNI_GETJAVAVM_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4618
                               JNI_OK);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4619
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4620
  return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4621
JNI_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4622
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4623
// Structure containing all jni functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4624
struct JNINativeInterface_ jni_NativeInterface = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4625
    NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4626
    NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4627
    NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4628
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4629
    NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4631
    jni_GetVersion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4632
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4633
    jni_DefineClass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4634
    jni_FindClass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4635
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4636
    jni_FromReflectedMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4637
    jni_FromReflectedField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4638
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4639
    jni_ToReflectedMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4640
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4641
    jni_GetSuperclass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4642
    jni_IsAssignableFrom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4644
    jni_ToReflectedField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4645
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4646
    jni_Throw,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4647
    jni_ThrowNew,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4648
    jni_ExceptionOccurred,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4649
    jni_ExceptionDescribe,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4650
    jni_ExceptionClear,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4651
    jni_FatalError,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4653
    jni_PushLocalFrame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4654
    jni_PopLocalFrame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4655
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4656
    jni_NewGlobalRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4657
    jni_DeleteGlobalRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4658
    jni_DeleteLocalRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4659
    jni_IsSameObject,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4660
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4661
    jni_NewLocalRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4662
    jni_EnsureLocalCapacity,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4664
    jni_AllocObject,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4665
    jni_NewObject,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4666
    jni_NewObjectV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4667
    jni_NewObjectA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4668
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4669
    jni_GetObjectClass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4670
    jni_IsInstanceOf,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4671
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4672
    jni_GetMethodID,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4673
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4674
    jni_CallObjectMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4675
    jni_CallObjectMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4676
    jni_CallObjectMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4677
    jni_CallBooleanMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4678
    jni_CallBooleanMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4679
    jni_CallBooleanMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4680
    jni_CallByteMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4681
    jni_CallByteMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4682
    jni_CallByteMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4683
    jni_CallCharMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4684
    jni_CallCharMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4685
    jni_CallCharMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4686
    jni_CallShortMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4687
    jni_CallShortMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4688
    jni_CallShortMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4689
    jni_CallIntMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4690
    jni_CallIntMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4691
    jni_CallIntMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4692
    jni_CallLongMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4693
    jni_CallLongMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4694
    jni_CallLongMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4695
    jni_CallFloatMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4696
    jni_CallFloatMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4697
    jni_CallFloatMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4698
    jni_CallDoubleMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4699
    jni_CallDoubleMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4700
    jni_CallDoubleMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4701
    jni_CallVoidMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4702
    jni_CallVoidMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4703
    jni_CallVoidMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4705
    jni_CallNonvirtualObjectMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4706
    jni_CallNonvirtualObjectMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4707
    jni_CallNonvirtualObjectMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4708
    jni_CallNonvirtualBooleanMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4709
    jni_CallNonvirtualBooleanMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4710
    jni_CallNonvirtualBooleanMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4711
    jni_CallNonvirtualByteMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4712
    jni_CallNonvirtualByteMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4713
    jni_CallNonvirtualByteMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4714
    jni_CallNonvirtualCharMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4715
    jni_CallNonvirtualCharMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4716
    jni_CallNonvirtualCharMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4717
    jni_CallNonvirtualShortMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4718
    jni_CallNonvirtualShortMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4719
    jni_CallNonvirtualShortMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4720
    jni_CallNonvirtualIntMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4721
    jni_CallNonvirtualIntMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4722
    jni_CallNonvirtualIntMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4723
    jni_CallNonvirtualLongMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4724
    jni_CallNonvirtualLongMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4725
    jni_CallNonvirtualLongMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4726
    jni_CallNonvirtualFloatMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4727
    jni_CallNonvirtualFloatMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4728
    jni_CallNonvirtualFloatMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4729
    jni_CallNonvirtualDoubleMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4730
    jni_CallNonvirtualDoubleMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4731
    jni_CallNonvirtualDoubleMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4732
    jni_CallNonvirtualVoidMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4733
    jni_CallNonvirtualVoidMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4734
    jni_CallNonvirtualVoidMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4735
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4736
    jni_GetFieldID,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4737
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4738
    jni_GetObjectField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4739
    jni_GetBooleanField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4740
    jni_GetByteField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4741
    jni_GetCharField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4742
    jni_GetShortField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4743
    jni_GetIntField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4744
    jni_GetLongField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4745
    jni_GetFloatField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4746
    jni_GetDoubleField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4747
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4748
    jni_SetObjectField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4749
    jni_SetBooleanField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4750
    jni_SetByteField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4751
    jni_SetCharField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4752
    jni_SetShortField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4753
    jni_SetIntField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4754
    jni_SetLongField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4755
    jni_SetFloatField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4756
    jni_SetDoubleField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4758
    jni_GetStaticMethodID,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4759
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4760
    jni_CallStaticObjectMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4761
    jni_CallStaticObjectMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4762
    jni_CallStaticObjectMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4763
    jni_CallStaticBooleanMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4764
    jni_CallStaticBooleanMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4765
    jni_CallStaticBooleanMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4766
    jni_CallStaticByteMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4767
    jni_CallStaticByteMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4768
    jni_CallStaticByteMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4769
    jni_CallStaticCharMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4770
    jni_CallStaticCharMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4771
    jni_CallStaticCharMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4772
    jni_CallStaticShortMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4773
    jni_CallStaticShortMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4774
    jni_CallStaticShortMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4775
    jni_CallStaticIntMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4776
    jni_CallStaticIntMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4777
    jni_CallStaticIntMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4778
    jni_CallStaticLongMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4779
    jni_CallStaticLongMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4780
    jni_CallStaticLongMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4781
    jni_CallStaticFloatMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4782
    jni_CallStaticFloatMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4783
    jni_CallStaticFloatMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4784
    jni_CallStaticDoubleMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4785
    jni_CallStaticDoubleMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4786
    jni_CallStaticDoubleMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4787
    jni_CallStaticVoidMethod,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4788
    jni_CallStaticVoidMethodV,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4789
    jni_CallStaticVoidMethodA,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4790
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4791
    jni_GetStaticFieldID,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4792
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4793
    jni_GetStaticObjectField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4794
    jni_GetStaticBooleanField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4795
    jni_GetStaticByteField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4796
    jni_GetStaticCharField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4797
    jni_GetStaticShortField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4798
    jni_GetStaticIntField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4799
    jni_GetStaticLongField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4800
    jni_GetStaticFloatField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4801
    jni_GetStaticDoubleField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4802
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4803
    jni_SetStaticObjectField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4804
    jni_SetStaticBooleanField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4805
    jni_SetStaticByteField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4806
    jni_SetStaticCharField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4807
    jni_SetStaticShortField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4808
    jni_SetStaticIntField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4809
    jni_SetStaticLongField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4810
    jni_SetStaticFloatField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4811
    jni_SetStaticDoubleField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4813
    jni_NewString,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4814
    jni_GetStringLength,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4815
    jni_GetStringChars,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4816
    jni_ReleaseStringChars,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4817
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4818
    jni_NewStringUTF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4819
    jni_GetStringUTFLength,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4820
    jni_GetStringUTFChars,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4821
    jni_ReleaseStringUTFChars,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4822
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4823
    jni_GetArrayLength,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4824
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4825
    jni_NewObjectArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4826
    jni_GetObjectArrayElement,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4827
    jni_SetObjectArrayElement,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4828
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4829
    jni_NewBooleanArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4830
    jni_NewByteArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4831
    jni_NewCharArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4832
    jni_NewShortArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4833
    jni_NewIntArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4834
    jni_NewLongArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4835
    jni_NewFloatArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4836
    jni_NewDoubleArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4837
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4838
    jni_GetBooleanArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4839
    jni_GetByteArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4840
    jni_GetCharArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4841
    jni_GetShortArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4842
    jni_GetIntArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4843
    jni_GetLongArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4844
    jni_GetFloatArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4845
    jni_GetDoubleArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4846
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4847
    jni_ReleaseBooleanArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4848
    jni_ReleaseByteArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4849
    jni_ReleaseCharArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4850
    jni_ReleaseShortArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4851
    jni_ReleaseIntArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4852
    jni_ReleaseLongArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4853
    jni_ReleaseFloatArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4854
    jni_ReleaseDoubleArrayElements,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4856
    jni_GetBooleanArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4857
    jni_GetByteArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4858
    jni_GetCharArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4859
    jni_GetShortArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4860
    jni_GetIntArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4861
    jni_GetLongArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4862
    jni_GetFloatArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4863
    jni_GetDoubleArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4865
    jni_SetBooleanArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4866
    jni_SetByteArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4867
    jni_SetCharArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4868
    jni_SetShortArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4869
    jni_SetIntArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4870
    jni_SetLongArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4871
    jni_SetFloatArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4872
    jni_SetDoubleArrayRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4874
    jni_RegisterNatives,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4875
    jni_UnregisterNatives,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4876
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4877
    jni_MonitorEnter,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4878
    jni_MonitorExit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4880
    jni_GetJavaVM,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4881
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4882
    jni_GetStringRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4883
    jni_GetStringUTFRegion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4885
    jni_GetPrimitiveArrayCritical,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4886
    jni_ReleasePrimitiveArrayCritical,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4887
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4888
    jni_GetStringCritical,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4889
    jni_ReleaseStringCritical,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4891
    jni_NewWeakGlobalRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4892
    jni_DeleteWeakGlobalRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4893
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4894
    jni_ExceptionCheck,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4895
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4896
    jni_NewDirectByteBuffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4897
    jni_GetDirectBufferAddress,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4898
    jni_GetDirectBufferCapacity,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4899
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4900
    // New 1_6 features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4902
    jni_GetObjectRefType
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4903
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4905
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4906
// For jvmti use to modify jni function table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4907
// Java threads in native contiues to run until it is transitioned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4908
// to VM at safepoint. Before the transition or before it is blocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4909
// for safepoint it may access jni function table. VM could crash if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4910
// any java thread access the jni function table in the middle of memcpy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4911
// To avoid this each function pointers are copied automically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4912
void copy_jni_function_table(const struct JNINativeInterface_ *new_jni_NativeInterface) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4913
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4914
  intptr_t *a = (intptr_t *) jni_functions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4915
  intptr_t *b = (intptr_t *) new_jni_NativeInterface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4916
  for (uint i=0; i <  sizeof(struct JNINativeInterface_)/sizeof(void *); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4917
    Atomic::store_ptr(*b++, a++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4918
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4919
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4920
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4921
void quicken_jni_functions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4922
  // Replace Get<Primitive>Field with fast versions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4923
  if (UseFastJNIAccessors && !JvmtiExport::can_post_field_access()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4924
      && !VerifyJNIFields && !TraceJNICalls && !CountJNICalls && !CheckJNICalls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4925
#if defined(_WINDOWS) && defined(IA32) && defined(COMPILER2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4926
      // windows x86 currently needs SEH wrapper and the gain of the fast
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4927
      // versions currently isn't certain for server vm on uniprocessor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4928
      && os::is_MP()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4929
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4930
  ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4931
    address func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4932
    func = JNI_FastGetField::generate_fast_get_boolean_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4933
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4934
      jni_NativeInterface.GetBooleanField = (GetBooleanField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4935
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4936
    func = JNI_FastGetField::generate_fast_get_byte_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4937
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4938
      jni_NativeInterface.GetByteField = (GetByteField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4939
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4940
    func = JNI_FastGetField::generate_fast_get_char_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4941
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4942
      jni_NativeInterface.GetCharField = (GetCharField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4943
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4944
    func = JNI_FastGetField::generate_fast_get_short_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4945
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4946
      jni_NativeInterface.GetShortField = (GetShortField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4947
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4948
    func = JNI_FastGetField::generate_fast_get_int_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4949
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4950
      jni_NativeInterface.GetIntField = (GetIntField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4951
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4952
    func = JNI_FastGetField::generate_fast_get_long_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4953
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4954
      jni_NativeInterface.GetLongField = (GetLongField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4955
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4956
    func = JNI_FastGetField::generate_fast_get_float_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4957
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4958
      jni_NativeInterface.GetFloatField = (GetFloatField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4959
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4960
    func = JNI_FastGetField::generate_fast_get_double_field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4961
    if (func != (address)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4962
      jni_NativeInterface.GetDoubleField = (GetDoubleField_t)func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4963
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4964
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4965
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4966
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4967
// Returns the function structure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4968
struct JNINativeInterface_* jni_functions() {
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
  4969
#if INCLUDE_JNI_CHECK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4970
  if (CheckJNICalls) return jni_functions_check();
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
  4971
#endif // INCLUDE_JNI_CHECK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4972
  return &jni_NativeInterface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4973
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4974
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4975
// Returns the function structure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4976
struct JNINativeInterface_* jni_functions_nocheck() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4977
  return &jni_NativeInterface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4978
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4979
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4980
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4981
// Invocation API
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4982
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4983
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4984
// Forward declaration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4985
extern const struct JNIInvokeInterface_ jni_InvokeInterface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4986
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4987
// Global invocation API vars
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4988
volatile jint vm_created = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4989
// Indicate whether it is safe to recreate VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4990
volatile jint safe_to_recreate_vm = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4991
struct JavaVM_ main_vm = {&jni_InvokeInterface};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4992
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4993
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4994
#define JAVASTACKSIZE (400 * 1024)    /* Default size of a thread java stack */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4995
enum { VERIFY_NONE, VERIFY_REMOTE, VERIFY_ALL };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4996
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  4997
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4998
HS_DTRACE_PROBE_DECL1(hotspot_jni, GetDefaultJavaVMInitArgs__entry, void*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4999
DT_RETURN_MARK_DECL(GetDefaultJavaVMInitArgs, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5000
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5001
DT_RETURN_MARK_DECL(GetDefaultJavaVMInitArgs, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5002
                    , HOTSPOT_JNI_GETDEFAULTJAVAVMINITARGS_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5003
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5004
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5005
_JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetDefaultJavaVMInitArgs(void *args_) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5006
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5007
  HS_DTRACE_PROBE1(hotspot_jni, GetDefaultJavaVMInitArgs__entry, args_);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5008
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5009
  HOTSPOT_JNI_GETDEFAULTJAVAVMINITARGS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5010
                                             args_);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5011
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5012
  JDK1_1InitArgs *args = (JDK1_1InitArgs *)args_;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5013
  jint ret = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5014
  DT_RETURN_MARK(GetDefaultJavaVMInitArgs, jint, (const jint&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5016
  if (Threads::is_supported_jni_version(args->version)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5017
    ret = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5018
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5019
  // 1.1 style no longer supported in hotspot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5020
  // According the JNI spec, we should update args->version on return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5021
  // We also use the structure to communicate with launcher about default
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5022
  // stack size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5023
  if (args->version == JNI_VERSION_1_1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5024
    args->version = JNI_VERSION_1_2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5025
    // javaStackSize is int in arguments structure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5026
    assert(jlong(ThreadStackSize) * K < INT_MAX, "integer overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5027
    args->javaStackSize = (jint)(ThreadStackSize * K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5028
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5029
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5030
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5031
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5032
#ifndef PRODUCT
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5033
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5034
#include "gc_implementation/shared/gcTimer.hpp"
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5035
#include "gc_interface/collectedHeap.hpp"
17631
17992863b0ab 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 16670
diff changeset
  5036
#if INCLUDE_ALL_GCS
17992863b0ab 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 16670
diff changeset
  5037
#include "gc_implementation/g1/heapRegionRemSet.hpp"
17992863b0ab 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 16670
diff changeset
  5038
#endif
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5039
#include "utilities/quickSort.hpp"
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 19547
diff changeset
  5040
#include "utilities/ostream.hpp"
14574
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 14490
diff changeset
  5041
#if INCLUDE_VM_STRUCTS
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 14490
diff changeset
  5042
#include "runtime/vmStructs.hpp"
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 14490
diff changeset
  5043
#endif
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5044
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5045
#define run_unit_test(unit_test_function_call)              \
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5046
  tty->print_cr("Running test: " #unit_test_function_call); \
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5047
  unit_test_function_call
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5048
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18683
diff changeset
  5049
// Forward declaration
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18683
diff changeset
  5050
void TestReservedSpace_test();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18683
diff changeset
  5051
void TestReserveMemorySpecial_test();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18683
diff changeset
  5052
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5053
void execute_internal_vm_tests() {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5054
  if (ExecuteInternalVMTests) {
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5055
    tty->print_cr("Running internal VM tests");
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18683
diff changeset
  5056
    run_unit_test(TestReservedSpace_test());
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18683
diff changeset
  5057
    run_unit_test(TestReserveMemorySpecial_test());
16670
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 16394
diff changeset
  5058
    run_unit_test(GlobalDefinitions::test_globals());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5059
    run_unit_test(GCTimerAllTest::all());
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5060
    run_unit_test(arrayOopDesc::test_max_array_length());
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5061
    run_unit_test(CollectedHeap::test_is_in());
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5062
    run_unit_test(QuickSort::test_quick_sort());
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 12939
diff changeset
  5063
    run_unit_test(AltHashing::test_alt_hash());
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 19547
diff changeset
  5064
    run_unit_test(test_loggc_filename());
14574
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 14490
diff changeset
  5065
#if INCLUDE_VM_STRUCTS
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 14490
diff changeset
  5066
    run_unit_test(VMStructs::test());
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 14490
diff changeset
  5067
#endif
17631
17992863b0ab 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 16670
diff changeset
  5068
#if INCLUDE_ALL_GCS
17992863b0ab 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 16670
diff changeset
  5069
    run_unit_test(HeapRegionRemSet::test_prt());
17992863b0ab 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 16670
diff changeset
  5070
#endif
10994
fc93bca9c720 7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents: 10739
diff changeset
  5071
    tty->print_cr("All internal VM tests passed");
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5072
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5073
}
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5074
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5075
#undef run_unit_test
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
  5076
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5077
#endif
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents: 9176
diff changeset
  5078
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5079
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5080
HS_DTRACE_PROBE_DECL3(hotspot_jni, CreateJavaVM__entry, vm, penv, args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5081
DT_RETURN_MARK_DECL(CreateJavaVM, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5082
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5083
DT_RETURN_MARK_DECL(CreateJavaVM, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5084
                    , HOTSPOT_JNI_CREATEJAVAVM_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5085
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5087
_JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_CreateJavaVM(JavaVM **vm, void **penv, void *args) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5088
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5089
  HS_DTRACE_PROBE3(hotspot_jni, CreateJavaVM__entry, vm, penv, args);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5090
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5091
  HOTSPOT_JNI_CREATEJAVAVM_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5092
                                 (void **) vm, penv, args);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5093
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5095
  jint result = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5096
  DT_RETURN_MARK(CreateJavaVM, jint, (const jint&)result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5097
4448
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5098
  // We're about to use Atomic::xchg for synchronization.  Some Zero
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5099
  // platforms use the GCC builtin __sync_lock_test_and_set for this,
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5100
  // but __sync_lock_test_and_set is not guaranteed to do what we want
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5101
  // on all architectures.  So we check it works before relying on it.
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5102
#if defined(ZERO) && defined(ASSERT)
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5103
  {
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5104
    jint a = 0xcafebabe;
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5105
    jint b = Atomic::xchg(0xdeadbeef, &a);
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5106
    void *c = &a;
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5107
    void *d = Atomic::xchg_ptr(&b, &c);
4561
4dfa5956fbb9 6913869: Zero assert fix
twisti
parents: 4448
diff changeset
  5108
    assert(a == (jint) 0xdeadbeef && b == (jint) 0xcafebabe, "Atomic::xchg() works");
4448
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5109
    assert(c == &b && d == &a, "Atomic::xchg_ptr() works");
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5110
  }
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5111
#endif // ZERO && ASSERT
d6ec2737186c 6896043: first round of zero fixes
twisti
parents: 4089
diff changeset
  5112
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5113
  // At the moment it's only possible to have one Java VM,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5114
  // since some of the runtime state is in global variables.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5116
  // We cannot use our mutex locks here, since they only work on
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5117
  // Threads. We do an atomic compare and exchange to ensure only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5118
  // one thread can call this method at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5120
  // We use Atomic::xchg rather than Atomic::add/dec since on some platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5121
  // the add/dec implementations are dependent on whether we are running
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5122
  // on a multiprocessor, and at this stage of initialization the os::is_MP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5123
  // function used to determine this will always return false. Atomic::xchg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5124
  // does not have this problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5125
  if (Atomic::xchg(1, &vm_created) == 1) {
18680
6d5dc445baec 8019833: Wrong JNI error code for preexisting JVM
coleenp
parents: 18486
diff changeset
  5126
    return JNI_EEXIST;   // already created, or create attempt in progress
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5128
  if (Atomic::xchg(0, &safe_to_recreate_vm) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5129
    return JNI_ERR;  // someone tried and failed and retry not allowed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5132
  assert(vm_created == 1, "vm_created is true during the creation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5134
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5135
   * Certain errors during initialization are recoverable and do not
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5136
   * prevent this method from being called again at a later time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5137
   * (perhaps with different arguments).  However, at a certain
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5138
   * point during initialization if an error occurs we cannot allow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5139
   * this function to be called again (or it will crash).  In those
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5140
   * situations, the 'canTryAgain' flag is set to false, which atomically
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5141
   * sets safe_to_recreate_vm to 1, such that any new call to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5142
   * JNI_CreateJavaVM will immediately fail using the above logic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5143
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5144
  bool can_try_again = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5146
  result = Threads::create_vm((JavaVMInitArgs*) args, &can_try_again);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5147
  if (result == JNI_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5148
    JavaThread *thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5149
    /* thread is thread_in_vm here */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5150
    *vm = (JavaVM *)(&main_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5151
    *(JNIEnv**)penv = thread->jni_environment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5153
    // Tracks the time application was running before GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5154
    RuntimeService::record_application_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5156
    // Notify JVMTI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5157
    if (JvmtiExport::should_post_thread_life()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5158
       JvmtiExport::post_thread_start(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5159
    }
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 11247
diff changeset
  5160
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5161
    EventThreadStart event;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5162
    if (event.should_commit()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5163
      event.set_javalangthread(java_lang_Thread::thread_id(thread->threadObj()));
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5164
      event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5165
    }
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 11247
diff changeset
  5166
18683
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5167
#ifndef PRODUCT
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5168
  #ifndef TARGET_OS_FAMILY_windows
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5169
    #define CALL_TEST_FUNC_WITH_WRAPPER_IF_NEEDED(f) f()
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5170
  #endif
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5171
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5172
    // Check if we should compile all classes on bootclasspath
18683
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5173
    if (CompileTheWorld) ClassLoader::compile_the_world();
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5174
    if (ReplayCompiles) ciReplay::replay(thread);
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5175
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5176
    // Some platforms (like Win*) need a wrapper around these test
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5177
    // functions in order to properly handle error conditions.
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5178
    CALL_TEST_FUNC_WITH_WRAPPER_IF_NEEDED(test_error_handler);
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5179
    CALL_TEST_FUNC_WITH_WRAPPER_IF_NEEDED(execute_internal_vm_tests);
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5180
#endif
a6418e038255 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 18680
diff changeset
  5181
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5182
    // Since this is not a JVM_ENTRY we have to set the thread state manually before leaving.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5183
    ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5184
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5185
    if (can_try_again) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5186
      // reset safe_to_recreate_vm to 1 so that retrial would be possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5187
      safe_to_recreate_vm = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5188
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5189
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5190
    // Creation failed. We must reset vm_created
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5191
    *vm = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5192
    *(JNIEnv**)penv = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5193
    // reset vm_created last to avoid race condition. Use OrderAccess to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5194
    // control both compiler and architectural-based reordering.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5195
    OrderAccess::release_store(&vm_created, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5198
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5200
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5201
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5202
HS_DTRACE_PROBE_DECL3(hotspot_jni, GetCreatedJavaVMs__entry, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5203
  JavaVM**, jsize, jsize*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5204
HS_DTRACE_PROBE_DECL1(hotspot_jni, GetCreatedJavaVMs__return, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5205
#endif /* !USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5207
_JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetCreatedJavaVMs(JavaVM **vm_buf, jsize bufLen, jsize *numVMs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5208
  // See bug 4367188, the wrapper can sometimes cause VM crashes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5209
  // JNIWrapper("GetCreatedJavaVMs");
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5210
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5211
  HS_DTRACE_PROBE3(hotspot_jni, GetCreatedJavaVMs__entry, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5212
    vm_buf, bufLen, numVMs);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5213
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5214
  HOTSPOT_JNI_GETCREATEDJAVAVMS_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5215
                                      (void **) vm_buf, bufLen, (uintptr_t *) numVMs);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5216
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5217
  if (vm_created) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5218
    if (numVMs != NULL) *numVMs = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5219
    if (bufLen > 0)     *vm_buf = (JavaVM *)(&main_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5220
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5221
    if (numVMs != NULL) *numVMs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5222
  }
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5223
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5224
  HS_DTRACE_PROBE1(hotspot_jni, GetCreatedJavaVMs__return, JNI_OK);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5225
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5226
  HOTSPOT_JNI_GETCREATEDJAVAVMS_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5227
                                    JNI_OK);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5228
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5229
  return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5232
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5233
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5234
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5235
DT_RETURN_MARK_DECL(DestroyJavaVM, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5236
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5237
DT_RETURN_MARK_DECL(DestroyJavaVM, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5238
                    , HOTSPOT_JNI_DESTROYJAVAVM_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5239
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5241
jint JNICALL jni_DestroyJavaVM(JavaVM *vm) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5242
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5243
  DTRACE_PROBE1(hotspot_jni, DestroyJavaVM__entry, vm);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5244
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5245
  HOTSPOT_JNI_DESTROYJAVAVM_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5246
                                  vm);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5247
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5248
  jint res = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5249
  DT_RETURN_MARK(DestroyJavaVM, jint, (const jint&)res);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5251
  if (!vm_created) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5252
    res = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5253
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5256
  JNIWrapper("DestroyJavaVM");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5257
  JNIEnv *env;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5258
  JavaVMAttachArgs destroyargs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5259
  destroyargs.version = CurrentVersion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5260
  destroyargs.name = (char *)"DestroyJavaVM";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5261
  destroyargs.group = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5262
  res = vm->AttachCurrentThread((void **)&env, (void *)&destroyargs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5263
  if (res != JNI_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5264
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5266
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5267
  // Since this is not a JVM_ENTRY we have to set the thread state manually before entering.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5268
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5269
  ThreadStateTransition::transition_from_native(thread, _thread_in_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5270
  if (Threads::destroy_vm()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5271
    // Should not change thread state, VM is gone
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5272
    vm_created = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5273
    res = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5274
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5275
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5276
    ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5277
    res = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5278
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5283
static jint attach_current_thread(JavaVM *vm, void **penv, void *_args, bool daemon) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5284
  JavaVMAttachArgs *args = (JavaVMAttachArgs *) _args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5286
  // Check below commented out from JDK1.2fcs as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5287
  /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5288
  if (args && (args->version != JNI_VERSION_1_1 || args->version != JNI_VERSION_1_2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5289
    return JNI_EVERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5291
  */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5293
  Thread* t = ThreadLocalStorage::get_thread_slow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5294
  if (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5295
    // If the thread has been attached this operation is a no-op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5296
    *(JNIEnv**)penv = ((JavaThread*) t)->jni_environment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5297
    return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5300
  // Create a thread and mark it as attaching so it will be skipped by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5301
  // ThreadsListEnumerator - see CR 6404306
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5302
  JavaThread* thread = new JavaThread(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5303
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5304
  // Set correct safepoint info. The thread is going to call into Java when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5305
  // initializing the Java level thread object. Hence, the correct state must
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5306
  // be set in order for the Safepoint code to deal with it correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5307
  thread->set_thread_state(_thread_in_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5308
  // Must do this before initialize_thread_local_storage
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5309
  thread->record_stack_base_and_size();
5041
5bce37d77dde 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 4571
diff changeset
  5310
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5311
  thread->initialize_thread_local_storage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5313
  if (!os::create_attached_thread(thread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5314
    delete thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5315
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5316
  }
5041
5bce37d77dde 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 4571
diff changeset
  5317
  // Enable stack overflow checks
5bce37d77dde 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 4571
diff changeset
  5318
  thread->create_stack_guard_pages();
5bce37d77dde 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 4571
diff changeset
  5319
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5320
  thread->initialize_tlab();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5321
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
  5322
  thread->cache_global_variables();
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
  5323
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5324
  // Crucial that we do not have a safepoint check for this thread, since it has
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5325
  // not been added to the Thread list yet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5326
  { Threads_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5327
    // This must be inside this lock in order to get FullGCALot to work properly, i.e., to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5328
    // avoid this thread trying to do a GC before it is added to the thread-list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5329
    thread->set_active_handles(JNIHandleBlock::allocate_block());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5330
    Threads::add(thread, daemon);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5331
    Threads_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5333
  // Create thread group and name info from attach arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5334
  oop group = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5335
  char* thread_name = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5336
  if (args != NULL && Threads::is_supported_jni_version(args->version)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5337
    group = JNIHandles::resolve(args->group);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5338
    thread_name = args->name; // may be NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5339
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5340
  if (group == NULL) group = Universe::main_thread_group();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5342
  // Create Java level thread object and attach it to this thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5343
  bool attach_failed = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5344
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5345
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5346
    HandleMark hm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5347
    Handle thread_group(THREAD, group);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5348
    thread->allocate_threadObj(thread_group, thread_name, daemon, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5349
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5350
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5351
      // cleanup outside the handle mark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5352
      attach_failed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5353
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5356
  if (attach_failed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5357
    // Added missing cleanup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5358
    thread->cleanup_failed_attach_current_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5359
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5362
  // mark the thread as no longer attaching
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5363
  // this uses a fence to push the change through so we don't have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5364
  // to regrab the threads_lock
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5365
  thread->set_done_attaching_via_jni();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5366
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5367
  // Set java thread status.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5368
  java_lang_Thread::set_thread_status(thread->threadObj(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5369
              java_lang_Thread::RUNNABLE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5371
  // Notify the debugger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5372
  if (JvmtiExport::should_post_thread_life()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5373
    JvmtiExport::post_thread_start(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5375
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5376
  EventThreadStart event;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5377
  if (event.should_commit()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5378
    event.set_javalangthread(java_lang_Thread::thread_id(thread->threadObj()));
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5379
    event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17631
diff changeset
  5380
  }
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 11247
diff changeset
  5381
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5382
  *(JNIEnv**)penv = thread->jni_environment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5384
  // Now leaving the VM, so change thread_state. This is normally automatically taken care
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5385
  // of in the JVM_ENTRY. But in this situation we have to do it manually. Notice, that by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5386
  // using ThreadStateTransition::transition, we do a callback to the safepoint code if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5387
  // needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5389
  ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5391
  // Perform any platform dependent FPU setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5392
  os::setup_fpu();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5394
  return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5395
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5398
jint JNICALL jni_AttachCurrentThread(JavaVM *vm, void **penv, void *_args) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5399
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5400
  DTRACE_PROBE3(hotspot_jni, AttachCurrentThread__entry, vm, penv, _args);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5401
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5402
  HOTSPOT_JNI_ATTACHCURRENTTHREAD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5403
                                        vm, penv, _args);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5404
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5405
  if (!vm_created) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5406
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5407
    DTRACE_PROBE1(hotspot_jni, AttachCurrentThread__return, JNI_ERR);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5408
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5409
  HOTSPOT_JNI_ATTACHCURRENTTHREAD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5410
                                         (uint32_t) JNI_ERR);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5411
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5412
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5413
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5414
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5415
  JNIWrapper("AttachCurrentThread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5416
  jint ret = attach_current_thread(vm, penv, _args, false);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5417
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5418
  DTRACE_PROBE1(hotspot_jni, AttachCurrentThread__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5419
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5420
  HOTSPOT_JNI_ATTACHCURRENTTHREAD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5421
                                         ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5422
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5423
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5424
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5425
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5426
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5427
jint JNICALL jni_DetachCurrentThread(JavaVM *vm)  {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5428
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5429
  DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__entry, vm);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5430
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5431
  HOTSPOT_JNI_DETACHCURRENTTHREAD_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5432
                                        vm);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5433
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5434
  VM_Exit::block_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5435
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5436
  JNIWrapper("DetachCurrentThread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5437
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5438
  // If the thread has been deattacted the operations is a no-op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5439
  if (ThreadLocalStorage::thread() == NULL) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5440
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5441
    DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_OK);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5442
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5443
  HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5444
                                         JNI_OK);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5445
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5446
    return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5447
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5449
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5450
  if (thread->has_last_Java_frame()) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5451
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5452
    DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_ERR);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5453
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5454
  HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5455
                                         (uint32_t) JNI_ERR);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5456
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5457
    // Can't detach a thread that's running java, that can't work.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5458
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5459
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5461
  // Safepoint support. Have to do call-back to safepoint code, if in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5462
  // middel of a safepoint operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5463
  ThreadStateTransition::transition_from_native(thread, _thread_in_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5465
  // XXX: Note that JavaThread::exit() call below removes the guards on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5466
  // stack pages set up via enable_stack_{red,yellow}_zone() calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5467
  // above in jni_AttachCurrentThread. Unfortunately, while the setting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5468
  // of the guards is visible in jni_AttachCurrentThread above,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5469
  // the removal of the guards is buried below in JavaThread::exit()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5470
  // here. The abstraction should be more symmetrically either exposed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5471
  // or hidden (e.g. it could probably be hidden in the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5472
  // (platform-dependent) methods where we do alternate stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5473
  // maintenance work?)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5474
  thread->exit(false, JavaThread::jni_detach);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5475
  delete thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5476
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5477
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5478
  DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_OK);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5479
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5480
  HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5481
                                         JNI_OK);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5482
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5483
  return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5484
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5485
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5486
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5487
DT_RETURN_MARK_DECL(GetEnv, jint);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5488
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5489
DT_RETURN_MARK_DECL(GetEnv, jint
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5490
                    , HOTSPOT_JNI_GETENV_RETURN(_ret_ref));
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5491
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5493
jint JNICALL jni_GetEnv(JavaVM *vm, void **penv, jint version) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5494
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5495
  DTRACE_PROBE3(hotspot_jni, GetEnv__entry, vm, penv, version);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5496
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5497
  HOTSPOT_JNI_GETENV_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5498
                           vm, penv, version);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5499
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5500
  jint ret = JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5501
  DT_RETURN_MARK(GetEnv, jint, (const jint&)ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5502
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5503
  if (!vm_created) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5504
    *penv = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5505
    ret = JNI_EDETACHED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5506
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5507
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5508
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 11247
diff changeset
  5509
  if (JniExportedInterface::GetExportedInterface(vm, penv, version, &ret)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5510
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5511
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5512
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5513
#ifndef JVMPI_VERSION_1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5514
// need these in order to be polite about older agents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5515
#define JVMPI_VERSION_1   ((jint)0x10000001)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5516
#define JVMPI_VERSION_1_1 ((jint)0x10000002)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5517
#define JVMPI_VERSION_1_2 ((jint)0x10000003)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5518
#endif // !JVMPI_VERSION_1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5519
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5520
  Thread* thread = ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5521
  if (thread != NULL && thread->is_Java_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5522
    if (Threads::is_supported_jni_version_including_1_1(version)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5523
      *(JNIEnv**)penv = ((JavaThread*) thread)->jni_environment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5524
      ret = JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5525
      return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5526
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5527
    } else if (version == JVMPI_VERSION_1 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5528
               version == JVMPI_VERSION_1_1 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5529
               version == JVMPI_VERSION_1_2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5530
      tty->print_cr("ERROR: JVMPI, an experimental interface, is no longer supported.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5531
      tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI).");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5532
      ret = JNI_EVERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5533
      return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5534
    } else if (JvmtiExport::is_jvmdi_version(version)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5535
      tty->print_cr("FATAL ERROR: JVMDI is no longer supported.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5536
      tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI).");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5537
      ret = JNI_EVERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5538
      return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5539
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5540
      *penv = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5541
      ret = JNI_EVERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5542
      return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5543
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5544
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5545
    *penv = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5546
    ret = JNI_EDETACHED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5547
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5548
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5549
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5550
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5552
jint JNICALL jni_AttachCurrentThreadAsDaemon(JavaVM *vm, void **penv, void *_args) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5553
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5554
  DTRACE_PROBE3(hotspot_jni, AttachCurrentThreadAsDaemon__entry, vm, penv, _args);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5555
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5556
  HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_ENTRY(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5557
                                                vm, penv, _args);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5558
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5559
  if (!vm_created) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5560
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5561
    DTRACE_PROBE1(hotspot_jni, AttachCurrentThreadAsDaemon__return, JNI_ERR);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5562
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5563
  HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5564
                                                 (uint32_t) JNI_ERR);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5565
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5566
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5569
  JNIWrapper("AttachCurrentThreadAsDaemon");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5570
  jint ret = attach_current_thread(vm, penv, _args, true);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5571
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5572
  DTRACE_PROBE1(hotspot_jni, AttachCurrentThreadAsDaemon__return, ret);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5573
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5574
  HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_RETURN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5575
                                                 ret);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
  5576
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5577
  return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5578
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5579
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5581
} // End extern "C"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5582
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5583
const struct JNIInvokeInterface_ jni_InvokeInterface = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5584
    NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5585
    NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5586
    NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5588
    jni_DestroyJavaVM,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5589
    jni_AttachCurrentThread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5590
    jni_DetachCurrentThread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5591
    jni_GetEnv,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5592
    jni_AttachCurrentThreadAsDaemon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5593
};