src/hotspot/share/runtime/jniHandles.hpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57828 35db8fba55f9
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 53060
diff changeset
     2
 * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5531
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5531
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5531
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
    25
#ifndef SHARE_RUNTIME_JNIHANDLES_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
    26
#define SHARE_RUNTIME_JNIHANDLES_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
37466
287c4ebd11b0 8153967: Remove top.hpp
stefank
parents: 37179
diff changeset
    28
#include "memory/allocation.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 53060
diff changeset
    31
class JavaThread;
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
    32
class OopStorage;
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 53060
diff changeset
    33
class Thread;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Interface for creating and resolving local/global JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class JNIHandles : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 private:
57828
35db8fba55f9 8227054: ServiceThread needs to know about all OopStorage objects
kbarrett
parents: 57698
diff changeset
    40
  // These are used by the serviceability agent.
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
    41
  static OopStorage* _global_handles;
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
    42
  static OopStorage* _weak_global_handles;
57828
35db8fba55f9 8227054: ServiceThread needs to know about all OopStorage objects
kbarrett
parents: 57698
diff changeset
    43
  friend void jni_handles_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
44406
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    45
  inline static bool is_jweak(jobject handle);
49656
be608cad0b2a 8195972: Refactor oops in JNI to use the Access API
kbarrett
parents: 49192
diff changeset
    46
  inline static oop* jobject_ptr(jobject handle); // NOT jweak!
be608cad0b2a 8195972: Refactor oops in JNI to use the Access API
kbarrett
parents: 49192
diff changeset
    47
  inline static oop* jweak_ptr(jobject handle);
44406
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    48
53060
7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive
pliden
parents: 49909
diff changeset
    49
  template <DecoratorSet decorators, bool external_guard> inline static oop resolve_impl(jobject handle);
7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive
pliden
parents: 49909
diff changeset
    50
7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive
pliden
parents: 49909
diff changeset
    51
  // Resolve handle into oop, without keeping the object alive
7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive
pliden
parents: 49909
diff changeset
    52
  inline static oop resolve_no_keepalive(jobject handle);
44406
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    53
48465
f82e79958beb 8167372: Add code to check for getting oops while thread is in native
hseigel
parents: 48147
diff changeset
    54
  // This method is not inlined in order to avoid circular includes between
f82e79958beb 8167372: Add code to check for getting oops while thread is in native
hseigel
parents: 48147
diff changeset
    55
  // this header file and thread.hpp.
f82e79958beb 8167372: Add code to check for getting oops while thread is in native
hseigel
parents: 48147
diff changeset
    56
  static bool current_thread_in_native();
f82e79958beb 8167372: Add code to check for getting oops while thread is in native
hseigel
parents: 48147
diff changeset
    57
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
 public:
44406
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    59
  // Low tag bit in jobject used to distinguish a jweak.  jweak is
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    60
  // type equivalent to jobject, but there are places where we need to
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    61
  // be able to distinguish jweak values from other jobjects, and
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    62
  // is_weak_global_handle is unsuitable for performance reasons.  To
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    63
  // provide such a test we add weak_tag_value to the (aligned) byte
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    64
  // address designated by the jobject to produce the corresponding
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    65
  // jweak.  Accessing the value of a jobject must account for it
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    66
  // being a possibly offset jweak.
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    67
  static const uintptr_t weak_tag_size = 1;
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    68
  static const uintptr_t weak_tag_alignment = (1u << weak_tag_size);
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    69
  static const uintptr_t weak_tag_mask = weak_tag_alignment - 1;
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    70
  static const int weak_tag_value = 1;
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
    71
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Resolve handle into oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  inline static oop resolve(jobject handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // Resolve handle into oop, result guaranteed not to be null
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  inline static oop resolve_non_null(jobject handle);
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 48808
diff changeset
    76
  // Resolve externally provided handle into oop with some guards
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 48808
diff changeset
    77
  static oop resolve_external_guard(jobject handle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
53060
7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive
pliden
parents: 49909
diff changeset
    79
  // Check for equality without keeping objects alive
7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive
pliden
parents: 49909
diff changeset
    80
  static bool is_same_object(jobject handle1, jobject handle2);
7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive
pliden
parents: 49909
diff changeset
    81
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Local handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static jobject make_local(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static jobject make_local(JNIEnv* env, oop obj);    // Fast version when env is known
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static jobject make_local(Thread* thread, oop obj); // Even faster version when current thread is known
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  inline static void destroy_local(jobject handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Global handles
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
    89
  static jobject make_global(Handle  obj, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static void destroy_global(jobject handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Weak global handles
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
    93
  static jobject make_weak_global(Handle obj, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static void destroy_weak_global(jobject handle);
47794
e84aa2c71241 8188102: [JVMCI] Convert special JVMCI oops in nmethod to jweak values
dnsimon
parents: 47216
diff changeset
    95
  static bool is_global_weak_cleared(jweak handle); // Test jweak without resolution
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static void print_on(outputStream* st);
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 53244
diff changeset
   102
  static void print();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  static void verify();
48808
2b0b7f222800 8195690: JNI GetObjectRefType doesn't handle NULL
kbarrett
parents: 48787
diff changeset
   104
  // The category predicates all require handle != NULL.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  static bool is_local_handle(Thread* thread, jobject handle);
48808
2b0b7f222800 8195690: JNI GetObjectRefType doesn't handle NULL
kbarrett
parents: 48787
diff changeset
   106
  static bool is_frame_handle(JavaThread* thread, jobject handle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  static bool is_global_handle(jobject handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  static bool is_weak_global_handle(jobject handle);
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   109
  static size_t global_handle_memory_usage();
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   110
  static size_t weak_global_handle_memory_usage();
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   111
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   112
#ifndef PRODUCT
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   113
  // Is handle from any local block of any thread?
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   114
  static bool is_local_handle(jobject handle);
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   115
#endif
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   116
48808
2b0b7f222800 8195690: JNI GetObjectRefType doesn't handle NULL
kbarrett
parents: 48787
diff changeset
   117
  // precondition: handle != NULL.
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   118
  static jobjectRefType handle_type(Thread* thread, jobject handle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Garbage collection support(global handles only, local handles are traversed from thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Traversal of regular global handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Traversal of weak global handles. Unreachable oops are cleared.
32817
acc2744fd84b 8136627: Backout JDK-8133818 Additional number of processed references printed with -XX:+PrintReferenceGC after JDK-8047125
kbarrett
parents: 32607
diff changeset
   124
  static void weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f);
37106
0856b64af754 8151539: Remove duplicate AlwaysTrueClosures
stefank
parents: 32817
diff changeset
   125
  // Traversal of weak global handles.
0856b64af754 8151539: Remove duplicate AlwaysTrueClosures
stefank
parents: 32817
diff changeset
   126
  static void weak_oops_do(OopClosure* f);
1
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// JNI handle blocks holding local/global JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   133
class JNIHandleBlock : public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  friend class VMStructs;
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3672
diff changeset
   135
  friend class CppInterpreter;
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3672
diff changeset
   136
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  enum SomeConstants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    block_size_in_oops  = 32                    // Number of handles per handle block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
57698
9dc92e89243a 8229027: Improve how JNIHandleBlock::oops_do distinguishes oops from non-oops
eosterlund
parents: 55213
diff changeset
   142
  uintptr_t       _handles[block_size_in_oops]; // The handles
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  int             _top;                         // Index of next unused handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  JNIHandleBlock* _next;                        // Link to next block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // The following instance variables are only used by the first block in a chain.
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 13728
diff changeset
   147
  // Having two types of blocks complicates the code and the space overhead in negligible.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  JNIHandleBlock* _last;                        // Last block in use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  JNIHandleBlock* _pop_frame_link;              // Block to restore on PopLocalFrame call
57698
9dc92e89243a 8229027: Improve how JNIHandleBlock::oops_do distinguishes oops from non-oops
eosterlund
parents: 55213
diff changeset
   150
  uintptr_t*      _free_list;                   // Handle free list
55213
b78597cfcced 8225217: Backout: JDK-8224814: Remove dead JNIHandleBlock freelist code
dholmes
parents: 55153
diff changeset
   151
  int             _allocate_before_rebuild;     // Number of blocks to allocate before rebuilding free list
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
25058
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   153
  // Check JNI, "planned capacity" for current frame (or push/ensure)
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   154
  size_t          _planned_capacity;
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   155
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  JNIHandleBlock* _block_list_link;             // Link for list below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  static JNIHandleBlock* _block_list;           // List of all allocated blocks (for debugging only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static JNIHandleBlock* _block_free_list;      // Free list of currently unused blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  static int      _blocks_allocated;            // For debugging/printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Fill block with bad_handle values
48147
1b57d99567ed 8191870: Remove badJNIHandle
kbarrett
parents: 47794
diff changeset
   165
  void zap() NOT_DEBUG_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
55213
b78597cfcced 8225217: Backout: JDK-8224814: Remove dead JNIHandleBlock freelist code
dholmes
parents: 55153
diff changeset
   167
  // Free list computation
b78597cfcced 8225217: Backout: JDK-8224814: Remove dead JNIHandleBlock freelist code
dholmes
parents: 55153
diff changeset
   168
  void rebuild_free_list();
b78597cfcced 8225217: Backout: JDK-8224814: Remove dead JNIHandleBlock freelist code
dholmes
parents: 55153
diff changeset
   169
46724
a4653c2a4e65 8185263: Fix zero build after 8169881, 8175318, 8178350
stuefe
parents: 46703
diff changeset
   170
  // No more handles in the both the current and following blocks
a4653c2a4e65 8185263: Fix zero build after 8169881, 8175318, 8178350
stuefe
parents: 46703
diff changeset
   171
  void clear() { _top = 0; }
a4653c2a4e65 8185263: Fix zero build after 8169881, 8175318, 8178350
stuefe
parents: 46703
diff changeset
   172
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Handle allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  jobject allocate_handle(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // Block allocation and block free list management
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static JNIHandleBlock* allocate_block(Thread* thread = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  static void release_block(JNIHandleBlock* block, Thread* thread = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // JNI PushLocalFrame/PopLocalFrame support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  JNIHandleBlock* pop_frame_link() const          { return _pop_frame_link; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void set_pop_frame_link(JNIHandleBlock* block)  { _pop_frame_link = block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // Stub generator support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  static int top_offset_in_bytes()                { return offset_of(JNIHandleBlock, _top); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Garbage collection support
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   189
  // Traversal of handles
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
25058
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   192
  // Checked JNI support
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   193
  void set_planned_capacity(size_t planned_capacity) { _planned_capacity = planned_capacity; }
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   194
  const size_t get_planned_capacity() { return _planned_capacity; }
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   195
  const size_t get_number_of_live_handles();
4542f853c2ac 8043224: -Xcheck:jni improvements to exception checking and excessive local refs
dsimms
parents: 22551
diff changeset
   196
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  bool chain_contains(jobject handle) const;    // Does this block or following blocks contain handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  bool contains(jobject handle) const;          // Does this block contain handle
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   200
  size_t length() const;                        // Length of chain starting with this block
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48465
diff changeset
   201
  size_t memory_usage() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  static bool any_contains(jobject handle);     // Does any block currently in use contain handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  static void print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
   208
#endif // SHARE_RUNTIME_JNIHANDLES_HPP