annotate src/share/vm/prims/jvmtiTagMap.hpp @ 1716:be3f9c242c9d

6948538: CMS: BOT walkers can fall into object allocation and initialization cracks Summary: GC workers now recognize an intermediate transient state of blocks which are allocated but have not yet completed initialization. blk_start() calls do not attempt to determine the size of a block in the transient state, rather waiting for the block to become initialized so that it is safe to query its size. Audited and ensured the order of initialization of object fields (klass, free bit and size) to respect block state transition protocol. Also included some new assertion checking code enabled in debug mode. Reviewed-by: chrisphi, johnc, poonam
author ysr
date Mon, 16 Aug 2010 15:58:42 -0700
parents c18cbe5936b8
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // JvmtiTagMap
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 #ifndef _JAVA_JVMTI_TAG_MAP_H_
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #define _JAVA_JVMTI_TAG_MAP_H_
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // forward references
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class JvmtiTagHashmap;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class JvmtiTagHashmapEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class JvmtiTagHashmapEntryClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class JvmtiTagMap : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 enum{
a61af66fc99e Initial load
duke
parents:
diff changeset
39 n_hashmaps = 2, // encapsulates 2 hashmaps
a61af66fc99e Initial load
duke
parents:
diff changeset
40 max_free_entries = 4096 // maximum number of free entries per env
a61af66fc99e Initial load
duke
parents:
diff changeset
41 };
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // memory region for young generation
a61af66fc99e Initial load
duke
parents:
diff changeset
44 static MemRegion _young_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static void get_young_generation();
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 JvmtiEnv* _env; // the jvmti environment
a61af66fc99e Initial load
duke
parents:
diff changeset
48 Mutex _lock; // lock for this tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
49 JvmtiTagHashmap* _hashmap[n_hashmaps]; // the hashmaps
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 JvmtiTagHashmapEntry* _free_entries; // free list for this environment
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int _free_entries_count; // number of entries on the free list
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // create a tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
55 JvmtiTagMap(JvmtiEnv* env);
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
58 inline Mutex* lock() { return &_lock; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 inline JvmtiEnv* env() const { return _env; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // rehash tags maps for generation start to end
a61af66fc99e Initial load
duke
parents:
diff changeset
62 void rehash(int start, int end);
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // indicates if the object is in the young generation
a61af66fc99e Initial load
duke
parents:
diff changeset
65 static bool is_in_young(oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // iterate over all entries in this tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void entry_iterate(JvmtiTagHashmapEntryClosure* closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // indicates if this tag map is locked
a61af66fc99e Initial load
duke
parents:
diff changeset
73 bool is_locked() { return lock()->is_locked(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // return the appropriate hashmap for a given object
a61af66fc99e Initial load
duke
parents:
diff changeset
76 JvmtiTagHashmap* hashmap_for(oop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // create/destroy entries
a61af66fc99e Initial load
duke
parents:
diff changeset
79 JvmtiTagHashmapEntry* create_entry(jweak ref, jlong tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void destroy_entry(JvmtiTagHashmapEntry* entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // returns true if the hashmaps are empty
a61af66fc99e Initial load
duke
parents:
diff changeset
83 bool is_empty();
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // return tag for the given environment
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static JvmtiTagMap* tag_map_for(JvmtiEnv* env);
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // destroy tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
89 ~JvmtiTagMap();
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // set/get tag
a61af66fc99e Initial load
duke
parents:
diff changeset
92 void set_tag(jobject obj, jlong tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 jlong get_tag(jobject obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // deprecated heap iteration functions
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void iterate_over_heap(jvmtiHeapObjectFilter object_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
97 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
98 jvmtiHeapObjectCallback heap_object_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
99 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void iterate_over_reachable_objects(jvmtiHeapRootCallback heap_root_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
102 jvmtiStackReferenceCallback stack_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
103 jvmtiObjectReferenceCallback object_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
104 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void iterate_over_objects_reachable_from_object(jobject object,
a61af66fc99e Initial load
duke
parents:
diff changeset
107 jvmtiObjectReferenceCallback object_reference_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
108 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // advanced (JVMTI 1.1) heap iteration functions
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void iterate_through_heap(jint heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 const jvmtiHeapCallbacks* callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
115 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void follow_references(jint heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
118 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
119 jobject initial_object,
a61af66fc99e Initial load
duke
parents:
diff changeset
120 const jvmtiHeapCallbacks* callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
121 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // get tagged objects
a61af66fc99e Initial load
duke
parents:
diff changeset
124 jvmtiError get_objects_with_tags(const jlong* tags, jint count,
a61af66fc99e Initial load
duke
parents:
diff changeset
125 jint* count_ptr, jobject** object_result_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
126 jlong** tag_result_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // call post-GC to rehash the tag maps.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 static void gc_epilogue(bool full);
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // call after referencing processing has completed (CMS)
a61af66fc99e Initial load
duke
parents:
diff changeset
132 static void cms_ref_processing_epilogue();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 };
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 #endif /* _JAVA_JVMTI_TAG_MAP_H_ */