src/share/vm/runtime/jniHandles.hpp

Wed, 11 Mar 2015 13:36:57 -0700

author
poonam
date
Wed, 11 Mar 2015 13:36:57 -0700
changeset 7627
d68158e12cea
parent 4037
da91efe96a93
child 7994
04ff2f6cd0eb
child 9665
a8441ccaff15
permissions
-rw-r--r--

8043224: -Xcheck:jni improvements to exception checking and excessive local refs
Summary: Warning when not checking exceptions from function that require so, also when local refs expand beyond capacity.
Reviewed-by: dsimms

duke@435 1 /*
poonam@7627 2 * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_RUNTIME_JNIHANDLES_HPP
stefank@2314 26 #define SHARE_VM_RUNTIME_JNIHANDLES_HPP
stefank@2314 27
stefank@2314 28 #include "runtime/handles.hpp"
stefank@2314 29 #include "utilities/top.hpp"
stefank@2314 30
duke@435 31 class JNIHandleBlock;
duke@435 32
duke@435 33
duke@435 34 // Interface for creating and resolving local/global JNI handles
duke@435 35
duke@435 36 class JNIHandles : AllStatic {
duke@435 37 friend class VMStructs;
duke@435 38 private:
duke@435 39 static JNIHandleBlock* _global_handles; // First global handle block
duke@435 40 static JNIHandleBlock* _weak_global_handles; // First weak global handle block
duke@435 41 static oop _deleted_handle; // Sentinel marking deleted handles
duke@435 42
duke@435 43 public:
duke@435 44 // Resolve handle into oop
duke@435 45 inline static oop resolve(jobject handle);
duke@435 46 // Resolve externally provided handle into oop with some guards
duke@435 47 inline static oop resolve_external_guard(jobject handle);
duke@435 48 // Resolve handle into oop, result guaranteed not to be null
duke@435 49 inline static oop resolve_non_null(jobject handle);
duke@435 50
duke@435 51 // Local handles
duke@435 52 static jobject make_local(oop obj);
duke@435 53 static jobject make_local(JNIEnv* env, oop obj); // Fast version when env is known
duke@435 54 static jobject make_local(Thread* thread, oop obj); // Even faster version when current thread is known
duke@435 55 inline static void destroy_local(jobject handle);
duke@435 56
duke@435 57 // Global handles
duke@435 58 static jobject make_global(Handle obj);
duke@435 59 static void destroy_global(jobject handle);
duke@435 60
duke@435 61 // Weak global handles
duke@435 62 static jobject make_weak_global(Handle obj);
duke@435 63 static void destroy_weak_global(jobject handle);
duke@435 64
duke@435 65 // Sentinel marking deleted handles in block. Note that we cannot store NULL as
duke@435 66 // the sentinel, since clearing weak global JNI refs are done by storing NULL in
duke@435 67 // the handle. The handle may not be reused before destroy_weak_global is called.
duke@435 68 static oop deleted_handle() { return _deleted_handle; }
duke@435 69
duke@435 70 // Initialization
duke@435 71 static void initialize();
duke@435 72
duke@435 73 // Debugging
duke@435 74 static void print_on(outputStream* st);
duke@435 75 static void print() { print_on(tty); }
duke@435 76 static void verify();
duke@435 77 static bool is_local_handle(Thread* thread, jobject handle);
duke@435 78 static bool is_frame_handle(JavaThread* thr, jobject obj);
duke@435 79 static bool is_global_handle(jobject handle);
duke@435 80 static bool is_weak_global_handle(jobject handle);
duke@435 81 static long global_handle_memory_usage();
duke@435 82 static long weak_global_handle_memory_usage();
duke@435 83
duke@435 84 // Garbage collection support(global handles only, local handles are traversed from thread)
duke@435 85 // Traversal of regular global handles
duke@435 86 static void oops_do(OopClosure* f);
duke@435 87 // Traversal of weak global handles. Unreachable oops are cleared.
duke@435 88 static void weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f);
duke@435 89 };
duke@435 90
duke@435 91
duke@435 92
duke@435 93 // JNI handle blocks holding local/global JNI handles
duke@435 94
zgu@3900 95 class JNIHandleBlock : public CHeapObj<mtInternal> {
duke@435 96 friend class VMStructs;
never@1445 97 friend class CppInterpreter;
never@1445 98
duke@435 99 private:
duke@435 100 enum SomeConstants {
duke@435 101 block_size_in_oops = 32 // Number of handles per handle block
duke@435 102 };
duke@435 103
duke@435 104 oop _handles[block_size_in_oops]; // The handles
duke@435 105 int _top; // Index of next unused handle
duke@435 106 JNIHandleBlock* _next; // Link to next block
duke@435 107
duke@435 108 // The following instance variables are only used by the first block in a chain.
duke@435 109 // Having two types of blocks complicates the code and the space overhead in negligble.
duke@435 110 JNIHandleBlock* _last; // Last block in use
duke@435 111 JNIHandleBlock* _pop_frame_link; // Block to restore on PopLocalFrame call
duke@435 112 oop* _free_list; // Handle free list
duke@435 113 int _allocate_before_rebuild; // Number of blocks to allocate before rebuilding free list
duke@435 114
poonam@7627 115 // Check JNI, "planned capacity" for current frame (or push/ensure)
poonam@7627 116 size_t _planned_capacity;
poonam@7627 117
duke@435 118 #ifndef PRODUCT
duke@435 119 JNIHandleBlock* _block_list_link; // Link for list below
duke@435 120 static JNIHandleBlock* _block_list; // List of all allocated blocks (for debugging only)
duke@435 121 #endif
duke@435 122
duke@435 123 static JNIHandleBlock* _block_free_list; // Free list of currently unused blocks
duke@435 124 static int _blocks_allocated; // For debugging/printing
duke@435 125
duke@435 126 // Fill block with bad_handle values
duke@435 127 void zap();
duke@435 128
never@1445 129 protected:
duke@435 130 // No more handles in the both the current and following blocks
duke@435 131 void clear() { _top = 0; }
duke@435 132
never@1445 133 private:
duke@435 134 // Free list computation
duke@435 135 void rebuild_free_list();
duke@435 136
duke@435 137 public:
duke@435 138 // Handle allocation
duke@435 139 jobject allocate_handle(oop obj);
duke@435 140
duke@435 141 // Block allocation and block free list management
duke@435 142 static JNIHandleBlock* allocate_block(Thread* thread = NULL);
duke@435 143 static void release_block(JNIHandleBlock* block, Thread* thread = NULL);
duke@435 144
duke@435 145 // JNI PushLocalFrame/PopLocalFrame support
duke@435 146 JNIHandleBlock* pop_frame_link() const { return _pop_frame_link; }
duke@435 147 void set_pop_frame_link(JNIHandleBlock* block) { _pop_frame_link = block; }
duke@435 148
duke@435 149 // Stub generator support
duke@435 150 static int top_offset_in_bytes() { return offset_of(JNIHandleBlock, _top); }
duke@435 151
duke@435 152 // Garbage collection support
duke@435 153 // Traversal of regular handles
duke@435 154 void oops_do(OopClosure* f);
duke@435 155 // Traversal of weak handles. Unreachable oops are cleared.
duke@435 156 void weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f);
duke@435 157
poonam@7627 158 // Checked JNI support
poonam@7627 159 void set_planned_capacity(size_t planned_capacity) { _planned_capacity = planned_capacity; }
poonam@7627 160 const size_t get_planned_capacity() { return _planned_capacity; }
poonam@7627 161 const size_t get_number_of_live_handles();
poonam@7627 162
duke@435 163 // Debugging
duke@435 164 bool chain_contains(jobject handle) const; // Does this block or following blocks contain handle
duke@435 165 bool contains(jobject handle) const; // Does this block contain handle
duke@435 166 int length() const; // Length of chain starting with this block
duke@435 167 long memory_usage() const;
duke@435 168 #ifndef PRODUCT
duke@435 169 static bool any_contains(jobject handle); // Does any block currently in use contain handle
duke@435 170 static void print_statistics();
duke@435 171 #endif
duke@435 172 };
duke@435 173
duke@435 174
duke@435 175 inline oop JNIHandles::resolve(jobject handle) {
duke@435 176 oop result = (handle == NULL ? (oop)NULL : *(oop*)handle);
duke@435 177 assert(result != NULL || (handle == NULL || !CheckJNICalls || is_weak_global_handle(handle)), "Invalid value read from jni handle");
duke@435 178 assert(result != badJNIHandle, "Pointing to zapped jni handle area");
duke@435 179 return result;
duke@435 180 };
duke@435 181
duke@435 182
duke@435 183 inline oop JNIHandles::resolve_external_guard(jobject handle) {
duke@435 184 if (handle == NULL) return NULL;
duke@435 185 oop result = *(oop*)handle;
duke@435 186 if (result == NULL || result == badJNIHandle) return NULL;
duke@435 187 return result;
duke@435 188 };
duke@435 189
duke@435 190
duke@435 191 inline oop JNIHandles::resolve_non_null(jobject handle) {
duke@435 192 assert(handle != NULL, "JNI handle should not be null");
duke@435 193 oop result = *(oop*)handle;
duke@435 194 assert(result != NULL, "Invalid value read from jni handle");
duke@435 195 assert(result != badJNIHandle, "Pointing to zapped jni handle area");
duke@435 196 // Don't let that private _deleted_handle object escape into the wild.
duke@435 197 assert(result != deleted_handle(), "Used a deleted global handle.");
duke@435 198 return result;
duke@435 199 };
duke@435 200
duke@435 201 inline void JNIHandles::destroy_local(jobject handle) {
duke@435 202 if (handle != NULL) {
duke@435 203 *((oop*)handle) = deleted_handle(); // Mark the handle as deleted, allocate will reuse it
duke@435 204 }
duke@435 205 }
stefank@2314 206
stefank@2314 207 #endif // SHARE_VM_RUNTIME_JNIHANDLES_HPP

mercurial