src/share/vm/prims/whitebox.cpp

Wed, 28 Nov 2012 17:50:21 -0500

author
coleenp
date
Wed, 28 Nov 2012 17:50:21 -0500
changeset 4295
59c790074993
parent 4037
da91efe96a93
child 4512
4102b59539ce
child 4542
db9981fd3124
permissions
-rw-r--r--

8003635: NPG: AsynchGetCallTrace broken by Method* virtual call
Summary: Make metaspace::contains be lock free and used to see if something is in metaspace, also compare Method* with vtbl pointer.
Reviewed-by: dholmes, sspitsyn, dcubed, jmasa

mgerdin@3619 1 /*
mgerdin@3619 2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
mgerdin@3619 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mgerdin@3619 4 *
mgerdin@3619 5 * This code is free software; you can redistribute it and/or modify it
mgerdin@3619 6 * under the terms of the GNU General Public License version 2 only, as
mgerdin@3619 7 * published by the Free Software Foundation.
mgerdin@3619 8 *
mgerdin@3619 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mgerdin@3619 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mgerdin@3619 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mgerdin@3619 12 * version 2 for more details (a copy is included in the LICENSE file that
mgerdin@3619 13 * accompanied this code).
mgerdin@3619 14 *
mgerdin@3619 15 * You should have received a copy of the GNU General Public License version
mgerdin@3619 16 * 2 along with this work; if not, write to the Free Software Foundation,
mgerdin@3619 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mgerdin@3619 18 *
mgerdin@3619 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
mgerdin@3619 20 * or visit www.oracle.com if you need additional information or have any
mgerdin@3619 21 * questions.
mgerdin@3619 22 *
mgerdin@3619 23 */
mgerdin@3619 24
mgerdin@3619 25 #include "precompiled.hpp"
mgerdin@3619 26
mgerdin@3619 27 #include "memory/universe.hpp"
mgerdin@3619 28 #include "oops/oop.inline.hpp"
nloodin@3681 29
nloodin@3681 30 #include "classfile/symbolTable.hpp"
coleenp@4037 31 #include "classfile/classLoaderData.hpp"
nloodin@3681 32
mgerdin@3619 33 #include "prims/whitebox.hpp"
nloodin@3681 34 #include "prims/wbtestmethods/parserTests.hpp"
nloodin@3681 35
mgerdin@3619 36 #include "runtime/interfaceSupport.hpp"
mgerdin@3619 37 #include "runtime/os.hpp"
mgerdin@3619 38 #include "utilities/debug.hpp"
mgerdin@3619 39
mgerdin@3619 40 #ifndef SERIALGC
mgerdin@3619 41 #include "gc_implementation/g1/concurrentMark.hpp"
mgerdin@3619 42 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
mgerdin@3619 43 #include "gc_implementation/g1/heapRegionRemSet.hpp"
mgerdin@3619 44 #endif // !SERIALGC
mgerdin@3619 45
mgerdin@3619 46 bool WhiteBox::_used = false;
mgerdin@3619 47
mgerdin@3619 48 WB_ENTRY(jlong, WB_GetObjectAddress(JNIEnv* env, jobject o, jobject obj))
mgerdin@3619 49 return (jlong)(void*)JNIHandles::resolve(obj);
mgerdin@3619 50 WB_END
mgerdin@3619 51
mgerdin@3619 52 WB_ENTRY(jint, WB_GetHeapOopSize(JNIEnv* env, jobject o))
mgerdin@3619 53 return heapOopSize;
mgerdin@3619 54 WB_END
mgerdin@3619 55
coleenp@4037 56
coleenp@4037 57 class WBIsKlassAliveClosure : public KlassClosure {
coleenp@4037 58 Symbol* _name;
coleenp@4037 59 bool _found;
coleenp@4037 60 public:
coleenp@4037 61 WBIsKlassAliveClosure(Symbol* name) : _name(name), _found(false) {}
coleenp@4037 62
coleenp@4037 63 void do_klass(Klass* k) {
coleenp@4037 64 if (_found) return;
coleenp@4037 65 Symbol* ksym = k->name();
coleenp@4037 66 if (ksym->fast_compare(_name) == 0) {
coleenp@4037 67 _found = true;
coleenp@4037 68 }
coleenp@4037 69 }
coleenp@4037 70
coleenp@4037 71 bool found() const {
coleenp@4037 72 return _found;
coleenp@4037 73 }
coleenp@4037 74 };
coleenp@4037 75
coleenp@4037 76 WB_ENTRY(jboolean, WB_IsClassAlive(JNIEnv* env, jobject target, jstring name))
coleenp@4037 77 Handle h_name = JNIHandles::resolve(name);
coleenp@4037 78 if (h_name.is_null()) return false;
coleenp@4037 79 Symbol* sym = java_lang_String::as_symbol(h_name, CHECK_false);
coleenp@4037 80 TempNewSymbol tsym(sym); // Make sure to decrement reference count on sym on return
coleenp@4037 81
coleenp@4037 82 WBIsKlassAliveClosure closure(sym);
coleenp@4037 83 ClassLoaderDataGraph::classes_do(&closure);
coleenp@4037 84
coleenp@4037 85 return closure.found();
coleenp@4037 86 WB_END
coleenp@4037 87
mgerdin@3619 88 #ifndef SERIALGC
mgerdin@3619 89 WB_ENTRY(jboolean, WB_G1IsHumongous(JNIEnv* env, jobject o, jobject obj))
mgerdin@3619 90 G1CollectedHeap* g1 = G1CollectedHeap::heap();
mgerdin@3619 91 oop result = JNIHandles::resolve(obj);
mgerdin@3619 92 const HeapRegion* hr = g1->heap_region_containing(result);
mgerdin@3619 93 return hr->isHumongous();
mgerdin@3619 94 WB_END
mgerdin@3619 95
mgerdin@3619 96 WB_ENTRY(jlong, WB_G1NumFreeRegions(JNIEnv* env, jobject o))
mgerdin@3619 97 G1CollectedHeap* g1 = G1CollectedHeap::heap();
mgerdin@3619 98 size_t nr = g1->free_regions();
mgerdin@3619 99 return (jlong)nr;
mgerdin@3619 100 WB_END
mgerdin@3619 101
mgerdin@3619 102 WB_ENTRY(jboolean, WB_G1InConcurrentMark(JNIEnv* env, jobject o))
mgerdin@3619 103 G1CollectedHeap* g1 = G1CollectedHeap::heap();
mgerdin@3619 104 ConcurrentMark* cm = g1->concurrent_mark();
mgerdin@3619 105 return cm->concurrent_marking_in_progress();
mgerdin@3619 106 WB_END
mgerdin@3619 107
mgerdin@3619 108 WB_ENTRY(jint, WB_G1RegionSize(JNIEnv* env, jobject o))
mgerdin@3619 109 return (jint)HeapRegion::GrainBytes;
mgerdin@3619 110 WB_END
mgerdin@3619 111 #endif // !SERIALGC
mgerdin@3619 112
nloodin@3681 113 //Some convenience methods to deal with objects from java
nloodin@3681 114 int WhiteBox::offset_for_field(const char* field_name, oop object,
nloodin@3681 115 Symbol* signature_symbol) {
nloodin@3681 116 assert(field_name != NULL && strlen(field_name) > 0, "Field name not valid");
nloodin@3681 117 Thread* THREAD = Thread::current();
nloodin@3681 118
nloodin@3681 119 //Get the class of our object
coleenp@4037 120 Klass* arg_klass = object->klass();
nloodin@3681 121 //Turn it into an instance-klass
coleenp@4037 122 InstanceKlass* ik = InstanceKlass::cast(arg_klass);
nloodin@3681 123
nloodin@3681 124 //Create symbols to look for in the class
nloodin@3681 125 TempNewSymbol name_symbol = SymbolTable::lookup(field_name, (int) strlen(field_name),
nloodin@3681 126 THREAD);
nloodin@3681 127
nloodin@3681 128 //To be filled in with an offset of the field we're looking for
nloodin@3681 129 fieldDescriptor fd;
nloodin@3681 130
coleenp@4037 131 Klass* res = ik->find_field(name_symbol, signature_symbol, &fd);
nloodin@3681 132 if (res == NULL) {
nloodin@3681 133 tty->print_cr("Invalid layout of %s at %s", ik->external_name(),
nloodin@3681 134 name_symbol->as_C_string());
nloodin@3681 135 fatal("Invalid layout of preloaded class");
nloodin@3681 136 }
nloodin@3681 137
nloodin@3681 138 //fetch the field at the offset we've found
nloodin@3681 139 int dest_offset = fd.offset();
nloodin@3681 140
nloodin@3681 141 return dest_offset;
nloodin@3681 142 }
nloodin@3681 143
nloodin@3681 144
nloodin@3681 145 const char* WhiteBox::lookup_jstring(const char* field_name, oop object) {
nloodin@3681 146 int offset = offset_for_field(field_name, object,
nloodin@3681 147 vmSymbols::string_signature());
nloodin@3681 148 oop string = object->obj_field(offset);
sla@3905 149 if (string == NULL) {
sla@3905 150 return NULL;
sla@3905 151 }
nloodin@3681 152 const char* ret = java_lang_String::as_utf8_string(string);
nloodin@3681 153 return ret;
nloodin@3681 154 }
nloodin@3681 155
nloodin@3681 156 bool WhiteBox::lookup_bool(const char* field_name, oop object) {
nloodin@3681 157 int offset =
nloodin@3681 158 offset_for_field(field_name, object, vmSymbols::bool_signature());
nloodin@3681 159 bool ret = (object->bool_field(offset) == JNI_TRUE);
nloodin@3681 160 return ret;
nloodin@3681 161 }
nloodin@3681 162
nloodin@3681 163
mgerdin@3619 164 #define CC (char*)
mgerdin@3619 165
mgerdin@3619 166 static JNINativeMethod methods[] = {
mgerdin@3619 167 {CC"getObjectAddress", CC"(Ljava/lang/Object;)J", (void*)&WB_GetObjectAddress },
mgerdin@3619 168 {CC"getHeapOopSize", CC"()I", (void*)&WB_GetHeapOopSize },
coleenp@4037 169 {CC"isClassAlive0", CC"(Ljava/lang/String;)Z", (void*)&WB_IsClassAlive },
nloodin@3681 170 {CC "parseCommandLine",
nloodin@3681 171 CC "(Ljava/lang/String;[Lsun/hotspot/parser/DiagnosticCommand;)[Ljava/lang/Object;",
nloodin@3681 172 (void*) &WB_ParseCommandLine
nloodin@3681 173 },
mgerdin@3619 174 #ifndef SERIALGC
mgerdin@3619 175 {CC"g1InConcurrentMark", CC"()Z", (void*)&WB_G1InConcurrentMark},
mgerdin@3619 176 {CC"g1IsHumongous", CC"(Ljava/lang/Object;)Z", (void*)&WB_G1IsHumongous },
mgerdin@3619 177 {CC"g1NumFreeRegions", CC"()J", (void*)&WB_G1NumFreeRegions },
mgerdin@3619 178 {CC"g1RegionSize", CC"()I", (void*)&WB_G1RegionSize },
mgerdin@3619 179 #endif // !SERIALGC
mgerdin@3619 180 };
mgerdin@3619 181
mgerdin@3619 182 #undef CC
mgerdin@3619 183
mgerdin@3619 184 JVM_ENTRY(void, JVM_RegisterWhiteBoxMethods(JNIEnv* env, jclass wbclass))
mgerdin@3619 185 {
mgerdin@3619 186 if (WhiteBoxAPI) {
mgerdin@3619 187 // Make sure that wbclass is loaded by the null classloader
mgerdin@3619 188 instanceKlassHandle ikh = instanceKlassHandle(JNIHandles::resolve(wbclass)->klass());
mgerdin@3619 189 Handle loader(ikh->class_loader());
mgerdin@3619 190 if (loader.is_null()) {
mgerdin@3619 191 ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI
mgerdin@3619 192 jint result = env->RegisterNatives(wbclass, methods, sizeof(methods)/sizeof(methods[0]));
mgerdin@3619 193 if (result == 0) {
mgerdin@3619 194 WhiteBox::set_used();
mgerdin@3619 195 }
mgerdin@3619 196 }
mgerdin@3619 197 }
mgerdin@3619 198 }
mgerdin@3619 199 JVM_END

mercurial