annotate src/share/vm/prims/jvmtiTagMap.hpp @ 20543:e7d0505c8a30

8059758: Footprint regressions with JDK-8038423 Summary: Changes in JDK-8038423 always initialize (zero out) virtual memory used for auxiliary data structures. This causes a footprint regression for G1 in startup benchmarks. This is because they do not touch that memory at all, so the operating system does not actually commit these pages. The fix is to, if the initialization value of the data structures matches the default value of just committed memory (=0), do not do anything. Reviewed-by: jwilhelm, brutisso
author tschatzl
date Fri, 10 Oct 2014 15:51:58 +0200
parents 8b46b0196eb0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 6856
diff changeset
2 * Copyright (c) 2003, 2013, 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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #ifndef SHARE_VM_PRIMS_JVMTITAGMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #define SHARE_VM_PRIMS_JVMTITAGMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "gc_interface/collectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "jvmtifiles/jvmti.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "jvmtifiles/jvmtiEnv.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "memory/genCollectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "memory/universe.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // forward references
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class JvmtiTagHashmap;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class JvmtiTagHashmapEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class JvmtiTagHashmapEntryClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2426
diff changeset
42 class JvmtiTagMap : public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 enum{
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
46 max_free_entries = 4096 // maximum number of free entries per env
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47 };
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 JvmtiEnv* _env; // the jvmti environment
a61af66fc99e Initial load
duke
parents:
diff changeset
50 Mutex _lock; // lock for this tag map
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
51 JvmtiTagHashmap* _hashmap; // the hashmap
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 JvmtiTagHashmapEntry* _free_entries; // free list for this environment
a61af66fc99e Initial load
duke
parents:
diff changeset
54 int _free_entries_count; // number of entries on the free list
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // create a tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
57 JvmtiTagMap(JvmtiEnv* env);
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
60 inline Mutex* lock() { return &_lock; }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 inline JvmtiEnv* env() const { return _env; }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
63 void do_weak_oops(BoolObjectClosure* is_alive, OopClosure* f);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // iterate over all entries in this tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void entry_iterate(JvmtiTagHashmapEntryClosure* closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // indicates if this tag map is locked
a61af66fc99e Initial load
duke
parents:
diff changeset
71 bool is_locked() { return lock()->is_locked(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
73 JvmtiTagHashmap* hashmap() { return _hashmap; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // create/destroy entries
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
76 JvmtiTagHashmapEntry* create_entry(oop ref, jlong tag);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void destroy_entry(JvmtiTagHashmapEntry* entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // returns true if the hashmaps are empty
a61af66fc99e Initial load
duke
parents:
diff changeset
80 bool is_empty();
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // return tag for the given environment
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static JvmtiTagMap* tag_map_for(JvmtiEnv* env);
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // destroy tag map
a61af66fc99e Initial load
duke
parents:
diff changeset
86 ~JvmtiTagMap();
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // set/get tag
a61af66fc99e Initial load
duke
parents:
diff changeset
89 void set_tag(jobject obj, jlong tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 jlong get_tag(jobject obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // deprecated heap iteration functions
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void iterate_over_heap(jvmtiHeapObjectFilter object_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
95 jvmtiHeapObjectCallback heap_object_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
96 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 void iterate_over_reachable_objects(jvmtiHeapRootCallback heap_root_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
99 jvmtiStackReferenceCallback stack_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
100 jvmtiObjectReferenceCallback object_ref_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
101 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 void iterate_over_objects_reachable_from_object(jobject object,
a61af66fc99e Initial load
duke
parents:
diff changeset
104 jvmtiObjectReferenceCallback object_reference_callback,
a61af66fc99e Initial load
duke
parents:
diff changeset
105 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // advanced (JVMTI 1.1) heap iteration functions
a61af66fc99e Initial load
duke
parents:
diff changeset
109 void iterate_through_heap(jint heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 const jvmtiHeapCallbacks* callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void follow_references(jint heap_filter,
a61af66fc99e Initial load
duke
parents:
diff changeset
115 KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
116 jobject initial_object,
a61af66fc99e Initial load
duke
parents:
diff changeset
117 const jvmtiHeapCallbacks* callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
118 const void* user_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // get tagged objects
a61af66fc99e Initial load
duke
parents:
diff changeset
121 jvmtiError get_objects_with_tags(const jlong* tags, jint count,
a61af66fc99e Initial load
duke
parents:
diff changeset
122 jint* count_ptr, jobject** object_result_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 jlong** tag_result_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
124
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1972
diff changeset
125 static void weak_oops_do(
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6197
diff changeset
126 BoolObjectClosure* is_alive, OopClosure* f) NOT_JVMTI_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
127 };
a61af66fc99e Initial load
duke
parents:
diff changeset
128
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
129 #endif // SHARE_VM_PRIMS_JVMTITAGMAP_HPP