src/share/vm/classfile/classLoaderData.hpp

Mon, 25 Mar 2013 17:13:26 -0700

author
twisti
date
Mon, 25 Mar 2013 17:13:26 -0700
changeset 4866
16885e702c88
parent 4667
1f9994892f89
child 4903
ba42fd5e00e6
permissions
-rw-r--r--

7198429: need checked categorization of caller-sensitive methods in the JDK
Reviewed-by: kvn, jrose

coleenp@4037 1 /*
acorn@4497 2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
coleenp@4037 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
coleenp@4037 4 *
coleenp@4037 5 * This code is free software; you can redistribute it and/or modify it
coleenp@4037 6 * under the terms of the GNU General Public License version 2 only, as
coleenp@4037 7 * published by the Free Software Foundation.
coleenp@4037 8 *
coleenp@4037 9 * This code is distributed in the hope that it will be useful, but WITHOUT
coleenp@4037 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
katleman@4376 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
coleenp@4037 12 * version 2 for more details (a copy is included in the LICENSE file that
coleenp@4037 13 * accompanied this code).
coleenp@4037 14 *
coleenp@4037 15 * You should have received a copy of the GNU General Public License version
coleenp@4037 16 * 2 along with this work; if not, write to the Free Software Foundation,
coleenp@4037 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
coleenp@4037 18 *
coleenp@4037 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
coleenp@4037 20 * or visit www.oracle.com if you need additional information or have any
coleenp@4037 21 * questions.
coleenp@4037 22 *
coleenp@4037 23 */
coleenp@4037 24
coleenp@4037 25 #ifndef SHARE_VM_CLASSFILE_CLASSLOADERDATA_HPP
coleenp@4037 26 #define SHARE_VM_CLASSFILE_CLASSLOADERDATA_HPP
coleenp@4037 27
coleenp@4037 28 #include "memory/allocation.hpp"
coleenp@4037 29 #include "memory/memRegion.hpp"
coleenp@4037 30 #include "memory/metaspace.hpp"
coleenp@4037 31 #include "memory/metaspaceCounters.hpp"
coleenp@4037 32 #include "runtime/mutex.hpp"
coleenp@4037 33 #include "utilities/growableArray.hpp"
coleenp@4037 34
coleenp@4037 35 //
coleenp@4037 36 // A class loader represents a linkset. Conceptually, a linkset identifies
coleenp@4037 37 // the complete transitive closure of resolved links that a dynamic linker can
coleenp@4037 38 // produce.
coleenp@4037 39 //
coleenp@4037 40 // A ClassLoaderData also encapsulates the allocation space, called a metaspace,
coleenp@4037 41 // used by the dynamic linker to allocate the runtime representation of all
coleenp@4037 42 // the types it defines.
coleenp@4037 43 //
coleenp@4037 44 // ClassLoaderData are stored in the runtime representation of classes and the
coleenp@4037 45 // system dictionary, are roots of garbage collection, and provides iterators
coleenp@4037 46 // for root tracing and other GC operations.
coleenp@4037 47
coleenp@4037 48 class ClassLoaderData;
coleenp@4037 49 class JNIMethodBlock;
coleenp@4037 50 class JNIHandleBlock;
coleenp@4037 51 class Metadebug;
coleenp@4037 52 // GC root for walking class loader data created
coleenp@4037 53
coleenp@4037 54 class ClassLoaderDataGraph : public AllStatic {
coleenp@4037 55 friend class ClassLoaderData;
coleenp@4037 56 friend class ClassLoaderDataGraphMetaspaceIterator;
coleenp@4037 57 friend class VMStructs;
coleenp@4037 58 private:
coleenp@4037 59 // All CLDs (except the null CLD) can be reached by walking _head->_next->...
coleenp@4037 60 static ClassLoaderData* _head;
coleenp@4037 61 static ClassLoaderData* _unloading;
coleenp@4037 62 // CMS support.
coleenp@4037 63 static ClassLoaderData* _saved_head;
coleenp@4037 64
coleenp@4304 65 static ClassLoaderData* add(ClassLoaderData** loader_data_addr, Handle class_loader, TRAPS);
coleenp@4037 66 public:
coleenp@4304 67 static ClassLoaderData* find_or_create(Handle class_loader, TRAPS);
coleenp@4037 68 static void purge();
coleenp@4037 69 static void clear_claimed_marks();
coleenp@4037 70 static void oops_do(OopClosure* f, KlassClosure* klass_closure, bool must_claim);
coleenp@4037 71 static void always_strong_oops_do(OopClosure* blk, KlassClosure* klass_closure, bool must_claim);
coleenp@4304 72 static void keep_alive_oops_do(OopClosure* blk, KlassClosure* klass_closure, bool must_claim);
coleenp@4037 73 static void classes_do(KlassClosure* klass_closure);
coleenp@4037 74 static bool do_unloading(BoolObjectClosure* is_alive);
coleenp@4037 75
coleenp@4037 76 // CMS support.
coleenp@4037 77 static void remember_new_clds(bool remember) { _saved_head = (remember ? _head : NULL); }
coleenp@4037 78 static GrowableArray<ClassLoaderData*>* new_clds();
coleenp@4037 79
coleenp@4037 80 static void dump_on(outputStream * const out) PRODUCT_RETURN;
coleenp@4037 81 static void dump() { dump_on(tty); }
coleenp@4037 82 static void verify();
coleenp@4037 83
coleenp@4037 84 #ifndef PRODUCT
coleenp@4037 85 // expensive test for pointer in metaspace for debugging
coleenp@4037 86 static bool contains(address x);
coleenp@4037 87 static bool contains_loader_data(ClassLoaderData* loader_data);
coleenp@4037 88 #endif
coleenp@4037 89 };
coleenp@4037 90
coleenp@4037 91 // ClassLoaderData class
coleenp@4037 92
coleenp@4037 93 class ClassLoaderData : public CHeapObj<mtClass> {
coleenp@4037 94 friend class VMStructs;
coleenp@4037 95 private:
coleenp@4037 96 friend class ClassLoaderDataGraph;
coleenp@4037 97 friend class ClassLoaderDataGraphMetaspaceIterator;
coleenp@4037 98 friend class MetaDataFactory;
coleenp@4037 99 friend class Method;
coleenp@4037 100
coleenp@4037 101 static ClassLoaderData * _the_null_class_loader_data;
coleenp@4037 102
coleenp@4037 103 oop _class_loader; // oop used to uniquely identify a class loader
coleenp@4037 104 // class loader or a canonical class path
coleenp@4304 105 oop _dependencies; // oop to hold dependencies from this class loader
coleenp@4304 106 // data to others.
coleenp@4037 107 Metaspace * _metaspace; // Meta-space where meta-data defined by the
coleenp@4037 108 // classes in the class loader are allocated.
coleenp@4037 109 Mutex* _metaspace_lock; // Locks the metaspace for allocations and setup.
coleenp@4037 110 bool _unloading; // true if this class loader goes away
coleenp@4304 111 bool _keep_alive; // if this CLD can be unloaded for anonymous loaders
coleenp@4345 112 bool _is_anonymous; // if this CLD is for an anonymous class
coleenp@4037 113 volatile int _claimed; // true if claimed, for example during GC traces.
coleenp@4037 114 // To avoid applying oop closure more than once.
coleenp@4037 115 // Has to be an int because we cas it.
coleenp@4037 116 Klass* _klasses; // The classes defined by the class loader.
coleenp@4037 117
coleenp@4037 118 JNIHandleBlock* _handles; // Handles to constant pool arrays
coleenp@4037 119
coleenp@4037 120 // These method IDs are created for the class loader and set to NULL when the
coleenp@4037 121 // class loader is unloaded. They are rarely freed, only for redefine classes
coleenp@4037 122 // and if they lose a data race in InstanceKlass.
coleenp@4037 123 JNIMethodBlock* _jmethod_ids;
coleenp@4037 124
coleenp@4037 125 // Metadata to be deallocated when it's safe at class unloading, when
coleenp@4037 126 // this class loader isn't unloaded itself.
coleenp@4037 127 GrowableArray<Metadata*>* _deallocate_list;
coleenp@4037 128
coleenp@4037 129 // Support for walking class loader data objects
coleenp@4037 130 ClassLoaderData* _next; /// Next loader_datas created
coleenp@4037 131
coleenp@4037 132 // ReadOnly and ReadWrite metaspaces (static because only on the null
coleenp@4037 133 // class loader for now).
coleenp@4037 134 static Metaspace* _ro_metaspace;
coleenp@4037 135 static Metaspace* _rw_metaspace;
coleenp@4037 136
coleenp@4304 137 void add_dependency(Handle dependency, TRAPS);
coleenp@4304 138 void locked_add_dependency(objArrayHandle last, objArrayHandle new_dependency);
coleenp@4037 139
coleenp@4037 140 void set_next(ClassLoaderData* next) { _next = next; }
coleenp@4037 141 ClassLoaderData* next() const { return _next; }
coleenp@4037 142
coleenp@4345 143 ClassLoaderData(Handle h_class_loader, bool is_anonymous);
coleenp@4037 144 ~ClassLoaderData();
coleenp@4037 145
coleenp@4037 146 void set_metaspace(Metaspace* m) { _metaspace = m; }
coleenp@4037 147
coleenp@4037 148 JNIHandleBlock* handles() const;
coleenp@4037 149 void set_handles(JNIHandleBlock* handles);
coleenp@4037 150
coleenp@4037 151 Mutex* metaspace_lock() const { return _metaspace_lock; }
coleenp@4037 152
coleenp@4037 153 // GC interface.
coleenp@4037 154 void clear_claimed() { _claimed = 0; }
coleenp@4037 155 bool claimed() const { return _claimed == 1; }
coleenp@4037 156 bool claim();
coleenp@4037 157
coleenp@4304 158 void unload();
coleenp@4304 159 bool keep_alive() const { return _keep_alive; }
coleenp@4304 160 bool is_alive(BoolObjectClosure* is_alive_closure) const;
coleenp@4037 161
coleenp@4037 162 void classes_do(void f(InstanceKlass*));
coleenp@4037 163
coleenp@4037 164 // Deallocate free list during class unloading.
coleenp@4037 165 void free_deallocate_list();
coleenp@4037 166
coleenp@4037 167 // Allocate out of this class loader data
coleenp@4037 168 MetaWord* allocate(size_t size);
coleenp@4037 169
coleenp@4037 170 public:
coleenp@4037 171 // Accessors
coleenp@4037 172 Metaspace* metaspace_or_null() const { return _metaspace; }
coleenp@4037 173
coleenp@4037 174 static ClassLoaderData* the_null_class_loader_data() {
coleenp@4037 175 return _the_null_class_loader_data;
coleenp@4037 176 }
coleenp@4037 177
coleenp@4345 178 bool is_anonymous() const { return _is_anonymous; }
coleenp@4304 179
coleenp@4037 180 static void init_null_class_loader_data() {
coleenp@4037 181 assert(_the_null_class_loader_data == NULL, "cannot initialize twice");
coleenp@4037 182 assert(ClassLoaderDataGraph::_head == NULL, "cannot initialize twice");
coleenp@4345 183 _the_null_class_loader_data = new ClassLoaderData((oop)NULL, false);
coleenp@4037 184 ClassLoaderDataGraph::_head = _the_null_class_loader_data;
coleenp@4037 185 assert(_the_null_class_loader_data->is_the_null_class_loader_data(), "Must be");
coleenp@4037 186 if (DumpSharedSpaces) {
coleenp@4037 187 _the_null_class_loader_data->initialize_shared_metaspaces();
coleenp@4037 188 }
coleenp@4037 189 }
coleenp@4037 190
coleenp@4037 191 bool is_the_null_class_loader_data() const {
coleenp@4037 192 return this == _the_null_class_loader_data;
coleenp@4037 193 }
twisti@4866 194 bool is_ext_class_loader_data() const;
coleenp@4037 195
coleenp@4037 196 // The Metaspace is created lazily so may be NULL. This
coleenp@4037 197 // method will allocate a Metaspace if needed.
coleenp@4037 198 Metaspace* metaspace_non_null();
coleenp@4037 199
coleenp@4037 200 oop class_loader() const { return _class_loader; }
coleenp@4037 201
coleenp@4037 202 // Returns true if this class loader data is for a loader going away.
coleenp@4037 203 bool is_unloading() const {
coleenp@4037 204 assert(!(is_the_null_class_loader_data() && _unloading), "The null class loader can never be unloaded");
coleenp@4037 205 return _unloading;
coleenp@4037 206 }
coleenp@4304 207 // Anonymous class loader data doesn't have anything to keep them from
coleenp@4304 208 // being unloaded during parsing the anonymous class.
coleenp@4304 209 void set_keep_alive(bool value) { _keep_alive = value; }
coleenp@4037 210
coleenp@4037 211 unsigned int identity_hash() {
coleenp@4037 212 return _class_loader == NULL ? 0 : _class_loader->identity_hash();
coleenp@4037 213 }
coleenp@4037 214
coleenp@4037 215 // Used when tracing from klasses.
coleenp@4037 216 void oops_do(OopClosure* f, KlassClosure* klass_closure, bool must_claim);
coleenp@4037 217
coleenp@4037 218 void classes_do(KlassClosure* klass_closure);
coleenp@4037 219
coleenp@4037 220 JNIMethodBlock* jmethod_ids() const { return _jmethod_ids; }
coleenp@4037 221 void set_jmethod_ids(JNIMethodBlock* new_block) { _jmethod_ids = new_block; }
coleenp@4037 222
coleenp@4037 223 void print_value() { print_value_on(tty); }
acorn@4497 224 void print_value_on(outputStream* out) const;
coleenp@4037 225 void dump(outputStream * const out) PRODUCT_RETURN;
coleenp@4037 226 void verify();
coleenp@4304 227 const char* loader_name();
coleenp@4037 228
coleenp@4037 229 jobject add_handle(Handle h);
coleenp@4037 230 void add_class(Klass* k);
coleenp@4037 231 void remove_class(Klass* k);
coleenp@4037 232 void record_dependency(Klass* to, TRAPS);
coleenp@4304 233 void init_dependencies(TRAPS);
coleenp@4037 234
coleenp@4037 235 void add_to_deallocate_list(Metadata* m);
coleenp@4037 236
coleenp@4037 237 static ClassLoaderData* class_loader_data(oop loader);
stefank@4667 238 static ClassLoaderData* class_loader_data_or_null(oop loader);
coleenp@4304 239 static ClassLoaderData* anonymous_class_loader_data(oop loader, TRAPS);
coleenp@4037 240 static void print_loader(ClassLoaderData *loader_data, outputStream *out);
coleenp@4037 241
coleenp@4037 242 // CDS support
coleenp@4037 243 Metaspace* ro_metaspace();
coleenp@4037 244 Metaspace* rw_metaspace();
coleenp@4037 245 void initialize_shared_metaspaces();
coleenp@4037 246 };
coleenp@4037 247
coleenp@4037 248 class ClassLoaderDataGraphMetaspaceIterator : public StackObj {
coleenp@4037 249 ClassLoaderData* _data;
coleenp@4037 250 public:
coleenp@4037 251 ClassLoaderDataGraphMetaspaceIterator();
coleenp@4037 252 ~ClassLoaderDataGraphMetaspaceIterator();
coleenp@4037 253 bool repeat() { return _data != NULL; }
coleenp@4037 254 Metaspace* get_next() {
coleenp@4037 255 assert(_data != NULL, "Should not be NULL in call to the iterator");
coleenp@4037 256 Metaspace* result = _data->metaspace_or_null();
coleenp@4037 257 _data = _data->next();
coleenp@4037 258 // This result might be NULL for class loaders without metaspace
coleenp@4037 259 // yet. It would be nice to return only non-null results but
coleenp@4037 260 // there is no guarantee that there will be a non-null result
coleenp@4037 261 // down the list so the caller is going to have to check.
coleenp@4037 262 return result;
coleenp@4037 263 }
coleenp@4037 264 };
coleenp@4037 265 #endif // SHARE_VM_CLASSFILE_CLASSLOADERDATA_HPP

mercurial