src/share/vm/runtime/jniHandles.hpp

Tue, 04 Mar 2008 09:44:24 -0500

author
sbohne
date
Tue, 04 Mar 2008 09:44:24 -0500
changeset 493
7ee622712fcf
parent 435
a61af66fc99e
child 1352
1760a1cbed36
permissions
-rw-r--r--

6666698: EnableBiasedLocking with BiasedLockingStartupDelay can block Watcher thread
Summary: Enqueue VM_EnableBiasedLocking operation asynchronously
Reviewed-by: never, xlu, kbr, acorn

duke@435 1 /*
duke@435 2 * Copyright 1998-2007 Sun Microsystems, Inc. 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 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 class JNIHandleBlock;
duke@435 26
duke@435 27
duke@435 28 // Interface for creating and resolving local/global JNI handles
duke@435 29
duke@435 30 class JNIHandles : AllStatic {
duke@435 31 friend class VMStructs;
duke@435 32 private:
duke@435 33 static JNIHandleBlock* _global_handles; // First global handle block
duke@435 34 static JNIHandleBlock* _weak_global_handles; // First weak global handle block
duke@435 35 static oop _deleted_handle; // Sentinel marking deleted handles
duke@435 36
duke@435 37 public:
duke@435 38 // Resolve handle into oop
duke@435 39 inline static oop resolve(jobject handle);
duke@435 40 // Resolve externally provided handle into oop with some guards
duke@435 41 inline static oop resolve_external_guard(jobject handle);
duke@435 42 // Resolve handle into oop, result guaranteed not to be null
duke@435 43 inline static oop resolve_non_null(jobject handle);
duke@435 44
duke@435 45 // Local handles
duke@435 46 static jobject make_local(oop obj);
duke@435 47 static jobject make_local(JNIEnv* env, oop obj); // Fast version when env is known
duke@435 48 static jobject make_local(Thread* thread, oop obj); // Even faster version when current thread is known
duke@435 49 inline static void destroy_local(jobject handle);
duke@435 50
duke@435 51 // Global handles
duke@435 52 static jobject make_global(Handle obj);
duke@435 53 static void destroy_global(jobject handle);
duke@435 54
duke@435 55 // Weak global handles
duke@435 56 static jobject make_weak_global(Handle obj);
duke@435 57 static void destroy_weak_global(jobject handle);
duke@435 58
duke@435 59 // jmethodID handling (as Weak global handles).
duke@435 60 // Because the useful life-span of a jmethodID cannot be determined, once created they are
duke@435 61 // never reclaimed. The methods to which they refer, however, can be GC'ed away if the class
duke@435 62 // is unloaded or if the method is made obsolete or deleted -- in these cases, the jmethodID
duke@435 63 // refers to NULL (as is the case for any weak reference).
duke@435 64 static jmethodID make_jmethod_id(methodHandle mh);
duke@435 65 static void destroy_jmethod_id(jmethodID mid);
duke@435 66 inline static methodOop resolve_jmethod_id(jmethodID mid);
duke@435 67 inline static methodOop checked_resolve_jmethod_id(jmethodID mid); // NULL on invalid jmethodID
duke@435 68 static void change_method_associated_with_jmethod_id(jmethodID jmid, methodHandle mh);
duke@435 69
duke@435 70 // Sentinel marking deleted handles in block. Note that we cannot store NULL as
duke@435 71 // the sentinel, since clearing weak global JNI refs are done by storing NULL in
duke@435 72 // the handle. The handle may not be reused before destroy_weak_global is called.
duke@435 73 static oop deleted_handle() { return _deleted_handle; }
duke@435 74
duke@435 75 // Initialization
duke@435 76 static void initialize();
duke@435 77
duke@435 78 // Debugging
duke@435 79 static void print_on(outputStream* st);
duke@435 80 static void print() { print_on(tty); }
duke@435 81 static void verify();
duke@435 82 static bool is_local_handle(Thread* thread, jobject handle);
duke@435 83 static bool is_frame_handle(JavaThread* thr, jobject obj);
duke@435 84 static bool is_global_handle(jobject handle);
duke@435 85 static bool is_weak_global_handle(jobject handle);
duke@435 86 static long global_handle_memory_usage();
duke@435 87 static long weak_global_handle_memory_usage();
duke@435 88
duke@435 89 // Garbage collection support(global handles only, local handles are traversed from thread)
duke@435 90 // Traversal of regular global handles
duke@435 91 static void oops_do(OopClosure* f);
duke@435 92 // Traversal of weak global handles. Unreachable oops are cleared.
duke@435 93 static void weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f);
duke@435 94 };
duke@435 95
duke@435 96
duke@435 97
duke@435 98 // JNI handle blocks holding local/global JNI handles
duke@435 99
duke@435 100 class JNIHandleBlock : public CHeapObj {
duke@435 101 friend class VMStructs;
duke@435 102 private:
duke@435 103 enum SomeConstants {
duke@435 104 block_size_in_oops = 32 // Number of handles per handle block
duke@435 105 };
duke@435 106
duke@435 107 oop _handles[block_size_in_oops]; // The handles
duke@435 108 int _top; // Index of next unused handle
duke@435 109 JNIHandleBlock* _next; // Link to next block
duke@435 110
duke@435 111 // The following instance variables are only used by the first block in a chain.
duke@435 112 // Having two types of blocks complicates the code and the space overhead in negligble.
duke@435 113 JNIHandleBlock* _last; // Last block in use
duke@435 114 JNIHandleBlock* _pop_frame_link; // Block to restore on PopLocalFrame call
duke@435 115 oop* _free_list; // Handle free list
duke@435 116 int _allocate_before_rebuild; // Number of blocks to allocate before rebuilding free list
duke@435 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
duke@435 129 // No more handles in the both the current and following blocks
duke@435 130 void clear() { _top = 0; }
duke@435 131
duke@435 132 // Free list computation
duke@435 133 void rebuild_free_list();
duke@435 134
duke@435 135 public:
duke@435 136 // Handle allocation
duke@435 137 jobject allocate_handle(oop obj);
duke@435 138
duke@435 139 // Block allocation and block free list management
duke@435 140 static JNIHandleBlock* allocate_block(Thread* thread = NULL);
duke@435 141 static void release_block(JNIHandleBlock* block, Thread* thread = NULL);
duke@435 142
duke@435 143 // JNI PushLocalFrame/PopLocalFrame support
duke@435 144 JNIHandleBlock* pop_frame_link() const { return _pop_frame_link; }
duke@435 145 void set_pop_frame_link(JNIHandleBlock* block) { _pop_frame_link = block; }
duke@435 146
duke@435 147 // Stub generator support
duke@435 148 static int top_offset_in_bytes() { return offset_of(JNIHandleBlock, _top); }
duke@435 149
duke@435 150 // Garbage collection support
duke@435 151 // Traversal of regular handles
duke@435 152 void oops_do(OopClosure* f);
duke@435 153 // Traversal of weak handles. Unreachable oops are cleared.
duke@435 154 void weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f);
duke@435 155
duke@435 156 // Debugging
duke@435 157 bool chain_contains(jobject handle) const; // Does this block or following blocks contain handle
duke@435 158 bool contains(jobject handle) const; // Does this block contain handle
duke@435 159 int length() const; // Length of chain starting with this block
duke@435 160 long memory_usage() const;
duke@435 161 #ifndef PRODUCT
duke@435 162 static bool any_contains(jobject handle); // Does any block currently in use contain handle
duke@435 163 static void print_statistics();
duke@435 164 #endif
duke@435 165 };
duke@435 166
duke@435 167
duke@435 168 inline oop JNIHandles::resolve(jobject handle) {
duke@435 169 oop result = (handle == NULL ? (oop)NULL : *(oop*)handle);
duke@435 170 assert(result != NULL || (handle == NULL || !CheckJNICalls || is_weak_global_handle(handle)), "Invalid value read from jni handle");
duke@435 171 assert(result != badJNIHandle, "Pointing to zapped jni handle area");
duke@435 172 return result;
duke@435 173 };
duke@435 174
duke@435 175
duke@435 176 inline oop JNIHandles::resolve_external_guard(jobject handle) {
duke@435 177 if (handle == NULL) return NULL;
duke@435 178 oop result = *(oop*)handle;
duke@435 179 if (result == NULL || result == badJNIHandle) return NULL;
duke@435 180 return result;
duke@435 181 };
duke@435 182
duke@435 183
duke@435 184 inline oop JNIHandles::resolve_non_null(jobject handle) {
duke@435 185 assert(handle != NULL, "JNI handle should not be null");
duke@435 186 oop result = *(oop*)handle;
duke@435 187 assert(result != NULL, "Invalid value read from jni handle");
duke@435 188 assert(result != badJNIHandle, "Pointing to zapped jni handle area");
duke@435 189 // Don't let that private _deleted_handle object escape into the wild.
duke@435 190 assert(result != deleted_handle(), "Used a deleted global handle.");
duke@435 191 return result;
duke@435 192 };
duke@435 193
duke@435 194 inline methodOop JNIHandles::resolve_jmethod_id(jmethodID mid) {
duke@435 195 return (methodOop) resolve_non_null((jobject)mid);
duke@435 196 };
duke@435 197
duke@435 198 inline methodOop JNIHandles::checked_resolve_jmethod_id(jmethodID mid) {
duke@435 199 jobject handle = (jobject)mid;
duke@435 200 if (is_weak_global_handle(handle)) {
duke@435 201 return (methodOop) resolve_non_null(handle);
duke@435 202 } else {
duke@435 203 return (methodOop) NULL;
duke@435 204 }
duke@435 205 };
duke@435 206
duke@435 207
duke@435 208 inline void JNIHandles::destroy_local(jobject handle) {
duke@435 209 if (handle != NULL) {
duke@435 210 *((oop*)handle) = deleted_handle(); // Mark the handle as deleted, allocate will reuse it
duke@435 211 }
duke@435 212 }

mercurial